/* --------------------------------------------------
Contents
-------------------------------------------------- */
.market__contents {
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
}
.marketGroup__title {
  color: var(--bg-color);
  background: var(--primary-color);
  font-family: var(--font-en);
  font-size: 2rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  padding: 0.2rem 0.5rem 0;
  margin: 0 0 1rem;
}
.marketGroup__title span {
  font-size: 1.2rem;
}
.marketGroup__contents {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
.marketSection__title {
  font-family: var(--font-en);
  font-size: 2.4rem;
  padding: 2rem 0.5rem 1rem;
}
.marketSection__contents {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
.marketSection__contentsList {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
.marketSection__contentsListItem {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.marketSection__contentsListItemImage {
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.2));
  overflow: hidden;
  position: relative;
}
.marketSection__contentsListItemImage img {
  aspect-ratio: 1;
}
.marketSection__contentsListItemImage .swiperController {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.marketSection__contentsListItemImage .swiper-button-prev, .marketSection__contentsListItemImage .swiper-button-next {
  position: static;
  width: 4rem;
  height: auto;
  margin: 0;
  aspect-ratio: 1;
}
.marketSection__contentsListItemImage .swiper-button-prev::after, .marketSection__contentsListItemImage .swiper-button-next::after {
  display: none;
}
.marketSection__contentsListItemImage .swiper-button-icon {
  width: 2rem;
  border: solid 0.2rem var(--acc-color);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.marketSection__contentsListItemImage .swiper-button-icon img {
  aspect-ratio: 1;
}
.marketSection__contentsListItemTextTitle {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 0.2rem;
}
.marketSection__contentsListItemTextDesc {
  text-align: justify;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
}
.marketSection__contentsListItemTextDescBold {
  font-weight: 600;
}
.marketSection__contentsListItemTextDescLink {
  color: var(--acc-color);
}
.marketSection__contentsListItemTextDesc + .marketSection__contentsListItemTextDesc {
  margin: 1.2em 0 0;
}
.marketSection__contentsClosing {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .market__contents {
    display: flex;
    flex-direction: column;
    row-gap: 10rem;
  }
  .marketGroup__title {
    font-size: 4rem;
    height: 4.8rem;
    padding: 0.2rem 1rem 0;
    margin: 0 0 3rem;
  }
  .marketGroup__title span {
    font-size: 1.8rem;
    padding-left: 20px;
  }
  .marketGroup__contents {
    row-gap: 10rem;
  }
  .marketSection__title {
    font-size: 4rem;
    padding: 2rem 1rem;
  }
  .marketSection__contents {
    row-gap: 5rem;
  }
  .marketSection__contentsList {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 5rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .marketSection__contentsListItem {
    width: calc((100% - 4rem) / 3);
    row-gap: 2rem;
  }
  .marketSection__contentsListItemImage {
    border-radius: 1rem;
    filter: drop-shadow(0 0 1.2rem rgba(0, 0, 0, 0.2));
  }
  .marketSection__contentsListItemImage .swiper-button-prev, .marketSection__contentsListItemImage .swiper-button-next {
    width: 4.8rem;
  }
  .marketSection__contentsListItemImage .swiper-button-icon {
    width: 2.8rem;
    transition: background 0.2s var(--ease) 0s img;
    transition-aspect-ratio: 1;
    transition-transition: filter 0.2s var(--ease) 0s;
  }
  .marketSection__contentsListItemImage .swiper-button-icon:hover {
    background: var(--acc-color);
  }
  .marketSection__contentsListItemImage .swiper-button-icon:hover img {
    filter: brightness(100);
  }
  .marketSection__contentsListItemTextTitle {
    font-size: 2rem;
    margin: 0 0 1rem;
  }
  .marketSection__contentsListItemTextDesc {
    font-size: 1.4rem;
  }
  .marketSection__contentsListItem--full {
    flex-direction: row;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    width: 100%;
  }
  .marketSection__contentsListItem--full .marketSection__contentsListItemImage {
    width: 49.14%;
  }
  .marketSection__contentsListItem--full .marketSection__contentsListItemText {
    flex: 1;
  }
  .marketSection__contentsClosing {
    text-align: center;
    font-size: 1.4rem;
    padding: 3rem 0;
  }
}/*# sourceMappingURL=market.css.map */