.block {
    display: block
}
.hidden {
    display: none
}
.-store {
  display: block;
}

.FadeSlideUp {
  opacity: 0;
}

.FadeSlideUp.-active {
  animation: fade-slide-up 1s both;
}

@keyframes fade-slide-up {
  0% {
    opacity: 0;
    transform: translate3d(0, calc(20 * var(--base)), 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.FadeSlideDown {
  opacity: 0;
  transform: translate3d(0, calc(-20 * var(--base)), 0);
}

.FadeSlideDown.-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s, transform 1s;
}

.ZoomOut {
  opacity: 0;
  transform: scale(1.25) rotate(2deg);
}

.ZoomOut.-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s, transform 1.2s;
}

.SlideUp {
  overflow: hidden;
}

.SlideUp.-active > * {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}

.SlideUp > * {
  transform: translate3d(0, 100%, 0);
}

.SlideLeft {
  overflow: hidden;
}

.SlideLeft.-active > * {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}

.SlideLeft > * {
  transform: translate3d(100%, 0, 0);
}

.OverlaySlideLeft {
  position: relative;
  overflow: hidden;
}

.OverlaySlideLeft.-active::before {
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translate3d(-100%, 0, 0);
}

.OverlaySlideLeft::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}

.OverlaySlideRight {
  position: relative;
  overflow: hidden;
}

.OverlaySlideRight.-active::before {
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translate3d(100%, 0, 0);
}

.OverlaySlideRight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}

.SplitSlideUp {
  display: block;
  overflow: hidden;
}

.SplitSlideUp.-active > span {
  transition: transform 0.6s;
  transform: translate3d(0, 0, 0);
}

.SplitSlideUp > span {
  display: inline-block;
  transform: translate3d(0, 100%, 0);
}

.SplitSlideUp > span:nth-child(2) {
  transition-delay: 0.05s;
}

.SplitSlideUp > span:nth-child(3) {
  transition-delay: 0.1s;
}

.SplitSlideUp > span:nth-child(4) {
  transition-delay: 0.15s;
}

.SplitSlideUp > span:nth-child(5) {
  transition-delay: 0.2s;
}

.SplitSlideUp > span:nth-child(6) {
  transition-delay: 0.25s;
}

.SplitSlideUp > span:nth-child(7) {
  transition-delay: 0.3s;
}

.SplitSlideUp > span:nth-child(8) {
  transition-delay: 0.35s;
}

.SplitSlideUp > span:nth-child(9) {
  transition-delay: 0.4s;
}

.SplitSlideUp > span:nth-child(10) {
  transition-delay: 0.45s;
}

.SplitSlideUp > span:nth-child(11) {
  transition-delay: 0.5s;
}

.SplitSlideUp > span:nth-child(12) {
  transition-delay: 0.55s;
}

.SplitSlideUp > span:nth-child(13) {
  transition-delay: 0.6s;
}

.SplitSlideUp > span:nth-child(14) {
  transition-delay: 0.65s;
}

.SplitSlideUp > span:nth-child(15) {
  transition-delay: 0.7s;
}

.SplitSlideUp > span:nth-child(16) {
  transition-delay: 0.75s;
}

.SplitSlideUp > span:nth-child(17) {
  transition-delay: 0.8s;
}

.SplitSlideUp > span:nth-child(18) {
  transition-delay: 0.85s;
}

.SplitSlideUp > span:nth-child(19) {
  transition-delay: 0.9s;
}

.SplitSlideUp > span:nth-child(20) {
  transition-delay: 0.95s;
}

.SplitSlideLeft {
  overflow: hidden;
}

.SplitSlideLeft.-active > span {
  transition: 0.6s;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.SplitSlideLeft > span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.SplitSlideLeft > span:nth-child(2) {
  transition-delay: 0.05s;
}

.SplitSlideLeft > span:nth-child(3) {
  transition-delay: 0.1s;
}

.SplitSlideLeft > span:nth-child(4) {
  transition-delay: 0.15s;
}

.SplitSlideLeft > span:nth-child(5) {
  transition-delay: 0.2s;
}

.SplitSlideLeft > span:nth-child(6) {
  transition-delay: 0.25s;
}

.SplitSlideLeft > span:nth-child(7) {
  transition-delay: 0.3s;
}

.SplitSlideLeft > span:nth-child(8) {
  transition-delay: 0.35s;
}

.SplitSlideLeft > span:nth-child(9) {
  transition-delay: 0.4s;
}

.SplitSlideLeft > span:nth-child(10) {
  transition-delay: 0.45s;
}

.SplitSlideLeft > span:nth-child(11) {
  transition-delay: 0.5s;
}

.SplitSlideLeft > span:nth-child(12) {
  transition-delay: 0.55s;
}

.SplitSlideLeft > span:nth-child(13) {
  transition-delay: 0.6s;
}

.SplitSlideLeft > span:nth-child(14) {
  transition-delay: 0.65s;
}

.SplitSlideLeft > span:nth-child(15) {
  transition-delay: 0.7s;
}

.SplitSlideLeft > span:nth-child(16) {
  transition-delay: 0.75s;
}

.SplitSlideLeft > span:nth-child(17) {
  transition-delay: 0.8s;
}

.SplitSlideLeft > span:nth-child(18) {
  transition-delay: 0.85s;
}

.SplitSlideLeft > span:nth-child(19) {
  transition-delay: 0.9s;
}

.SplitSlideLeft > span:nth-child(20) {
  transition-delay: 0.95s;
}

.DrawMarker {
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.DrawMarker.-active {
  transition: background-size 0.6s;
  background-size: 100% 100%;
}

.ZoomInBack {
  opacity: 0;
  transform: scale(0);
}

.ZoomInBack.-active {
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1;
  transform: scale(1);
}

.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);
  }
}

.Biziraku {
  padding-top: calc(20 * var(--base));
}

.Biziraku_inner {
  position: relative;
}

.Biziraku_img {
  aspect-ratio: 285/403;
}

.Biziraku .Button {
  width: calc(100% - calc(40 * var(--base)));
  position: absolute;
  left: calc(20 * var(--base));
  bottom: calc(26 * var(--base));
}

.BG {
  width: calc(50% - 243.75px);
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.BG_img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
  visibility: hidden;
  opacity: 0 !important;
  transition: 1s !important;
}

[data-waypoint-current=kv] .BG_img.-kv {
  visibility: visible;
  opacity: 1 !important;
}

[data-waypoint-current=importPremium] .BG_img.-importPremium {
  visibility: visible;
  opacity: 1 !important;
}

[data-waypoint-current=blouse] .BG_img.-blouse {
  visibility: visible;
  opacity: 1 !important;
}

[data-waypoint-current=bowtieBlouse] .BG_img.-bowtieBlouse {
  visibility: visible;
  opacity: 1 !important;
}

.Button {
  display: grid;
  place-content: center;
  width: 100%;
  height: calc(60 * var(--base));
  position: relative;
  text-align: center;
  font-size: calc(14 * var(--base));
  line-height: 1.25;
  cursor: pointer;
}

