.mx-auto {
    margin-left: auto;
    margin-right: auto
}
.mt-20 {
    margin-top: 20px
}
.mt-40 {
    margin-top: 40px
}
.mt-50 {
    margin-top: 50px
}
.mt-80 {
    margin-top: 80px
}
.block {
    display: block
}
.table {
    display: table
}
.hidden {
    display: none
}
.w-400 {
    width: 400px
}
.px-10 {
    padding-left: 10px;
    padding-right: 10px
}
.pl-10 {
    padding-left: 10px
}
.pr-10 {
    padding-right: 10px
}
.text-left {
    text-align: left
}
.text-16 {
    font-size: 16px
}
.font-bold {
    font-weight: 700
}
.-pc {
  display: block;
}

.FadeSlideUp {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.FadeSlideUp.-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s, transform 1s;
}

.FadeSlideRight {
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
}

.FadeSlideRight.-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);
}

.OverlaySlideDown {
  position: relative;
  overflow: hidden;
}

.OverlaySlideDown.-active::before {
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translate3d(0, 100%, 0);
}

.OverlaySlideDown::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}

.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%;
}

.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);
  }
}

.Button {
  display: grid;
  place-content: center;
  width: 100%;
  height: 60px;
  position: relative;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
}

@media (any-hover: hover) {
  .Button {
    transition: opacity 0.4s, background-color 0.4s, color 0.4s;
  }
  .Button svg {
    transition: fill 0.4s, transform 0.4s;
  }
}

.Button.-fill {
  color: #fff;
  background-color: #2a6bf6;
  border-radius: 10px;
}

.Button.-fill svg {
  fill: #fff;
}

.Button.-fill.-semiwide {
  background-color: #469ef8;
}

@media (any-hover: hover) {
  .Button.-fill.-semiwide:hover {
    background-color: #77b8fa;
  }
}

.Button.-fill.-semiflare {
  background-color: #61d0fa;
}

@media (any-hover: hover) {
  .Button.-fill.-semiflare:hover {
    background-color: #92dffc;
  }
  .Button.-fill:hover {
    background-color: #5b8df8;
  }
}

.Button.-stroke {
  color: #2a6bf6;
  border: 1px solid #2a6bf6;
  border-radius: 10px;
}

.Button.-stroke.-semiwide {
  color: #469ef8;
  border-color: #469ef8;
}

.Button.-stroke.-semiwide svg {
  fill: #469ef8;
}

.Button.-stroke.-semiflare {
  color: #61d0fa;
  border-color: #61d0fa;
}

.Button.-stroke.-semiflare svg {
  fill: #61d0fa;
}

.Button.-stroke svg {
  fill: #2a6bf6;
}

.Button.-more {
  height: 80px;
  line-height: 1.75;
}

.Button.-menu {
  height: 80px;
  font-size: 18px;
  line-height: 1.5;
}

.Button.-menu.-down {
  padding-left: 15px;
}

.Button.-menu.-down svg {
  right: auto;
  left: 15px;
  fill: #fff;
}

.Button.-next svg {
  width: 8px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}

@media (any-hover: hover) {
  .Button.-next:hover svg {
    transform: translate3d(5px, 0, 0);
  }
}

.Button.-down svg {
  width: 16px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}

@media (any-hover: hover) {
  .Button.-down:hover svg {
    transform: translate3d(0, 5px, 0);
  }
}

.Button.-cart {
  height: 40px;
  font-size: 15px;
  border: none;
  border-radius: 5px;
}

.Button.-detail {
  height: 40px;
  font-size: 15px;
  background-color: #fff;
  border-radius: 5px;
}

@media (any-hover: hover) {
  .Button.-detail svg {
    transition: transform 0.4s;
  }
  .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;
}

.Button.-list {
  height: 60px;
  font-size: 18px;
  border-radius: 10px;
}

.Button.-list svg {
  width: 11px;
  height: 18px;
  right: 20px;
}

.Button.-size {
  height: 60px;
  font-size: 18px;
  border-radius: 10px;
}

.Button.-size svg {
  width: 11px;
  height: 18px;
  right: 20px;
}

.Button.-pickup {
  height: 30px;
  font-size: 12px;
  color: #74b5d4;
  border: 1px solid #74b5d4;
  border-radius: 99px;
}

@media (any-hover: hover) {
  .Button.-pickup:hover {
    color: #fff;
    background-color: #74b5d4;
  }
}

.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);
  }
}

.Button.-secondary {
  color: #fff;
  background-color: #66dd8f;
  border-radius: 99px;
}

