main{
    line-height: 1.4;
    letter-spacing: 0;
}
.Product .Product_size {
    display: none;
}
.Product Button.-cart{
    display: none;
}

.absolute {
    position: absolute
}
.mx-auto {
    margin-left: auto;
    margin-right: auto
}
.mr-10 {
    margin-right: 10px
}
.mt-30 {
    margin-top: 30px
}
.mt-40 {
    margin-top: 40px
}
.mt-60 {
    margin-top: 60px
}
.block {
    display: block
}
.inline {
    display: inline
}
.flex {
    display: flex
}
.grid {
    display: grid
}
.hidden {
    display: none
}
.h-67 {
    height: 67px
}
.h-69 {
    height: 69px
}
.h-78 {
    height: 78px
}
.w-400 {
    width: 400px
}
.w-50 {
    width: 50px
}
.w-53 {
    width: 53px
}
.w-62 {
    width: 62px
}
.w-65 {
    width: 65px
}
.w-full {
    width: 100%
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}
.items-center {
    align-items: center
}
.justify-center {
    justify-content: center
}
.gap-40 {
    gap: 40px
}
.overflow-hidden {
    overflow: hidden
}
.text-center {
    text-align: center
}
.text-14 {
    font-size: 14px
}
.text-18 {
    font-size: 18px
}
.text-50 {
    font-size: 50px
}
.text-80 {
    font-size: 80px
}
.-pc {
  display: block;
}

.AboutSection {
  padding-top: 100px;
  counter-reset: about;
}

.AboutSection_mainTitle {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}

.AboutSection_mainTitle > em {
  font-size: 30px;
  font-weight: 900;
  vertical-align: baseline;
  background-image: linear-gradient(transparent 70%, #ebe175 70%, #ebe175 90%, transparent 90%);
}

.AboutSection_body {
  padding: 60px 40px;
  margin-top: 55px;
  background-color: #d1d9e0;
}

.AboutSection_text {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}

.AboutSection_list > li {
  margin-top: 20px;
}

.About {
  display: grid;
  align-items: start;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  position: relative;
  padding: 40px 30px;
  background-color: #fff;
}

.About::before {
  counter-increment: about;
  content: counter(about);
  width: 64px;
  height: 64px;
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  background-color: #86a3c9;
}

.About_title {
  font-size: 24px;
  font-weight: 900;
}

.About_text {
  margin-top: 10px;
  line-height: 2;
}

.About_imgHolder {
  overflow: hidden;
  border-radius: 20px;
}

.About_img {
  aspect-ratio: 4/3;
}

.About > dl {
  align-self: center;
}

.About_info {
  position: absolute;
  top: 130px;
  left: 110px;
  min-width: 200px !important;
}

.AboutTrouble {
  position: relative;
  height: 206px;
  padding-top: 40px;
  margin-top: 20px;
  margin-bottom: 35px;
}

.AboutTrouble_img {
  width: 170px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.AboutTrouble_img > img {
  aspect-ratio: 85/103;
}

.AboutTrouble_list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 200px);
  gap: 20px 224px;
}

.AboutTrouble_list > li {
  display: grid;
  place-content: center;
  height: 60px;
  position: relative;
  font-size: 24px;
  color: #fff;
  background-color: #86a3c9;
  border-radius: 5px;
}

.AboutTrouble_list > li:nth-child(odd) svg {
  left: 100%;
  transform: scaleX(-1);
}

.AboutTrouble_list > li:nth-child(even) {
  position: relative;
  top: 40px;
}

.AboutTrouble_list > li:nth-child(even) svg {
  right: 100%;
}

.AboutTrouble_list > li svg {
  width: 17px;
  height: 19px;
  position: absolute;
  top: 20px;
  fill: #86a3c9;
}

.FadeSlideUp {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.FadeSlideUp.-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.4s;
  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;
}

.DrawMarker {
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.DrawMarker.-active {
  transition: background-size 0.6s;
  background-size: 100% 100%;
  margin: auto;
}

.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);
  }
}

.BannerSection {
  background-color: #ceafaf;
  padding: 60px 0;
}

.Banner {
  display: block;
  width: 725px;
  margin-right: auto;
  margin-left: auto;
}

@media (any-hover: hover) {
  .Banner {
    transition: opacity 0.4s;
  }
  .Banner:hover {
    opacity: 0.7;
  }
}