.Button.-sm {
  height: calc(40 * var(--base));
}

.Button.-sm.-next svg {
  right: calc(10 * var(--base));
}

@media (any-hover: hover) {
  .Button.-sm.-next:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
}

.Button.-sm.-down svg {
  right: calc(12 * var(--base));
}

@media (any-hover: hover) {
  .Button.-sm.-down:hover svg {
    transform: translate3d(0, calc(3 * var(--base)), 0);
  }
}

.Button.-sm.-checkered {
  padding-right: calc(8 * var(--base));
}

.Button.-xs {
  height: calc(28 * var(--base));
  font-size: calc(12 * var(--base));
}

.Button.-xs.-next {
  padding-right: calc(4 * var(--base));
}

.Button.-xs.-next svg {
  right: calc(8 * var(--base));
}

@media (any-hover: hover) {
  .Button.-xs.-next:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
}

.Button.-fill {
  color: #fff;
  background-color: #8c646e;
}

.Button.-fill svg {
  fill: #fff;
}

@media (any-hover: hover) {
  .Button.-fill {
    transition: background-color 0.4s;
  }
  .Button.-fill:hover {
    background-color: #99707b;
  }
}

.Button.-fill.-white {
  color: #8c646e;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 calc(8 * var(--base));
}

.Button.-fill.-white.-next svg {
  fill: #8c646e;
}

.Button.-fill.-black {
  background-color: #333;
}

.Button.-fill.-brown {
  background-color: #a99283;
}

.Button.-fill.-navy {
  background-color: #3c3f53;
}

.Button.-fill.-blue {
  background-color: #5f658f;
}

.Button.-fill.-ivory {
  color: #333;
  background-color: #e6e3da;
}

.Button.-fill.-ivory.-next svg {
  fill: #333;
}

.Button.-fill.-sax {
  color: #333;
  background-color: #dae0ed;
}

.Button.-fill.-sax.-next svg {
  fill: #333;
}

.Button.-fill.-pinkBeige {
  color: #333;
  background-color: #f9ece6;
}

.Button.-fill.-pinkBeige.-next svg {
  fill: #333;
}

.Button.-stroke {
  color: #8c646e;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #8c646e;
  border-radius: calc(5 * var(--base));
}

.Button.-stroke svg {
  fill: #8c646e;
}

.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;
}

@media (any-hover: hover) {
  .Button.-next svg {
    transition: transform 0.4s;
  }
  .Button.-next:hover svg {
    transform: translate3d(calc(4 * var(--base)), 0, 0);
  }
}

.Button.-down svg {
  width: calc(10 * var(--base));
  height: calc(5 * var(--base));
  position: absolute;
  top: 0;
  right: calc(16 * var(--base));
  bottom: 0;
  margin: auto;
}

@media (any-hover: hover) {
  .Button.-down svg {
    transition: transform 0.4s;
  }
  .Button.-down:hover svg {
    transform: translate3d(0, calc(4 * var(--base)), 0);
  }
}

.Button.-cart {
  height: calc(38 * var(--base));
  font-size: calc(12 * var(--base));
  border: none;
  border-radius: calc(5 * var(--base));
}

.Button.-detail {
  height: calc(40 * var(--base));
  border-radius: calc(5 * var(--base));
}

.Button.-list {
  border-radius: calc(8 * var(--base));
}

.Button.-size {
  border-radius: calc(8 * var(--base));
}

.Button.-roundedFull {
  border-radius: calc(99 * var(--base));
}

.Campaign {
  margin-top: calc(40 * var(--base));
}

.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));
}

.Campaign_link {
  display: block;
}

@media (any-hover: hover) {
  .Campaign_link {
    transition: opacity 0.4s;
  }
  .Campaign_link:hover {
    opacity: 0.7;
  }
}

.Campaign_img {
  aspect-ratio: 335/136;
}

.CollectionSection {
  padding-top: calc(40 * var(--base));
  padding-bottom: calc(60 * var(--base));
}

.CollectionSection_title {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 700;
}

.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));
}

.Collection_img {
  aspect-ratio: 11/14;
}

.Collection_link {
  display: block;
}

@media (any-hover: hover) {
  .Collection_link {
    transition: opacity 0.4s;
  }
  .Collection_link:hover {
    opacity: 0.7;
  }
}

.CoordinateSection {
  padding: calc(60 * var(--base)) 0;
  overflow-x: hidden;
  background-color: #f2f2f2;
}

.Coordinate {
  margin-top: calc(12 * var(--base));
}

.Coordinate_titleHolder {
  width: calc(238 * var(--base));
  position: relative;
  z-index: 2;
  opacity: 0;
}

.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);
}

.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);
}

.Coordinate_titleHolder.-active {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.Coordinate_title {
  aspect-ratio: 947/403;
}

.Coordinate_slider {
  position: relative;
  padding-bottom: calc(18 * var(--base));
  margin: 0 calc(-20 * var(--base));
}

.Coordinate_slider .swiper-button-prev,
.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));
}

.Coordinate_slider .swiper-button-prev svg,
.Coordinate_slider .swiper-button-next svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
}

.Coordinate_slider .swiper-button-prev::after,
.Coordinate_slider .swiper-button-next::after {
  content: none;
}

@media (any-hover: hover) {
  .Coordinate_slider .swiper-button-prev,
  .Coordinate_slider .swiper-button-next {
    transition: background-color 0.4s;
  }
  .Coordinate_slider .swiper-button-prev svg,
  .Coordinate_slider .swiper-button-next svg {
    transition: fill 0.4s;
  }
  .Coordinate_slider .swiper-button-prev:hover,
  .Coordinate_slider .swiper-button-next:hover {
    background-color: #61c2b5;
  }
  .Coordinate_slider .swiper-button-prev:hover svg,
  .Coordinate_slider .swiper-button-next:hover svg {
    fill: #fff;
  }
}

.Coordinate_slider .swiper-button-prev {
  left: calc(20 * var(--base));
}

.Coordinate_slider .swiper-button-prev svg {
  margin-right: calc(2 * var(--base));
}

.Coordinate_slider .swiper-button-next {
  right: calc(20 * var(--base));
}

.Coordinate_slider .swiper-button-next svg {
  margin-left: calc(2 * var(--base));
}

.Coordinate_slider .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: calc(12 * var(--base));
  bottom: 0;
}

.Coordinate_slider .swiper-pagination-bullet {
  width: calc(6 * var(--base));
  height: calc(6 * var(--base));
}

.Coordinate_slider .swiper-pagination-bullet-active {
  background-color: #61c2b5;
}

.Coordinate_img {
  aspect-ratio: 3/4;
}

.Coordinate_def {
  margin: calc(16 * var(--base)) calc(20 * var(--base)) 0;
}

.Coordinate_def + .Coordinate_def {
  margin-top: calc(8 * var(--base));
}

.Coordinate_defKey {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1.5;
  color: #61c2b5;
}

.Coordinate_list {
  margin-top: calc(8 * var(--base));
  border-bottom: calc(1 * var(--base)) dotted #b3b3b3;
}

.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;
}