.Button.-secondary svg {
  right: 25px;
  fill: #fff;
}

@media (any-hover: hover) {
  .Button.-secondary:hover {
    background-color: #90e6ae;
  }
}

.CollectionSection {
  padding: 90px 0 100px;
}

.CollectionSection + .CollectionSection {
  margin-top: 90px;
}

.CollectionSection_title {
  text-align: center;
  font-family: "Kaisei Opti", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}

.CollectionSection_title > em {
  display: block;
  font-size: 48px;
}

.CollectionSection_title > em > span {
  vertical-align: baseline;
  color: #61d0fa;
}

.CollectionSection_title > span > span {
  vertical-align: baseline;
  color: #61d0fa;
}

.CollectionSection_list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 236px);
  gap: 20px;
  margin-top: 35px;
}

@media (any-hover: hover) {
  .CollectionSection a {
    transition: opacity 0.4s;
  }
  .CollectionSection a:hover {
    opacity: 0.7;
  }
}

.Collection.-tops {
  width: 470px;
  margin-top: 35px;
  margin-right: auto;
  margin-left: auto;
}

.Collection.-tops .Collection_img {
  aspect-ratio: 470/237;
}

.Collection_img {
  aspect-ratio: 59/75;
}

.Collection_link {
  display: block;
}

.Color {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Color.-brown1::before {
  background-color: #e8d4c3;
}

.Color.-brown2::before {
  background-color: #b29771;
}

.Color.-navy::before {
  background-color: #29292e;
}

.Color.-blue::before {
  background-color: #aeaab9;
}

.Color::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  border-radius: 99px;
}

.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: #beeffb;
  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(1) {
  opacity: 1;
}

.KV_img:nth-child(2) {
  transform: scale(0.5) rotate(-45deg);
  transform-origin: 88.59% 78.48%;
}

.KV_img:nth-child(3) {
  transform: translate3d(0, -10%, 0);
}

.KV_img:nth-child(4) {
  transform: translate3d(-5%, 3%, 0);
}

.KV_img:nth-child(5) {
  transform: translate3d(4%, -2%, 0);
}

.KV_img:nth-child(6) {
  transform: scale(0);
  transform-origin: 44.27% 17.27%;
}

.KV_img:nth-child(7) {
  transform: translate3d(4%, -2%, 0);
}

.KV_img:nth-child(8) {
  transform: translate3d(0, 5%, 0);
}

.KV.-active .KV_img {
  opacity: 1;
}

.KV.-active .KV_img:nth-child(2) {
  transform: scale(1);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 1s;
}

.KV.-active .KV_img:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.2s;
}

.KV.-active .KV_img:nth-child(4) {
  transform: translate3d(0, 0, 0);
  transition: 0.4s;
  transition-delay: 0.4s;
}

.KV.-active .KV_img:nth-child(5) {
  transform: translate3d(0, 0, 0);
  transition: 0.4s;
  transition-delay: 0.6s;
}

.KV.-active .KV_img:nth-child(6) {
  transform: scale(1);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.7s;
}

.KV.-active .KV_img:nth-child(7) {
  transform: translate3d(0, 0, 0);
  transition: 0.4s;
  transition-delay: 0.8s;
}

.KV.-active .KV_img:nth-child(8) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
}

.LineupSection {
  padding-top: 90px;
}

.Lineup_table {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 50px;
  margin-bottom: 100px;
}

.Lineup_table colgroup > col:nth-child(1) {
  width: 70px;
}

.Lineup_table colgroup > col:nth-child(3), .Lineup_table colgroup > col:nth-child(5) {
  width: 240px;
}

.Lineup_table colgroup > col:nth-child(4) {
  width: 250px;
}

.Lineup_table tr.-gray {
  background-color: #f5f5f5;
}

.Lineup_table th,
.Lineup_table td {
  padding: 13px 20px;
}

.Lineup_table th.-p-0,
.Lineup_table td.-p-0 {
  padding: 0;
}

.Lineup_table td.-photo {
  padding: 0 10px 20px;
}

.Lineup_table td.-photo.-n1 {
  padding-left: 0;
}

.Lineup_table td.-photo.-n3 {
  padding-right: 0;
}

.Lineup_balloon {
  display: grid;
  place-content: center;
  height: 50px;
  position: relative;
  margin-right: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  background-color: #e3fbff;
}

.Lineup_balloon svg {
  width: 17px;
  height: 19px;
  position: absolute;
  top: 16px;
  left: 100%;
  transform: scaleX(-1);
  fill: #e3fbff;
}