.Banner_img {
  aspect-ratio: 29/6;
}

.Button {
  display: grid;
  place-content: center;
  position: relative;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

@media (any-hover: hover) {
  .Button {
    transition: opacity 0.4s, background-color 0.4s, color 0.4s;
  }
  .Button svg {
    transition: fill 0.4s;
  }
}

.Button.-menu {
  height: 60px;
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  background-color: #333;
  border-radius: 10px;
}

.Button.-menu svg {
  width: 16px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  fill: #fff;
  transition: transform 0.4s;
}

@media (any-hover: hover) {
  .Button.-menu:hover {
    background-color: #565a5a;
  }
  .Button.-menu:hover svg {
    transform: translate3d(0, 5px, 0);
  }
}

.Button.-next svg {
  width: 8px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  fill: #000;
}

.Button.-down svg {
  width: 16px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  fill: #000;
}

.Button.-cart {
  height: 40px;
  font-size: 15px;
  color: #fff;
  background-color: #313333;
  border: none;
  border-radius: 5px;
}

@media (any-hover: hover) {
  .Button.-cart:hover {
    background-color: #565a5a;
  }
}

.Button.-detail {
  height: 40px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 5px;
}

@media (any-hover: hover) {
  .Button.-detail svg {
    transition: transform 0.4s;
  }
  .Button.-detail:hover {
    background-color: #eee;
  }
  .Button.-detail:hover svg {
    transform: translate3d(3px, 0, 0);
  }
}

.Button.-detail svg {
  width: 8px;
  height: 13px;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  fill: #333;
}

.Button.-roundedFull {
  height: 60px;
  color: #fff;
  background-color: #333;
  border-radius: 99px;
}

.Button.-roundedFull svg {
  width: 8px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
  fill: #fff;
  transition: transform 0.4s;
}

@media (any-hover: hover) {
  .Button.-roundedFull:hover {
    background-color: #565a5a;
  }
  .Button.-roundedFull:hover svg {
    transform: translate3d(5px, 0, 0);
  }
}

.CollectionSection {
  padding: 100px 0;
}

.CollectionSection + .CollectionSection {
  margin-top: -100px;
}

.CollectionSection_title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.CollectionSection_list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 225px);
  gap: 20px;
  margin-top: 35px;
}

@media (any-hover: hover) {
  .CollectionSection a {
    transition: opacity 0.4s;
  }
  .CollectionSection a:hover {
    opacity: 0.7;
  }
}

.Collection_img {
  aspect-ratio: 59/75;
}

.CompareSection {
  padding-top: 100px;
}

.CompareSection_body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  margin-top: 40px;
}

.Compare.-active .Compare_imgHolder::before {
  transition: border-radius 0.6s, transform 0.6s;
  border-radius: 20px;
  transform: scale(1);
}