.Coordinate_name {
  width: calc(64 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 600;
  white-space: nowrap;
}

.Coordinate_price {
  flex: 1;
  font-size: calc(14 * var(--base));
  font-weight: 600;
}

.Coordinate_price s {
  font-size: calc(11 * var(--base));
  font-weight: 600;
}

.Coordinate_price em {
  margin-left: calc(4 * var(--base));
  font-weight: 600;
  color: #c00;
}

.Coordinate_price span {
  font-size: calc(12 * var(--base));
  font-weight: 600;
}

.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));
}

.Coordinate_link.-navy {
  color: #fff;
  background-color: #474a66;
}

.Coordinate_link.-navy svg {
  fill: #fff;
}

.Coordinate_link.-gray {
  color: #fff;
  background-color: #8a8e99;
}

.Coordinate_link.-gray svg {
  fill: #fff;
}

.Coordinate_link.-blue {
  color: #333;
  background-color: #98b3d9;
}

.Coordinate_link.-blue svg {
  fill: #333;
}

.Coordinate_link.-lightGreen {
  width: calc(120 * var(--base));
  color: #333;
  background-color: #9fc7c7;
}

.Coordinate_link.-lightGreen svg {
  fill: #333;
}

.Coordinate_link.-comingSoon {
  padding-right: 0;
  font-size: calc(11 * var(--base));
  white-space: nowrap;
}

.Coordinate_link span {
  font-weight: 600;
}

.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;
}

@media (any-hover: hover) {
  .Coordinate_link svg {
    transition: transform 0.4s;
  }
  .Coordinate_link:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
}

.Holder {
  width: calc(375 * var(--base));
  position: relative;
  z-index: 2;
  margin: -699px auto 0;
  background-color: #fff;
}

.Inner {
  position: relative;
  padding-right: calc(20 * var(--base));
  padding-left: calc(20 * var(--base));
  margin-right: auto;
  margin-left: auto;
}

.Instagram {
  padding: calc(40 * var(--base)) 0;
}

.Instagram_title {
  text-align: center;
  font-size: calc(17 * var(--base));
  font-weight: 600;
}

.Instagram_body {
  margin: calc(16 * var(--base)) calc(20 * var(--base)) 0;
}

.Instagram_link {
  display: block;
}

@media (any-hover: hover) {
  .Instagram_link {
    transition: opacity 0.4s;
  }
  .Instagram_link:hover {
    opacity: 0.7;
  }
}

.Instagram_bnr {
  aspect-ratio: 1200/439;
}

.Instagram_accountHolder {
  margin-top: calc(40 * var(--base));
}

.Instagram_account {
  aspect-ratio: 1/1;
}

.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));
}

.IntroSection {
  padding: calc(50 * var(--base)) 0;
}

.Intro_text {
  width: calc(204 * var(--base));
  margin: auto;
}

.Intro_textImg {
  aspect-ratio: 397/76;
}

.Intro_title {
  width: calc(244 * var(--base));
  margin: calc(12 * var(--base)) auto 0;
}

.Intro_titleImg {
  aspect-ratio: 150/17;
}

.KV {
  height: calc(500 * var(--base));
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.KV_img {
  display: block;
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  opacity: 0;
}

.KV_img:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
}

.KV_img:nth-child(1) {
  opacity: 1;
  transform: scale(2);
  transform-origin: top;
}

.KV_img:nth-child(2) {
  transform: translate3d(0, 10%, 0);
}

.KV_img:nth-child(3) {
  transform: translate3d(0, 10%, 0);
}

.KV_img:nth-child(4) {
  transform: scale(1.5);
}

.KV.-active .KV_img {
  opacity: 1;
}

.KV.-active .KV_img:nth-child(1) {
  transform: scale(1);
  transition: 3s;
}

.KV.-active .KV_img:nth-child(2) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.6s;
}

.KV.-active .KV_img:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.8s;
}

.KV.-active .KV_img:nth-child(4) {
  transform: scale(1);
  transition: 2s;
  transition-delay: 1s;
}

.LeftMenu {
  width: 360px;
  height: 528px;
  position: fixed;
  top: calc(50vh - 264px);
  left: calc((100vw - 487.5px) * 0.3246 - 180px);
  z-index: 11;
}

.LeftMenu_text {
  position: relative;
  text-align: center;
}

.LeftMenu_text::before, .LeftMenu_text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5px;
  height: 38px;
}

.LeftMenu_text::before {
  background-color: #333;
  transform: rotate(-45deg);
  z-index: 3;
}

.LeftMenu_text::after {
  background-color: #f49299;
  transform: rotate(45deg);
  z-index: 2;
}

.LeftMenu_text p {
  font-size: 23px;
  font-weight: 600;
  font-style: italic;
  white-space: nowrap;
}

.LeftMenu_text p:nth-child(n+2) {
  margin-top: 48px;
}

.LeftMenu_text em {
  font-weight: 600;
  font-style: italic;
  color: #f49299;
}

.LeftMenu_title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 48px;
}

.LeftMenu_title span {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  vertical-align: -2px !important;
  color: #fff;
  margin: 0 13px;
}

.LeftMenu_title svg {
  fill: #f49299;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -11px;
  margin: auto;
  z-index: -1;
}

.LeftMenu_title em {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: #f49299;
}

.LeftMenu_def {
  margin-top: 32px;
}

.LeftMenu_defKey {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.LeftMenu_list {
  display: grid;
  grid-template-columns: repeat(2, 128px);
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.LeftMenu_link {
  display: block;
  border-radius: 8px;
}

@media (any-hover: hover) {
  .LeftMenu_link:hover .LeftMenu_name {
    background-color: #86d0c6;
  }
  .LeftMenu_link:hover .LeftMenu_img {
    opacity: 0.7;
  }
}

.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;
}

.LeftMenu_img {
  border-radius: 0 0 8px 8px;
  transition: opacity 0.4s;
}

.LineupSection {
  padding-top: calc(60 * var(--base));
  background-color: #f2e6e3;
}

.LineupSection_menu {
  margin: calc(20 * var(--base)) 0;
  letter-spacing: 0;
}

.LineupSection_menu .Button {
  padding-right: calc(8 * var(--base));
}

.LineupSection_menuList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: calc(8 * var(--base));
       column-gap: calc(8 * var(--base));
  row-gap: calc(12 * var(--base));
}

.LineupSection_text {
  text-align: center;
}

.Lineup {
  position: relative;
  padding: calc(40 * var(--base)) calc(20 * var(--base));
  margin-top: calc(40 * var(--base));
  background-color: #fff;
  overflow: hidden;
}

.Lineup + .Lineup {
  margin-top: calc(20 * var(--base));
}

.LineupSection_text + .Lineup, .LineupSection_menu + .Lineup {
  margin-top: calc(60 * var(--base));
}

.Lineup.-active .Lineup_newHolder {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 0, 0);
}

.Lineup_newHolder {
  width: calc(80 * var(--base));
  height: calc(80 * var(--base));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate3d(-100%, 0, 0);
}

.Lineup_new {
  aspect-ratio: 1/1;
}