.Lineup_solution {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 0 !important;
}

.Lineup_silhouette {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 0 !important;
}

.Lineup_imgHolder {
  overflow: hidden;
}

.Lineup_img {
  aspect-ratio: 115/194;
}

.Lineup_th {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.Lineup_th.-function {
  background-color: #2a6bf6;
}

.Lineup_th.-feature {
  background-color: #61d0fa;
}

.Lineup_function {
  display: flex;
  align-items: center;
  margin-top: -5px;
  margin-bottom: -5px;
}

.Lineup_function > svg {
  width: 30px;
  height: 35px;
  fill: #7e7e7f;
  margin-right: 10px;
}

.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: 10000;
  background-color: #fff;
}

.Loading.-inactive {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  pointer-events: none;
}

.Loading_logo {
  width: 200px;
  margin-left: 30px;
  fill: #3c8acd;
}

.Loading_items {
  display: flex;
  margin: 20px auto 0;
}

.Loading_item {
  width: 9px;
  height: 9px;
  background-color: #3c8acd;
  border-radius: 99px;
  margin: 0 4.5px;
  transform: scale(0);
  animation: scaling 2s infinite;
}

.Loading_item:nth-child(2) {
  animation-delay: 0.1s;
}

.Loading_item:nth-child(3) {
  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: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #333;
}

.MenuSection.-upper .Menu_list {
  display: flex;
  justify-content: space-around;
  gap: 0;
}

.MenuSection.-upper .Button {
  justify-content: start;
  height: 55px;
  padding-left: 50px;
  font-size: 16px;
  color: #fff;
}

@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: grid;
  grid-template-columns: repeat(auto-fit, 230px);
  justify-content: center;
  gap: 20px;
}

.PointSection {
  padding-top: 90px;
}

.Point {
  border: 2px solid #e8e8e8;
  border-radius: 20px;
  padding: 30px 40px;
  margin-top: 40px;
}

.Point_title {
  text-align: center;
  font-size: 18px;
}

.Point_title > em {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.Point_body {
  display: grid;
  grid-template-columns: 440px 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 35px;
}

.Point_img {
  grid-row: 1/4;
}

.Point_img > img {
  aspect-ratio: 220/157;
}

.Point_unisize {
  width: 350px;
  margin: auto;
}

.Point_unisize > img {
  aspect-ratio: 39/17;
}

.Point_text {
  line-height: 2;
  margin-top: 10px;
}

.Point_notice {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  line-height: 1.25;
  margin-top: 10px;
}

.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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Product_lower {
  min-height: 206px;
}

.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: 29/49;
}

.Product_name {
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}

.Product_price {
  width: 100%;
  margin-top: 15px;
  text-align: center;
  line-height: 1;
}

.Product_price s {
  display: block;
  font-size: 14px;
}

.Product_price span {
  display: block;
  margin-top: 5px;
  color: #f00;
}

.Product_price.-soldout {
  color: #f00;
}

.Product_size {
  display: block;
  width: 100%;
  height: 40px;
  padding-left: 5px;
  margin-top: 20px;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
}

.Product_color {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 20px;
}

.Product_color::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  margin-right: 8px;
}

.Product_color.-navy::before {
  background-color: #29292e;
}

.Product_color.-brown::before {
  background-color: #b29771;
}

.Product .Button.-detail {
  margin-top: 20px;
}

.Product .Button.-cart {
  margin-top: 10px;
}