.Compare_title {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.Compare_imgHolder {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

.Compare_imgHolder::before {
  content: "";
  width: 450px;
  height: 450px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  background-color: #e8e8e8;
  border-radius: 999px;
  transform: scale(0);
}

.Compare_img {
  aspect-ratio: 9/13;
}

.Compare_list {
  counter-reset: compare;
  margin-top: 64px;
}

.Compare_item {
  counter-increment: compare;
  position: relative;
  padding-left: 38px;
  margin-top: 24px;
}

.Compare_item::before {
  content: counter(compare);
  display: grid;
  place-content: center;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  background-color: #000;
}

.Compare_point {
  margin-top: 40px;
}

.Compare_pointTitle {
  display: grid;
  place-content: center;
  width: 200px;
  height: 50px;
  position: relative;
  z-index: 2;
  margin: auto;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background-color: #000;
  border-radius: 99px;
}

.Compare_pointText {
  min-height: 160px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  padding: 41px 24px 24px;
  margin-top: -25px;
  background-color: #f5f5f5;
}

.CoordinateSection {
  padding-top: 100px;
}

.CoordinateSection_img {
  aspect-ratio: 370/493;
}

.CoordinateSection_body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  row-gap: 100px;
  margin-top: 65px;
}

.CoordinateSection_item:nth-child(3n+3) {
  grid-column: 1/3;
}

.CoordinateSection_item:nth-child(3n+1), .CoordinateSection_item:nth-child(3n+2) {
  margin: 0 60px;
}

.CoordinateSection_products {
  display: grid;
  grid-template-columns: repeat(auto-fit, 190px);
  justify-content: center;
  gap: 60px;
}

.CoordinateComment {
  display: grid;
  grid-template-columns: 107px 1fr;
  gap: 20px 33px;
}

.CoordinateComment_title {
  grid-column: 1/3;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.CoordinateComment_text {
  position: relative;
  padding: 30px;
  line-height: 2;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.CoordinateComment_balloon {
  width: 30px;
  height: 32px;
  position: absolute;
  top: 36px;
  right: 100%;
  fill: #f5f5f5;
}

.CoordinateComment_img > img {
  aspect-ratio: 67/75;
}

.Inner {
  width: 1040px;
  position: relative;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.KV {
  position: relative;
  z-index: 1;
  background-color: #a39b71;
  overflow: hidden;
}

.KV_img {
  display: block;
  max-width: 1920px !important;
  aspect-ratio: 1920/660;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  opacity: 0;
}

.KV_img:nth-child(n+2) {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.KV_img:nth-child(2) {
  transform: translate3d(0, 50px, 0);
}

.KV_img:nth-child(3) {
  transform: translate3d(0, 50px, 0);
}

.KV_img:nth-child(4) {
  transform: translate3d(50px, 0, 0);
}

.KV_img:nth-child(5) {
  transform: translate3d(-50px, 0, 0);
}

.KV_img:nth-child(6) {
  transform: translate3d(50px, 0, 0);
}

.KV.-active .KV_img {
  opacity: 1;
}

.KV.-active .KV_img:nth-child(1) {
  transition: 0.4s;
}

.KV.-active .KV_img:nth-child(2) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.2s;
}

.KV.-active .KV_img:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.4s;
}

.KV.-active .KV_img:nth-child(4) {
  transform: translate3d(0, 0, 0);
  transition: 0.4s;
  transition-delay: 0.6s;
}

.KV.-active .KV_img:nth-child(5) {
  transform: translate3d(0, 0, 0);
  transition: 0.4s;
  transition-delay: 0.8s;
}

.KV.-active .KV_img:nth-child(6) {
  transform: translate3d(0, 0, 0);
  transition: 0.4s;
  transition-delay: 1s;
}

.LineupSection {
  padding-top: 100px;
}

.LineupSection_header {
  position: relative;
}

.LineupSection_header::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
  border-style: solid;
  border-width: 50px 42px 0 42px;
  border-color: #bdb382 transparent transparent transparent;
}

.LineupSection_headerInner {
  position: relative;
  z-index: 1;
  padding: 75px 38px 100px;
  margin-top: 60px;
  background-color: #bdb382;
  overflow: hidden;
}

.LineupSection_no {
  width: 80px;
  height: 80px;
  display: grid;
  place-content: center;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background-color: #968f68;
}

.LineupSection_no > em {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin-top: 5px;
}

.LineupSection_subTitle {
  font-size: 30px;
  font-weight: 900;
  margin-left: 30px !important;
}

.LineupSection_subTitle > span {
  font-weight: 900;
}

.LineupSection_summary {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}

.LineupSection_list {
  width: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 120px;
       column-gap: 120px;
  row-gap: 100px;
  margin: auto;
}

.LineupSection_body {
  display: grid;
  grid-template-columns: 470px 470px;
  align-items: start;
  grid-auto-flow: dense;
  gap: 40px;
  margin-top: 80px;
}

.Lineup_title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.Lineup_photos:nth-child(4n+1) {
  grid-column: 1/2;
}

.Lineup_photos:nth-child(4n+3) {
  grid-column: 2/3;
}

.Lineup_img {
  aspect-ratio: 74/125;
}

.Lineup_products:nth-child(4n+2) {
  grid-column: 2/3;
}

.Lineup_products:nth-child(4n+4) {
  grid-column: 1/2;
}

.Lineup_slider {
  position: relative;
  margin: 0 50px;
}

.Lineup_slider .swiper-button-prev,
.Lineup_slider .swiper-button-next {
  top: calc(50% - 10px);
  margin-top: 0;
}

.Lineup_slider .swiper-button-prev svg,
.Lineup_slider .swiper-button-next svg {
  width: 12px;
  height: 20px;
  fill: #333;
}

.Lineup_slider .swiper-button-prev {
  left: 5px;
}

.Lineup_slider .swiper-button-next {
  right: 5px;
}

.Lineup_slider .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  top: calc(100% + 20px);
  right: 0;
  left: 0;
}

.Lineup_slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #dcdcdc;
  opacity: 1;
}