.Lineup_slider {
  position: relative;
  margin-top: calc(20 * var(--base));
}

.Lineup_slider.-active .Lineup_imgSlider::before {
  transform: scaleY(1);
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.Lineup_slider.-active .Lineup_imgHolder {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.8s 0.4s;
}

.Lineup_slider.-hasTitle {
  margin-top: calc(40 * var(--base));
}

.Lineup_slider.-hasTitle .swiper-button-prev,
.Lineup_slider.-hasTitle .swiper-button-next {
  top: calc(208 * var(--base));
}

.Lineup_slider .swiper-button-prev,
.Lineup_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 #8c646e;
  border-radius: calc(99 * var(--base));
}

.Lineup_slider .swiper-button-prev svg,
.Lineup_slider .swiper-button-next svg {
  width: calc(7.5 * var(--base));
  height: calc(15 * var(--base));
  fill: #8c646e;
}

.Lineup_slider .swiper-button-prev::after,
.Lineup_slider .swiper-button-next::after {
  content: none;
}

@media (any-hover: hover) {
  .Lineup_slider .swiper-button-prev svg,
  .Lineup_slider .swiper-button-next svg {
    transition: 0.4s;
  }
}

.Lineup_slider .swiper-button-prev {
  left: calc(-8 * var(--base));
}

.Lineup_slider .swiper-button-prev svg {
  margin-right: calc(2 * var(--base));
}

@media (any-hover: hover) {
  .Lineup_slider .swiper-button-prev:hover svg {
    transform: translate3d(calc(-4 * var(--base)), 0, 0);
  }
}

.Lineup_slider .swiper-button-next {
  right: calc(-8 * var(--base));
}

.Lineup_slider .swiper-button-next svg {
  margin-left: calc(2 * var(--base));
}

@media (any-hover: hover) {
  .Lineup_slider .swiper-button-next:hover svg {
    transform: translate3d(calc(4 * var(--base)), 0, 0);
  }
}

.Lineup_sliderInner {
  overflow: hidden;
}

.Lineup_sliderTitle {
  display: table;
  height: calc(24 * var(--base));
  position: relative;
  z-index: 1;
  padding: 0 calc(19 * var(--base));
  margin: 0 auto calc(-8 * var(--base));
  font-family: "Shippori Mincho", serif;
  font-size: calc(15 * var(--base));
  font-weight: 700;
  line-height: calc(24 * var(--base));
  white-space: nowrap;
  color: #8c646e;
}

.Lineup_sliderTitle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border: calc(1 * var(--base)) solid #a68f93;
}

.Lineup_sliderTitle::after {
  content: "";
  width: calc(100% - calc(10 * var(--base)));
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(5 * var(--base));
  z-index: -1;
  background-color: #fff;
}

.Lineup_imgSlider {
  position: relative;
  z-index: 1;
  margin: calc(12 * var(--base)) auto;
}

.Lineup_imgSlider.-active::before {
  transform: scaleY(1);
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.Lineup_imgSlider.-active .Lineup_imgHolder {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.8s 0.4s;
}

.Lineup_imgSlider::before {
  content: "";
  width: 100%;
  height: calc(330 * var(--base));
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  margin: auto;
  background-color: #8c646e;
  transform: scaleY(0);
  transform-origin: top;
}

.Lineup_imgHolder {
  opacity: 0;
  transform: translate3d(0, calc(20 * var(--base)), 0);
}

.Lineup_img {
  aspect-ratio: 3/4;
}

.Lineup_text {
  margin-top: calc(12 * var(--base));
  text-align: center;
}

.Lineup_productList {
  margin-top: calc(12 * var(--base));
  border-bottom: calc(1 * var(--base)) solid #beb5b4;
}

.Lineup_productItem {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--base));
  padding: calc(10 * var(--base)) calc(8 * var(--base));
  border-top: calc(1 * var(--base)) solid #beb5b4;
}

.Lineup_productItem .Button {
  width: calc(64 * var(--base));
  margin-left: auto;
  line-height: 1;
}

.Lineup_productName {
  width: calc(68 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 700;
}

.Lineup_productPrice {
  font-size: calc(12 * var(--base));
}

.Lineup_productPrice s {
  font-size: calc(10 * var(--base));
}

.Lineup_productPrice em {
  margin-left: calc(4 * var(--base));
  color: #c00;
}

.Lineup_productPrice span {
  font-size: calc(12 * var(--base));
}

.Lineup_productComingSoon {
  display: grid;
  place-content: center;
  height: calc(28 * var(--base));
  margin-left: auto;
  font-size: calc(11 * var(--base));
  line-height: 1;
}

.Lineup_data {
  display: flex;
  align-items: center;
  margin: calc(12 * var(--base)) calc(8 * var(--base)) 0;
}

.Lineup_dataTitle {
  font-size: calc(12 * var(--base));
  font-weight: 700;
}

.Lineup_dataBody {
  display: flex;
  justify-content: space-between;
  gap: calc(5 * var(--base));
  flex: 1;
  margin-left: calc(8 * var(--base));
}

.Lineup_size {
  font-family: "Shippori Mincho", serif;
  font-size: calc(18 * var(--base));
  font-weight: 700;
  letter-spacing: 0.04em;
}

.Lineup_line {
  flex: 1;
  position: relative;
}

.Lineup_line::before {
  content: "";
  width: 100%;
  height: calc(1 * var(--base));
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #333;
}

.Lineup_price {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: calc(18 * var(--base));
  font-weight: 700;
  letter-spacing: 0.04em;
}

.Lineup_price span {
  font-size: calc(14 * var(--base));
  font-weight: 700;
  vertical-align: calc(1 * var(--base)) !important;
  margin-left: calc(2 * var(--base));
}

.Lineup_colorList {
  display: flex;
  gap: calc(8 * var(--base));
}

.Lineup_colorList .Button {
  width: calc(72 * var(--base));
  line-height: 1;
}

.Lineup_colorList .Button.-pinkBeige {
  width: calc(100 * var(--base));
}

.LineupOther {
  margin: calc(40 * var(--base)) calc(-20 * var(--base)) 0;
  padding: calc(40 * var(--base)) 0;
  background-color: #f1f1f1;
  border-top: calc(4 * var(--base)) solid #fff;
  border-bottom: calc(4 * var(--base)) solid #fff;
}

.LineupOther_text {
  text-align: center;
  margin: calc(12 * var(--base)) auto calc(20 * var(--base));
}

.LineupOther_slider {
  position: relative;
  margin: calc(12 * var(--base)) calc(-20 * var(--base)) 0;
}

.LineupOther_slider .swiper-container {
  padding-left: calc(20 * var(--base));
}

.LineupOther_slider .swiper-button-prev,
.LineupOther_slider .swiper-button-next {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(118 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #8c646e;
  border-radius: calc(99 * var(--base));
}

.LineupOther_slider .swiper-button-prev svg,
.LineupOther_slider .swiper-button-next svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #8c646e;
}

.LineupOther_slider .swiper-button-prev::after,
.LineupOther_slider .swiper-button-next::after {
  content: none;
}

@media (any-hover: hover) {
  .LineupOther_slider .swiper-button-prev svg,
  .LineupOther_slider .swiper-button-next svg {
    transition: 0.4s;
  }
}

.LineupOther_slider .swiper-button-prev {
  left: calc(12 * var(--base));
}

.LineupOther_slider .swiper-button-prev svg {
  margin-right: calc(2 * var(--base));
}

@media (any-hover: hover) {
  .LineupOther_slider .swiper-button-prev:hover svg {
    transform: translate3d(calc(-4 * var(--base)), 0, 0);
  }
}

.LineupOther_slider .swiper-button-next {
  right: calc(12 * var(--base));
}

.LineupOther_slider .swiper-button-next svg {
  margin-left: calc(2 * var(--base));
}

@media (any-hover: hover) {
  .LineupOther_slider .swiper-button-next:hover svg {
    transform: translate3d(calc(4 * var(--base)), 0, 0);
  }
}

.LineupOther_slider .Button {
  margin-top: calc(12 * var(--base));
  font-size: calc(12 * var(--base));
  line-height: 1;
}

.LineupOther_slider + .Button {
  margin-top: calc(40 * var(--base));
}

.LineupOther_img {
  aspect-ratio: 45/76;
}

.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;
}