.StarGroup {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.Star {
  width: 19px;
  height: 19px;
  fill: #eee;
}

.Star.-active {
  fill: #eab15e;
}

.Title {
  display: table;
  text-align: center;
  font-family: "Kaisei Opti", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  margin-right: auto;
  margin-left: auto;
}

.Title.-active > span {
  animation: elastic-slide-up 2s both;
}

.Title > span {
  display: inline-block;
  vertical-align: baseline;
  transform: scale(0);
  transform-origin: bottom;
}

.Title > span:first-child {
  color: #61d0fa;
}

.Title > span:nth-child(2) {
  animation-delay: 0.0333333333s;
}

.Title > span:nth-child(3) {
  animation-delay: 0.0666666667s;
}

.Title > span:nth-child(4) {
  animation-delay: 0.1s;
}

.Title > span:nth-child(5) {
  animation-delay: 0.1333333333s;
}

.Title > span:nth-child(6) {
  animation-delay: 0.1666666667s;
}

.Title > span:nth-child(7) {
  animation-delay: 0.2s;
}

.Title > span:nth-child(8) {
  animation-delay: 0.2333333333s;
}

.Title > span:nth-child(9) {
  animation-delay: 0.2666666667s;
}

.Title > span:nth-child(10) {
  animation-delay: 0.3s;
}

.Title > span:nth-child(11) {
  animation-delay: 0.3333333333s;
}

.Title > span:nth-child(12) {
  animation-delay: 0.3666666667s;
}

.Title > span:nth-child(13) {
  animation-delay: 0.4s;
}

.Title > span:nth-child(14) {
  animation-delay: 0.4333333333s;
}

.Title > span:nth-child(15) {
  animation-delay: 0.4666666667s;
}

.Title > span:nth-child(16) {
  animation-delay: 0.5s;
}

.Title > span:nth-child(17) {
  animation-delay: 0.5333333333s;
}

.Title > span:nth-child(18) {
  animation-delay: 0.5666666667s;
}

.Title > span:nth-child(19) {
  animation-delay: 0.6s;
}

.Title > span:nth-child(20) {
  animation-delay: 0.6333333333s;
}

@keyframes elastic-slide-up {
  0% {
    transform: scale(0) translate3d(0, 100%, 0);
  }
  16% {
    transform: scale(1.32) translate3d(0, -32%, 0);
  }
  28% {
    transform: scale(0.88) translate3d(0, 12%, 0);
  }
  44% {
    transform: scale(1.05) translate3d(0, -5%, 0);
  }
  59% {
    transform: scale(0.98) translate3d(0, 2%, 0);
  }
  73% {
    transform: scale(1.01) translate3d(0, -1%, 0);
  }
  88% {
    transform: scale(1) translate3d(0, 0%, 0);
  }
  100% {
    transform: scale(1) translate3d(0, 0%, 0);
  }
}

.TopicsSection {
  padding-top: 90px;
}

.Topics {
  display: grid;
  align-items: center;
  grid-template-columns: 385px 500px;
  margin-top: 40px;
}

.Topics_imgHolder {
  overflow: hidden;
}

.Topics_img {
  aspect-ratio: 11/14;
}

.Topics_text {
  padding: 50px 0;
  text-align: center;
  font-size: 18px;
  background-color: #e3fbff;
}

.Topics_text > em {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.Topics_buttons {
  grid-column: 1/3;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 400px);
  gap: 40px;
  margin-top: 80px;
}

.TroubleSection {
  padding-top: 90px;
}

.Trouble {
  position: relative;
  z-index: 1;
}

.Trouble.-active .Trouble_item {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
}

.Trouble.-active .Trouble_item:nth-child(2) {
  transition-delay: 0.2s;
}

.Trouble.-active .Trouble_item:nth-child(3) {
  transition-delay: 0.4s;
}

.Trouble.-active .Trouble_imgHolder {
  animation: shake 1.5s 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) alternate infinite;
}

.Trouble_imgHolder {
  width: 143px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  transform: rotate(10deg);
  transform-origin: bottom;
}

.Trouble_imgHolder::before {
  content: "";
  width: 153px;
  height: 153px;
  position: absolute;
  top: 58px;
  left: 0;
  z-index: -1;
  background-color: #61d0fa;
  border-radius: 999px;
}

@keyframes shake {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.Trouble_item {
  display: grid;
  place-content: center;
  width: 230px;
  height: 108px;
  position: absolute;
  z-index: -1;
  text-align: center;
  font-size: 19px;
  line-height: 1.6;
  background-color: #f5f5f5;
  border-radius: 999px;
  transform: scale(0);
}

.Trouble_item:nth-child(1) {
  top: -60px;
  left: calc(50% - 37px);
}

.Trouble_item:nth-child(2) {
  top: 47px;
  left: calc(50% - 330px);
}

.Trouble_item:nth-child(3) {
  top: 67px;
  left: calc(50% + 101px);
}

.Trouble_item em {
  font-size: 23px;
  font-weight: 700;
  vertical-align: baseline;
  color: #2a6bf6;
}

.Trouble_text {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-top: -15px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background-color: #2a6bf6;
}

.TypeSection {
  padding-top: 90px;
}

.TypeSection_summary {
  text-align: center;
  font-size: 18px;
}

.Type {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, 480px);
  grid-template-rows: max-content max-content 1fr;
  grid-auto-flow: dense;
  margin-top: 45px;
}

.Type_data {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 400px;
  position: relative;
  padding: 11px 0;
  margin: auto;
}

.Type_data::before, .Type_data::after {
  content: "";
  width: 30px;
  height: 60px;
  position: absolute;
}