.Lineup_slider .swiper-pagination-bullet-active {
  background-color: #333;
}

.Lineup_slider .swiper-button-prev::after,
.Lineup_slider .swiper-button-next::after {
  content: none;
  border: none!important;
}

.Lineup_list {
  display: flex;
  gap: 60px;
  margin: 35px 15px 0;
}

.Lineup_data {
  text-align: center;
  font-size: 14px;
  margin-top: 45px;
}

.LineupDetail {
  width: 430px;
  height: 350px;
  padding: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #b3a97a;
}

.LineupDetail.-lg {
  height: 400px;
}

.LineupDetail_title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 25px;
}

.LineupDetail_subTitle {
  width: 120px;
  height: 32px;
  display: grid;
  place-content: center;
  margin: auto;
  font-weight: 900;
  background-color: #fff;
  border-radius: 99px;
}

.LineupDetail_dl {
  margin-top: 15px;
}

.LineupDetail_list {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.LineupDetail_list > li {
  margin: 0 5px;
}

.LineupDetail_list svg {
  fill: #333;
}

.LineupDetail_text {
  text-align: center;
  margin-top: 5px;
}

.LineupDetail_text span {
  display: block;
  font-size: 12px;
}

.l-header.l-fixed {
  z-index: 9998 !important;
}

.l-pagetop.l-fixed {
  z-index: 9997 !important;
}

.Loading {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
}

.Loading.-inactive {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  pointer-events: none;
}

.Loading_logo {
  width: 200px;
  height: 51px;
  fill: #231815;
}

.Loading_items {
  display: grid;
  grid-template-columns: repeat(2, 20px);
  grid-template-rows: repeat(2, 20px);
  gap: 5px;
  margin: 30px auto 0;
  transform: rotate(45deg);
}

.Loading_item {
  background-color: #231815;
  transform: scale(0);
  animation: scaling 1.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
}

.Loading_item:nth-child(2) {
  animation-delay: 0.1s;
}

.Loading_item:nth-child(3) {
  animation-delay: 0.3s;
}

.Loading_item:nth-child(4) {
  animation-delay: 0.2s;
}

.Loading_item.-inactive {
  animation: none;
}

@keyframes scaling {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

.MenuSection.-upper {
  position: fixed;
  top: 122px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  background-color: #333;
}

.MenuSection.-upper .Button {
  justify-content: start;
  height: 55px;
  padding-left: 50px;
  font-size: 16px;
}

@media (any-hover: hover) {
  .MenuSection.-upper .Button:hover {
    background-color: #333;
  }
}

.MenuSection_text {
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.MenuSection_text > em {
  font-size: 30px;
  font-weight: 700;
  vertical-align: baseline;
  color: #ffee33;
}

.Menu_list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.Menu_list > li {
  width: 230px;
}

.ProductSection {
  margin-top: 100px;
}

.ProductSection_titleContainer {
  position: relative;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1;
}

.ProductSection_titleContainer::before, .ProductSection_titleContainer::after {
  content: "";
  width: 50%;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #333;
}

.ProductSection_titleContainer::before {
  left: 0;
  transform-origin: right;
}

.ProductSection_titleContainer::after {
  left: 50%;
  transform-origin: left;
}

.ProductSection_title {
  display: inline-block;
  position: relative;
  top: -4px;
  z-index: 1;
  font-weight: 700;
  line-height: 1;
  padding: 0 50px;
  background-color: #fff;
  overflow: hidden;
}

.ProductSection_title > span {
  font-weight: 700;
}

.ProductSection_list {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  margin-top: 60px;
}

.Product {
  position: relative;
  padding-bottom: 90px;
}

.Product.-active .Product_title::before {
  transition: transform 0.6s;
  transform: scaleX(1);
}

.Product.-notSize {
  padding-bottom: 96px;
}

/* .Product.-notSize .Product_price {
  bottom: 62px;
} */

.Product_img {
  aspect-ratio: 45/76;
}

.Product_name {
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}

.Product_price {
  width: 100%;
  position: absolute;
  bottom: 60px;
  text-align: center;
  line-height: 1;
}

.Product_price.-soldout {
  color: #f00;
}

.Product_size {
  display: block;
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 110px;
  left: 0;
  padding-left: 5px;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
}

.Product .Button {
  position: absolute;
  left: 0;
}

.Product .Button.-detail {
  bottom: 0;
}

.Product .Button.-cart {
  bottom: 60px;
}

.SeeMoreItemsSection {
  padding-top: 100px;
}

.SeeMoreItemsSection_title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.SeeMoreItemsSection_list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 230px);
  gap: 20px;
  margin-top: 35px;
}

.SeeMoreItemsSection_link {
  display: grid;
  place-content: center;
  height: 40px;
  line-height: 1;
  color: #fff;
  background-color: #333;
}

@media (any-hover: hover) {
  .SeeMoreItemsSection_link {
    transition: background-color 0.4s;
  }
  .SeeMoreItemsSection_link:hover {
    background-color: #565a5a;
  }
}

.ShopSection {
  margin-top: 100px;
}

.ShopSection_title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.ShopSection_body {
  padding: 45px 120px;
  background-color: #d1d9e0;
}

.ShopSection_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.StylingSection {
  padding-top: 100px;
}

.StylingSection_title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.StylingSection_summary {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
}

.StylingSection_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.StylingSection_list > li {
  overflow: hidden;
}

@media (any-hover: hover) {
  .StylingSection a {
    transition: opacity 0.4s;
  }
  .StylingSection a:hover {
    opacity: 0.7;
  }
}

.Styling_img {
  aspect-ratio: 3/4;
}

.SummarySection {
  padding: 60px 0;
}

.SummarySection_body {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 270px 440px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 40px;
}

.Summary_text {
  grid-column: 1/3;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.Summary_img {
  aspect-ratio: 27/26;
}

.SummarySurvey {
  padding: 30px 50px;
  border: 2px solid #e8e8e8;
  border-radius: 20px;
}

.SummarySurvey_title {
  font-size: 16px;
}

.SummarySurvey_catch {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  vertical-align: baseline;
  background-image: linear-gradient(transparent 90%, #ebe175 90%, #ebe175 100%, transparent 100%);
}

.SummarySurvey_catch > span {
  color: #4a6a94;
  font-weight: 900;
  vertical-align: baseline;
}

.SummarySurvey_text {
  margin-top: 20px;
  font-size: 12px;
  line-height: 2;
}

.Title {
  display: table;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  margin: auto;
  background-image: linear-gradient(transparent 70%, #ebe175 70%, #ebe175 100%, transparent 100%);
}

.Title.-inline {
  display: inline;
  line-height: 1.75;
}

.TopsSection {
  padding-top: 100px;
}

.TopsSection_summary {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-top: 30px;
}

.TopsItem {
  margin-top: 70px;
}

.TopsItem + .TopsItem {
  margin-top: 115px;
}

.TopsItem_header {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 470px;
  gap: 40px;
  padding: 0 60px;
  background-color: #d1d9e0;
}

.TopsItem_img {
  margin: -15px 0;
  aspect-ratio: 367/390;
}

.TopsItem_title {
  text-align: center;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

.TopsItem_title > span {
  font-weight: 900;
}

.TopsItem_summary {
  margin-top: 30px;
  text-align: center;
  line-height: 2;
}

.TopsItem_products {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 190px);
  gap: 60px;
  margin-top: 75px;
}

.Unisize {
  padding: 100px 0 60px;
}

.Unisize_body {
  display: grid;
  grid-template-columns: 1fr 370px;
  grid-auto-flow: dense;
  gap: 30px 40px;
  padding: 30px 40px;
  border: 2px solid #e8e8e8;
  border-radius: 20px;
}

.Unisize_title {
  grid-column: 1/3;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.Unisize_img {
  grid-column: 2/3;
}

.Unisize_img > img {
  aspect-ratio: 39/17;
}

.Unisize_text {
  grid-column: 1/2;
  line-height: 2;
}

.theme-actibiz-setup {
  min-width: 1040px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #fff;
}

.theme-actibiz-setup *,
.theme-actibiz-setup ::before,
.theme-actibiz-setup ::after {
  box-sizing: border-box;
}

.theme-actibiz-setup img {
  width: 100%;
  height: auto;
}

.theme-actibiz-setup [data-lazy] {
  opacity: 0;
}

.theme-actibiz-setup [data-lazy].-loaded {
  opacity: 1;
  transition: opacity 0.5s;
}