.Loading.-inactive {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  pointer-events: none;
}

.Loading_logo {
  width: calc(250 * var(--base));
}

.Loading_items {
  display: grid;
  grid-template-columns: repeat(3, 12px);
  grid-template-rows: repeat(3, 12px);
  margin: calc(24 * var(--base)) auto 0;
  gap: 3px;
  transform: rotate(45deg);
}

.Loading_item {
  background-color: #8c646e;
  transform: scale(0);
  animation: scaling 2s infinite;
}

.Loading_item:nth-child(2), .Loading_item:nth-child(4), .Loading_item:nth-child(6), .Loading_item:nth-child(8) {
  animation-delay: 0.1s;
}

.Loading_item:nth-child(1), .Loading_item:nth-child(3), .Loading_item:nth-child(7), .Loading_item:nth-child(9) {
  animation-delay: 0.2s;
}

.Loading_item.-inactive {
  animation: none;
}

@keyframes scaling {
  0% {
    transform: scale(0);
    background-color: #f2e6e3;
  }
  25% {
    transform: scale(1);
    background-color: #a68f93;
  }
  50% {
    transform: scale(1);
    background-color: #8c646e;
  }
  75% {
    transform: scale(0);
    background-color: #a68f93;
  }
  100% {
    transform: scale(0);
    background-color: #f2e6e3;
  }
}

.Menu {
  width: 100%;
  height: 0;
  position: sticky;
  top: 122px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, calc(-32 * var(--base)), 0);
}

.Menu.-active {
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.Menu_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.Menu_item:nth-child(n+2) {
  position: relative;
}

.Menu_item:nth-child(n+2)::before {
  content: "";
  width: calc(1 * var(--base));
  position: absolute;
  top: calc(6 * var(--base));
  bottom: calc(6 * var(--base));
  left: 0;
  z-index: 1;
  background-color: #fff;
}

.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: #8c646e;
  cursor: pointer;
  transition: color 0.4s, background-color 0.4s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.Menu_switch {
  height: 0;
  position: relative;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.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;
}

.Modal.-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.Modal_inner {
  width: calc(295 * var(--base));
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: calc(8 * var(--base));
}

.Modal_contents {
  display: none;
}

.Modal_contents.-active {
  display: block;
}

.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);
}

@media (any-hover: hover) {
  .Modal_close {
    transition: background-color 0.4s;
  }
  .Modal_close:hover {
    background-color: #a68a70;
  }
}

.Modal_close::before, .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;
}

.Modal_close::before {
  transform: rotate(45deg);
}

.Modal_close::after {
  transform: rotate(-45deg);
}

.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);
}

.NewLineup {
  padding: calc(40 * var(--base)) 0;
  background-color: #a68f93;
}

.NewLineup_inner {
  position: relative;
  padding: calc(40 * var(--base)) calc(20 * var(--base));
  background-color: #f2e6e3;
}

.NewLineup_inner::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-color: #a68f93 transparent transparent transparent;
  border-width: calc(25 * var(--base)) calc(25 * var(--base)) 0 0;
}

.NewLineup_inner::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-color: transparent transparent #a68f93 transparent;
  border-width: 0 0 calc(25 * var(--base)) calc(25 * var(--base));
}

.NewLineup_title {
  display: block;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #8c646e;
}

.NewLineup_title.-sub {
  display: grid;
  place-content: center;
  width: calc(208 * var(--base));
  height: calc(24 * var(--base));
  position: relative;
  z-index: 1;
  margin: auto;
  font-size: calc(15 * var(--base));
  font-weight: 700;
  line-height: 1;
}

.NewLineup_title.-sub::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border: calc(1 * var(--base)) solid #a68f93;
}

.NewLineup_title.-sub::after {
  content: "";
  width: calc(100% - calc(10 * var(--base)));
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(5 * var(--base));
  z-index: -1;
  background-color: #f2e6e3;
}

.NewLineup_title.-main {
  font-size: calc(24 * var(--base));
  font-weight: 700;
}

.NewLineup_products {
  display: grid;
  grid-template-columns: calc(139.5 * var(--base)) calc(6.5 * var(--base)) calc(6.5 * var(--base)) calc(139.5 * var(--base));
  grid-template-rows: repeat(3, auto);
  margin-top: calc(12 * var(--base));
}

.NewLineup_products.-active .NewLineup_imgHolder {
  transition: 0.8s;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.NewLineup_products.-active .NewLineup_imgHolder:nth-child(2) {
  transition-delay: 0.15s;
}

.NewLineup_products.-active .NewLineup_imgHolder:nth-child(3) {
  transition-delay: 0.3s;
}

.NewLineup_products.-active .NewLineup_imgHolder:nth-child(4) {
  transition-delay: 0.45s;
}

.NewLineup_link {
  display: block;
  transition: transform 0.4s;
}

@media (any-hover: hover) {
  .NewLineup_link:hover {
    transform: scale(1.1);
  }
}

.NewLineup_imgHolder {
  opacity: 0;
  transform: translate3d(0, calc(20 * var(--base)), 0);
}

.NewLineup_imgHolder:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
  padding-right: calc(8.5 * var(--base));
}

.NewLineup_imgHolder:nth-child(2) {
  grid-column: 2/5;
  grid-row: 1/2;
  padding-left: calc(6.5 * var(--base));
}

.NewLineup_imgHolder:nth-child(3) {
  grid-column: 1/4;
  grid-row: 3/4;
  padding-right: calc(6.5 * var(--base));
  margin-top: calc(12 * var(--base));
}

.NewLineup_imgHolder:nth-child(4) {
  grid-column: 4/5;
  grid-row: 2/4;
  padding-left: calc(8.5 * var(--base));
  margin-top: calc(12 * var(--base));
}

.NewLineup_img.-n1, .NewLineup_img.-n4 {
  aspect-ratio: 131/302;
}