.Type_data::before {
  top: 0;
  left: 0;
  border-top: 2px solid #2a6bf6;
  border-left: 2px solid #2a6bf6;
  animation: left-slide 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) infinite alternate;
}

.Type_data::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid #2a6bf6;
  border-bottom: 2px solid #2a6bf6;
  animation: right-slide 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) infinite alternate;
}

@keyframes left-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-10px, 0, 0);
  }
}

@keyframes right-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(10px, 0, 0);
  }
}

.Type_name {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.Type_price {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.Type_functions {
  grid-column: 2/3;
  grid-row: 2/3;
  display: block;
  margin: 30px auto 0;
}

.Type_functions.-tapered {
  width: 209px;
  aspect-ratio: 209/62;
}

.Type_functions.-semiwide {
  width: 205px;
  aspect-ratio: 205/61;
}

.Type_functions.-semiflare {
  width: 157px;
  aspect-ratio: 157/53;
}

.Type_products {
  grid-column: 1/2;
  grid-row: 1/4;
  align-self: start;
}

.Type_products.-one {
  padding: 0 80px;
}

.Type_products.-one .Product .Product_size {
  height: 60px;
  font-size: 18px;
  border-radius: 10px;
}

.Type_products.-one .Product .Button.-cart {
  height: 60px;
  font-size: 18px;
  border-radius: 10px;
}

.Type_products.-one .Product .Button.-detail {
  height: 60px;
  border-radius: 10px;
  font-size: 18px;
}

.Type_products.-one .Product .Button.-detail svg {
  width: 10px;
  height: 16px;
  right: 15px;
}

.Type_products.-two {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 190px);
  gap: 30px;
}

.Type_products .Product_name {
  display: none;
}

.Type_products .Product_price {
  display: none;
}

.Type_point {
  align-self: start;
  position: relative;
  background-color: #e3fbff;
  padding: 40px 30px 30px;
  margin-top: 55px;
}

.Type_pointTitle {
  position: absolute;
  top: -30px;
  font-family: "Allura", cursive;
  font-size: 60px;
  line-height: 1;
  color: #2a6bf6;
}

.Type_pointBody {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.Type_pointImgHolder {
  border-radius: 8px;
  overflow: hidden;
}

.Type_pointImg {
  aspect-ratio: 20/27;
}

.Type_pointText {
  margin-top: 10px;
}

.Type_solution {
  width: 440px;
  position: relative;
  padding: 25px 0 20px;
  margin-top: 65px;
  background-color: #f5f5f5;
  border-radius: 999px;
}

.Type_solution svg {
  width: 58px;
  height: 55px;
  position: absolute;
  top: 0;
  right: -78px;
  bottom: 0;
  margin: auto;
  fill: #61d0fa;
  animation: wave 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

@keyframes wave {
  0% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: translate3d(-5px, 0, 0);
  }
}

.Type_solutionTitle {
  width: 100%;
  position: absolute;
  top: -24px;
  left: 0;
  text-align: center;
  font-family: "Kaisei Opti", serif;
  font-size: 30px;
  line-height: 1;
}

.Type_solutionText {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #2a6bf6;
}

.Type_recommend {
  width: 440px;
  position: relative;
  padding: 35px 0 20px 60px;
  margin-top: 65px;
  margin-left: auto;
  background-color: #e3fbff;
}

.Type_recommendTitle {
  width: 100%;
  position: absolute;
  top: -24px;
  left: 0;
  text-align: center;
  font-family: "Kaisei Opti", serif;
  font-size: 30px;
  line-height: 1;
}

.Type_recommendList > li {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.Type_recommendList > li:nth-child(n+2) {
  margin-top: 5px;
}

.Type_recommendList > li svg {
  width: 23px;
  height: 17px;
  margin-right: 10px;
  fill: #2a6bf6;
}

.Type_coordinate {
  margin-top: 60px;
}

.Type_coordinateProducts {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 190px);
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 50px;
  margin-top: 40px;
}

.theme-ladies-summerpants {
  min-width: 1040px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #fff;
}

.theme-ladies-summerpants *,
.theme-ladies-summerpants ::before,
.theme-ladies-summerpants ::after {
  box-sizing: border-box;
}

.theme-ladies-summerpants img {
  width: 100%;
  height: auto;
}

.theme-ladies-summerpants [data-lazy] {
  opacity: 0;
}

.theme-ladies-summerpants [data-lazy].-loaded {
  opacity: 1;
  transition: opacity 0.5s;
}