.NewLineup_img.-n2, .NewLineup_img.-n3 {
  aspect-ratio: 146/115;
}

.NewLineup_menu {
  margin-top: calc(20 * var(--base));
}

.NewLineup_menuList {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(20 * var(--base));
  -moz-column-gap: calc(8 * var(--base));
       column-gap: calc(8 * var(--base));
}

.NewLineup_menuItem {
  width: calc(143.5 * var(--base));
}

.NewLineup_menuItem:nth-child(1) {
  width: 100%;
}

.Point {
  padding: calc(40 * var(--base)) calc(20 * var(--base));
}

.Point_list {
  counter-reset: point;
}

.Point_item {
  counter-increment: point;
  position: relative;
}

.Point_item + .Point_item {
  margin-top: calc(40 * var(--base));
}

.Point_item:nth-child(odd) {
  padding: calc(28 * var(--base)) 0 0 calc(12 * var(--base));
}

.Point_item:nth-child(odd) .Point_no {
  left: 0;
}

.Point_item:nth-child(odd) .Point_def {
  flex-direction: row-reverse;
}

.Point_item:nth-child(even) {
  padding: calc(28 * var(--base)) calc(12 * var(--base)) 0 0;
}

.Point_item:nth-child(even) .Point_no {
  right: 0;
}

.Point_item.-narrow {
  margin-top: calc(16 * var(--base));
}

.Point_item.-functions {
  padding-left: calc(12 * var(--base));
  padding-right: calc(12 * var(--base));
}

.Point_item.-functions .Point_no {
  left: calc(29 * var(--base));
}

.Point_item.-functions .Point_def {
  display: block;
}

.Point_item.-functions .Point_head {
  margin: 0 calc(30 * var(--base));
}

.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));
}

.Point_item.-functions .Point_title em {
  font-size: calc(24 * var(--base));
  margin-top: calc(8 * var(--base));
}

.Point_item.-functions .Point_body {
  width: 100%;
}

.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);
}

.Point_no::after {
  content: counter(point);
  display: block;
  font-size: calc(24 * var(--base));
}

.Point_no.-active {
  animation: elastic 1.5s both;
}

.Point_def {
  display: flex;
  gap: calc(20 * var(--base));
}

.Point_titleHolder {
  width: calc(50 * var(--base));
  position: relative;
  overflow: hidden;
}

.Point_titleHolder.-active::before {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 100%, 0);
}

.Point_titleHolder.-active.-horizontal::before {
  transform: translate3d(100%, 0, 0);
}

.Point_titleHolder.-horizontal {
  width: 100%;
}

.Point_titleHolder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #ddf0f0;
}

.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;
}

.Point_title em {
  display: block;
  font-size: calc(24 * var(--base));
  font-weight: 600;
  color: #61c2b5;
  margin-right: calc(8 * var(--base));
}

.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/1;
}

.Point_body {
  width: calc(213 * var(--base));
}

.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));
}

.Point_text + .Point_text {
  margin-top: 1.25em;
}

.Point_imgHolder {
  overflow: hidden;
}

.Point_img {
  aspect-ratio: 160/113;
}

.Point_function {
  display: flex;
  gap: calc(22 * var(--base));
  margin-top: calc(32 * var(--base));
}

.Point_function:nth-child(odd) {
  flex-direction: row-reverse;
}

.Point_functionTitleHolder {
  width: calc(36 * var(--base));
  position: relative;
  overflow: hidden;
}

.Point_functionTitleHolder.-active::before {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 100%, 0);
}

.Point_functionTitleHolder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #ddf0f0;
}

.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));
}

.Point_functionBody {
  width: calc(213 * var(--base));
}

.Point_functionImgHolder {
  overflow: hidden;
}

.Point_functionImg {
  aspect-ratio: 160/113;
}

.Point_functionDef + .Point_functionImgHolder {
  margin-top: calc(32 * var(--base));
}

.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));
}

.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));
}

.PointDetail {
  padding: calc(60 * var(--base)) calc(20 * var(--base)) calc(40 * var(--base));
}

.PointDetail + .PointDetail {
  margin-top: calc(-40 * var(--base));
}

.PointDetail_head {
  display: flex;
  gap: calc(20 * var(--base));
}

.PointDetail_titleHolder {
  width: calc(50 * var(--base));
  position: relative;
  overflow: hidden;
}

.PointDetail_titleHolder.-active::before {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 100%, 0);
}

.PointDetail_titleHolder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #ddf0f0;
}

.PointDetail_title {
  writing-mode: vertical-rl;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.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));
}

.PointDetail_imgHolder {
  flex: 1;
  position: relative;
  margin-right: calc(12 * var(--base));
  overflow: hidden;
}

.PointDetail_imgHolder.-active .PointDetail_indicate {
  transition: 0.6s;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.PointDetail_imgHolder.-active .PointDetail_indicate.-n1 {
  transition-delay: 0.2s;
}

.PointDetail_imgHolder.-active .PointDetail_indicate.-n2 {
  transition-delay: 0.4s;
}

.PointDetail_imgHolder.-active .PointDetail_indicate.-n3 {
  transition-delay: 0.6s;
}

.PointDetail_imgHolder.-active .PointDetail_indicate.-n4 {
  transition-delay: 0.2s;
}

.PointDetail_imgHolder.-active .PointDetail_indicate.-n5 {
  transition-delay: 0.4s;
}

.PointDetail_img {
  aspect-ratio: 253/380;
}

.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;
}

.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));
}

.PointDetail_indicate::after {
  content: "";
  width: calc(40 * var(--base));
  height: calc(1 * var(--base));
  position: absolute;
  z-index: -1;
  background-color: #61c2b5;
}

.PointDetail_indicate.-n1 {
  top: calc(116 * var(--base));
  right: calc(36 * var(--base));
  transform: translate3d(calc(16 * var(--base)), calc(16 * var(--base)), 0);
}

.PointDetail_indicate.-n1::before {
  top: calc(-10 * var(--base));
  left: calc(-10 * var(--base));
}

.PointDetail_indicate.-n1::after {
  top: calc(-7 * var(--base));
  left: calc(-6 * var(--base));
  transform: rotate(45deg);
  transform-origin: top left;
}

.PointDetail_indicate.-n2 {
  top: calc(182 * var(--base));
  left: calc(40 * var(--base));
  transform: translate3d(calc(-16 * var(--base)), calc(16 * var(--base)), 0);
}

.PointDetail_indicate.-n2::before {
  top: calc(-9 * var(--base));
  right: calc(-9 * var(--base));
}

.PointDetail_indicate.-n2::after {
  top: calc(-6 * var(--base));
  right: calc(-5 * var(--base));
  transform: rotate(-45deg);
  transform-origin: top right;
}

.PointDetail_indicate.-n3 {
  top: calc(252 * var(--base));
  right: calc(28 * var(--base));
  transform: translate3d(calc(16 * var(--base)), calc(16 * var(--base)), 0);
}

.PointDetail_indicate.-n3::before {
  top: calc(-17 * var(--base));
  left: calc(-7 * var(--base));
}

.PointDetail_indicate.-n3::after {
  top: calc(-14 * var(--base));
  left: calc(-4 * var(--base));
  transform: rotate(52deg);
  transform-origin: top left;
}

.PointDetail_indicate.-n4 {
  top: calc(130 * var(--base));
  right: calc(40 * var(--base));
  transform: translate3d(calc(16 * var(--base)), calc(16 * var(--base)), 0);
}

.PointDetail_indicate.-n4::before {
  top: calc(-13 * var(--base));
  left: calc(-8 * var(--base));
}

.PointDetail_indicate.-n4::after {
  top: calc(-10 * var(--base));
  left: calc(-4 * var(--base));
  transform: rotate(50deg);
  transform-origin: top left;
}

.PointDetail_indicate.-n5 {
  top: calc(228 * var(--base));
  left: calc(40 * var(--base));
  transform: translate3d(calc(-16 * var(--base)), calc(16 * var(--base)), 0);
}

.PointDetail_indicate.-n5::before {
  top: calc(-10 * var(--base));
  right: calc(-10 * var(--base));
}

.PointDetail_indicate.-n5::after {
  top: calc(-6 * var(--base));
  right: calc(-5 * var(--base));
  transform: rotate(-45deg);
  transform-origin: top right;
}

.PointDetail_intro {
  margin-top: calc(12 * var(--base));
}

.PointDetail_introTitle {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
}

.PointDetail_introText {
  text-align: justify;
  font-size: calc(12 * var(--base));
  line-height: 1.666;
  letter-spacing: 0;
}

.PointDetail_list {
  counter-reset: point-detail;
}

.PointDetail_item {
  counter-increment: point-detail;
  margin-top: calc(24 * var(--base));
}

.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));
}

.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));
}

.PointDetail_functionText {
  text-align: justify;
  font-size: calc(12 * var(--base));
  line-height: 1.666;
  letter-spacing: 0;
  margin-top: calc(8 * var(--base));
}

.RecommendSection {
  padding: calc(32 * var(--base)) 0 calc(40 * var(--base));
  background-color: #f7e8e1;
}

.Recommend_slider {
  position: relative;
  margin: calc(16 * var(--base)) calc(-20 * var(--base)) 0;
}

.Recommend_slider .swiper-container {
  padding-left: calc(12 * var(--base));
}

.Recommend_slider .swiper-button-prev,
.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));
}

@media (any-hover: hover) {
  .Recommend_slider .swiper-button-prev,
  .Recommend_slider .swiper-button-next {
    transition: background-color 0.4s;
  }
  .Recommend_slider .swiper-button-prev svg,
  .Recommend_slider .swiper-button-next svg {
    transition: fill 0.4s;
  }
  .Recommend_slider .swiper-button-prev:hover,
  .Recommend_slider .swiper-button-next:hover {
    background-color: #9b7d61;
  }
  .Recommend_slider .swiper-button-prev:hover svg,
  .Recommend_slider .swiper-button-next:hover svg {
    fill: #fff;
  }
}

.Recommend_slider .swiper-button-prev svg,
.Recommend_slider .swiper-button-next svg {
  width: calc(9 * var(--base));
  height: calc(15 * var(--base));
  fill: #9b7d61;
}

.Recommend_slider .swiper-button-prev::after,
.Recommend_slider .swiper-button-next::after {
  content: none;
}

.Recommend_slider .swiper-button-prev {
  left: calc(20 * var(--base));
}

.Recommend_slider .swiper-button-prev svg {
  margin-right: calc(2 * var(--base));
}

.Recommend_slider .swiper-button-next {
  right: calc(20 * var(--base));
}

.Recommend_slider .swiper-button-next svg {
  margin-left: calc(2 * var(--base));
}

.Recommend_slider .Button {
  height: calc(40 * var(--base));
  margin-top: calc(12 * var(--base));
}

.Recommend_img {
  aspect-ratio: 29/49;
}

.SideMenu {
  width: 296px;
  height: 614px;
  position: sticky;
  top: calc(50% - 307px);
  margin-left: calc(50% + 243.75px + (100% - 487.5px) / 4 - 148px);
  margin-bottom: 90px;
  z-index: 1;
}

.SideMenu_title {
  display: block;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #8c646e;
}

.SideMenu_title.-sub {
  display: grid;
  place-content: center;
  width: 218px;
  height: 24px;
  position: relative;
  z-index: 1;
  margin: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.SideMenu_title.-sub::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border: 1px solid #8c646e;
}

.SideMenu_title.-sub::after {
  content: "";
  width: calc(100% - 12px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 6px;
  z-index: -1;
  background-color: #beb5b4;
}

.SideMenu_title.-main {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.SideMenu_products {
  display: grid;
  grid-template-columns: 138px 10px 10px 138px;
  grid-template-rows: repeat(3, auto);
  margin-top: 12px;
}

.SideMenu_link {
  display: block;
  transition: transform 0.4s;
}

@media (any-hover: hover) {
  .SideMenu_link:hover {
    transform: scale(1.08);
  }
}

.SideMenu_imgHolder:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}

.SideMenu_imgHolder:nth-child(2) {
  grid-column: 2/5;
  grid-row: 1/2;
  padding-left: 3px;
}

.SideMenu_imgHolder:nth-child(3) {
  grid-column: 1/4;
  grid-row: 3/4;
  padding-right: 3px;
  margin-top: 14px;
}

.SideMenu_imgHolder:nth-child(4) {
  grid-column: 4/5;
  grid-row: 2/4;
  margin-top: 14px;
}

.SideMenu_img.-n1, .SideMenu_img.-n4 {
  aspect-ratio: 131/302;
}

.SideMenu_img.-n2, .SideMenu_img.-n3 {
  aspect-ratio: 146/115;
}

.SideMenu .Button {
  width: 276px;
  height: 60px;
  margin: 22px auto 0;
  font-size: 14px;
}

.SideMenu .Button svg {
  width: 6px;
  height: 12px;
}

.Suggest {
  padding: calc(60 * var(--base)) 0 calc(40 * var(--base));
}

.Suggest + .Suggest {
  position: relative;
  padding-top: calc(40 * var(--base));
}

.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;
}

.Suggest_slider {
  position: relative;
  margin: calc(20 * var(--base)) calc(-20 * var(--base)) 0;
}

.Suggest_slider .swiper-container {
  padding-left: calc(16 * var(--base));
}

.Suggest_slider .swiper-button-prev,
.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));
}

.Suggest_slider .swiper-button-prev svg,
.Suggest_slider .swiper-button-next svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
}

.Suggest_slider .swiper-button-prev::after,
.Suggest_slider .swiper-button-next::after {
  content: none;
}

@media (any-hover: hover) {
  .Suggest_slider .swiper-button-prev,
  .Suggest_slider .swiper-button-next {
    transition: background-color 0.4s;
  }
  .Suggest_slider .swiper-button-prev svg,
  .Suggest_slider .swiper-button-next svg {
    transition: fill 0.4s;
  }
  .Suggest_slider .swiper-button-prev:hover,
  .Suggest_slider .swiper-button-next:hover {
    background-color: #61c2b5;
  }
  .Suggest_slider .swiper-button-prev:hover svg,
  .Suggest_slider .swiper-button-next:hover svg {
    fill: #fff;
  }
}

.Suggest_slider .swiper-button-prev {
  left: calc(20 * var(--base));
}

.Suggest_slider .swiper-button-prev svg {
  margin-right: calc(2 * var(--base));
}

.Suggest_slider .swiper-button-next {
  right: calc(20 * var(--base));
}

.Suggest_slider .swiper-button-next svg {
  margin-left: calc(2 * var(--base));
}

.Suggest_slider .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: calc(12 * var(--base));
  bottom: 0;
}

.Suggest_slider .swiper-pagination-bullet {
  width: calc(6 * var(--base));
  height: calc(6 * var(--base));
}

.Suggest_slider .swiper-pagination-bullet-active {
  background-color: #61c2b5;
}

.Suggest_img {
  aspect-ratio: 3/4;
}

.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;
}

.Suggest_link.-navy {
  color: #fff;
  background-color: #474a66;
}

.Suggest_link.-navy svg {
  fill: #fff;
}

.Suggest_link.-gray {
  color: #fff;
  background-color: #8a8e99;
}

.Suggest_link.-gray svg {
  fill: #fff;
}

.Suggest_link.-ivory {
  color: #333;
  background-color: #e6e3da;
}

.Suggest_link.-ivory svg {
  fill: #333;
}

.Suggest_link.-blue {
  color: #333;
  background-color: #98b3d9;
}

.Suggest_link.-blue svg {
  fill: #333;
}

.Suggest_link.-lightGreen {
  width: calc(120 * var(--base));
  color: #333;
  background-color: #9fc7c7;
}

.Suggest_link.-lightGreen svg {
  fill: #333;
}

.Suggest_link.-comingSoon {
  width: 100%;
  height: calc(12 * var(--base));
  padding-right: 0;
}

.Suggest_link span {
  font-weight: 600;
}

.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;
}

@media (any-hover: hover) {
  .Suggest_link svg {
    transition: transform 0.4s;
  }
  .Suggest_link:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
}

.Suggest .Button {
  margin-top: calc(32 * var(--base));
}

.Tab {
  padding-top: calc(20 * var(--base));
}

.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;
}

.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);
}

.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);
}

.Tab_head.-active {
  color: #333;
  background-color: #fff;
  pointer-events: none;
}

.Tab_head.-active::before {
  transform: scaleX(1);
}

@media (any-hover: hover) {
  .Tab_head:hover {
    background-color: #86d0c6;
  }
}

.Tab_bodyGroup {
  background-color: #fff;
}

.Tab_body {
  display: none;
  opacity: 0;
}

.Tab_body.-active {
  display: block;
  transition: opacity 0.4s;
}

.PointTab {
  margin-top: calc(60 * var(--base));
}

.PointTab_headGroup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(12 * var(--base));
}

.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);
}

.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);
}

.PointTab_head.-active {
  color: #333;
  background-color: #ddf0f0;
  pointer-events: none;
}

.PointTab_head.-active::before {
  transform: scaleX(1);
}

.PointTab_head span {
  font-weight: 600;
}

.PointTab_head em {
  font-size: calc(18 * var(--base));
  font-weight: 600;
}

@media (any-hover: hover) {
  .PointTab_head:hover {
    background-color: #86d0c6;
  }
}

.PointTab_bodyGroup {
  background-color: #ddf0f0;
}

.PointTab_body {
  display: none;
  opacity: 0;
}

.PointTab_body.-active {
  display: block;
  transition: opacity 0.4s;
}

.Title {
  font-family: "Shippori Mincho", serif;
  font-size: calc(24 * var(--base));
  font-weight: 700;
  white-space: nowrap;
  color: #8c646e;
}

.Title.-lv1 {
  display: table;
  height: calc(36 * var(--base));
  position: relative;
  z-index: 1;
  padding: 0 calc(28 * var(--base));
  margin: auto;
  line-height: calc(36 * var(--base));
}

.Title.-lv1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border: calc(1 * var(--base)) solid #a68f93;
}

.Title.-lv1::after {
  content: "";
  width: calc(100% - calc(16 * var(--base)));
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(8 * var(--base));
  z-index: -1;
  background-color: #f2e6e3;
}

.Title.-lv2 {
  text-align: center;
  line-height: 1.5;
}

.Voice {
  position: relative;
  padding: calc(20 * var(--base)) 0;
  margin-top: calc(20 * var(--base));
  background-color: #f2f2f2;
  opacity: 0;
}

.Voice.-active {
  transition: 0.6s;
  opacity: 1;
}

.Voice.-active:nth-child(odd), .Voice.-active:nth-child(even) {
  transform: translate3d(0, 0, 0);
}

.Voice:nth-child(odd) {
  transform: translate3d(calc(20 * var(--base)), 0, 0);
}

.Voice:nth-child(odd) .Voice_text svg {
  right: 100%;
}

.Voice:nth-child(even) {
  transform: translate3d(calc(-20 * var(--base)), 0, 0);
}

.Voice:nth-child(even) .Voice_body {
  flex-direction: row-reverse;
}

.Voice:nth-child(even) .Voice_text svg {
  left: 100%;
  transform: scaleX(-1);
}

.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;
}

.Voice_head {
  display: flex;
  justify-content: center;
  gap: calc(30 * var(--base));
  line-height: 1.5;
}

.Voice_no {
  position: relative;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  color: #61c2b5;
}

.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;
}

.Voice_no em {
  font-size: calc(24 * var(--base));
  font-weight: 600;
}

.Voice_title {
  font-size: calc(24 * var(--base));
  font-weight: 600;
  color: #61c2b5;
}

.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));
}

.Voice_avatar {
  width: calc(80 * var(--base)) !important;
  height: calc(80 * var(--base)) !important;
  aspect-ratio: 1/1;
}

.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));
}

.Voice_text svg {
  width: calc(16 * var(--base));
  height: calc(16 * var(--base));
  position: absolute;
  top: calc(20 * var(--base));
  fill: #fff;
}

.theme-ladies-hilton-series {
  --base: 1.3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14 * var(--base));
  line-height: 1.75;
  color: #333;
}

.theme-ladies-hilton-series::before {
  content: "";
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: -1;
  background-color: #beb5b4;
  pointer-events: none;
}

.theme-ladies-hilton-series *,
.theme-ladies-hilton-series ::before,
.theme-ladies-hilton-series ::after {
  box-sizing: border-box;
}

.theme-ladies-hilton-series img {
  width: 100%;
  height: auto;
}

.theme-ladies-hilton-series span,
.theme-ladies-hilton-series em,
.theme-ladies-hilton-series s {
  vertical-align: baseline;
}

@keyframes elastic {
  0% {
    transform: scale(0);
  }
  16% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(0.9);
  }
  44% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.m-footer.l-footer {
  position: relative;
  z-index: 11;
}
main .swiper-button-next:after,
main .swiper-button-prev:after {
    content: none!important;
}