@charset "UTF-8";

.l-header{
  position: fixed!important;
}

.s-top-heading{
  display: grid;
  gap: 1rem;
}

.s-top-heading__ja{
  font-family: var(--font-shippori);
  font-size: 2.2rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #45351F;
}

.s-top-heading__en{
  font-family: var(--font-inter);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.3em;
  line-height: 1;
  color: #CECEC5;
}

@media (min-width: 768px) {
  .s-top-heading{
    gap: 1.5rem;
  }

  .s-top-heading__ja{
    font-size: min(3.6rem, calc(36 * (100vw / 1400)));
  }

  .s-top-heading__en{
    font-size: min(1.3rem, calc(13 * (100vw / 1400)));
  }
}

.m-featureSlide{
  height: 37.5rem;
  position: relative;
}

.m-featureSlide-heading{
  font-family: var(--font-shippori);
  font-size: 2.8rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  line-height: 1;
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  word-break: keep-all;
  color: var(--color-white);
}

.m-featureSlide .m-featureSlide-wrapper{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.m-featureSlide .m-featureSlide-wrapper::after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.m-featureSlide:has(.swiper-initialized) .m-featureSlide-wrapper::after{
  background-image: url(../img/top/mv_bg.png);
}

.m-featureSlide .swiper{
  width: 100%;
  height: 100%;
}

.m-featureSlide .swiper .swiper-slide :where(a),
.m-featureSlide .swiper .swiper-slide :where(img){
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

.m-featureSlide-slider__picture{
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .m-featureSlide{
    height: 70rem;
  }

  .m-featureSlide-heading{
    font-size: 6rem;
  }
}

.s-top-campaign{
  padding: 4rem 0 3rem;
  position: relative;
  background-color: var(--color-white);
  z-index: 2;
}

.s-top-campaign :where(img){
  width: 100%;
  height: auto;
}

.s-top-campaign__inner{
  position: relative;
}

.s-top-campaign__inner.not-slider{
  opacity: 1;
}

.s-top-campaign__inner.not-slider .swiper-slide{
  width: 73.3333%;
  margin-inline: auto;
}

.s-top-campaign:has(.not-slider) .s-top-campaign__navigation,
.s-top-campaign:has(.not-slider) .s-top-campaign__pagination{
  display: none;
}

.s-top-campaign .s-top-campaign__navigation{
  padding: 0;
  cursor: pointer;
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 2rem));
  appearance: none;
  -webkit-appearance: none;
  border: none;
  z-index: 2;
}

.s-top-campaign .s-top-campaign__navigation :where(svg){
  width: 100%;
  height: 100%;
}

.s-top-campaign .s-top-campaign__navigation--prev{
  left: 1rem;
}

.s-top-campaign .s-top-campaign__navigation--next{
  right: 1rem;
}

.s-top-campaign .s-top-campaign__pagination{
  margin-top: 2rem;
  position: static;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.s-top-campaign .swiper-pagination-bullet{
  margin: 0!important;
  width: 0.6rem;
  height: 100%;
  aspect-ratio: 1;
  opacity: 1;
  background-color: var(--color-theme-bg3);
}

.s-top-campaign .swiper-pagination-bullet-active{
  background-color: #666;
}

@media (min-width: 768px) {
  .s-top-campaign{
    padding: 8rem 0 6rem;
    display: grid;
    grid-template-columns: 1fr 2.5rem 2.5rem min(90%, 135rem) 2.5rem 2.5rem 1fr;
    gap: 4rem 0;
  }

  .s-top-campaign__inner{
    margin-inline: auto;
    width: 100%;
    grid-area: 1/3/2/6;
  }

  .s-top-campaign__inner.not-slider .swiper-slide{
    width: 68.8%;
    max-width: 688px;
  }

  .s-top-campaign__list{
    width: 100%;
  }

  .s-top-campaign .s-top-campaign__navigation{
    width: 5rem;
    height: 5rem;
    transform: translateY(calc(-50% - 2rem));
  }

  .s-top-campaign .s-top-campaign__navigation--prev{
    left: auto;
    right: 0;
    grid-area: 1/2/2/4;
    transform: translateY(-50%);
  }

  .s-top-campaign .s-top-campaign__navigation--next{
    left: 0;
    right: auto;
    grid-area: 1/5/2/7;
    transform: translateY(-50%);
  }

  .s-top-campaign .s-top-campaign__pagination{
    margin-top: 0;
    grid-area: 2/1/3/8;
  }

  .s-top-campaign .swiper-pagination-bullet{
    width: 0.8rem;
  }
}

.s-top-news{
  padding-block: 3rem;
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
}

.s-top-news .s-top-news__inner{
  padding: 4rem 2rem;
  display: grid;
  gap: 2rem;
  background-color: var(--color-theme-bg1);
}

.s-top-news .s-top-heading__ja{
  color: #45351F;
}

.s-top-news .p-homeViewMoreBtn{
  margin-inline: auto;
  padding: 1.3rem 0;
  width: 18rem;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  line-height: 1;
  border: 1px solid var(--color-black);
  position: relative;
}

.s-top-news .p-homeViewMoreBtn::before{
  content: '';
  width: 4rem;
  height: 1px;
  background-color: var(--color-black);
  display: block;
  position: absolute;
  top: calc(50% + 2px);
  right: -2rem;
  transform: translateY(-50%);
  transition: width 0.35s ease, right 0.35s ease;
}

.s-top-news .p-homeViewMoreBtn::after{
  content: '';
  background-color: var(--color-black);
  width: 1rem;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
  rotate: 28deg;
  transition: right 0.35s ease;
}

.s-top-news .p-homeNewsList{
  border-top: 1px solid #EFEFEF;
}

.s-top-news .p-homeNewsList__item{
  padding-block: 1.5rem;
  border-bottom: 1px solid #EFEFEF;
}

.s-top-news .p-homeNewsList-body{
  display: grid;
  gap: 0.8rem;
}

.s-top-news .p-homeNewsList-body__time{
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--color-border);
}

.s-top-news .p-homeNewsList-body__title{
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.s-top-news .news-content{
  display: -webkit-box;
  max-height: calc(3em * 1.5);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.s-top-news .news-content .news-detail{
  display: none;
}

@media (min-width: 768px) {
  .s-top-news{
    padding-block: 6rem 8rem;
  }
  
  .s-top-news .s-top-news__inner{
    margin-inline: auto;
    padding: 5rem 6rem;
    grid-template-columns: 1fr 74.21875%;
    grid-template-rows: auto 1fr;
    gap: 4rem 7rem;
    width: min(90%, 140rem);
  }

  .s-top-news .p-homeNewsList{
    border-top: none;
  }

  .s-top-news .s-top-news__content{
    grid-area: 1/2/3/3;
  }

  .s-top-news .p-homeNewsList-body{
    grid-template-columns: 9rem 1fr;
    gap: 2rem;
    align-items: center;
  }

  .s-top-news .p-homeNewsList__item{
    padding-block: 3rem;
  }

  .s-top-news .p-homeNewsList-body__time{
    font-size: 1.3rem;
  }

  .s-top-news .p-homeNewsList-body__title{
    font-size: 1.5rem;
  }

  .s-top-news .news-content{
    max-height: calc(2em * 1.5);
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  .s-top-news .p-homeViewMoreBtn{
    margin: 0;
    padding: 1.75rem 0;
    width: 92.3076%;
    font-size: 1.3rem;
  }
}

@media (hover:hover) {
  .s-top-news .p-homeViewMoreBtn:hover::before{
    width: 5rem;
    right: -3rem;
  }

  .s-top-news .p-homeViewMoreBtn:hover::after{
    right: -3rem;
  }
}

.s-top-product{
  padding-block: 3rem;
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
}

.s-top-product[data-product-type="recommend"] .c-product-head__rank{
  display: none !important;
}

.s-top-product .s-top-product__inner{
  display: grid;
  grid-template-columns: 1fr 9.7rem;
  gap: 2rem 0;
}

.s-top-product .s-top-heading{
  padding-left: 2rem;
  grid-area: 1/1/2/2;
}

.s-top-product .s-top-product__control{
  padding-right: 2rem;
  grid-area: 1/2/2/3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.s-top-product .s-top-product__arrow{
  padding: 0;
  width: 100%;
  height: fit-content;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
}

.s-top-product .s-top-product__content{
  grid-area: 2/1/3/3;
}

.s-top-product .c-product-head__image{
  position: static;
}

.s-top-product .c-product-head__picture::before{
  content: none;
}

.s-top-product .c-product-body,
.s-top-product .c-product-body__price,
.s-top-product .c-product-sIcon{
  margin-top: 1.2rem;
}

.s-top-product .c-product-head__rank{
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #666;
}

.s-top-product .s-top-product__slider--item:nth-of-type(1) .c-product-head__rank{
  background-color: #C1AB7E;
}

.s-top-product .s-top-product__slider--item:nth-of-type(2) .c-product-head__rank{
  background-color: #ABB3BA;
}

.s-top-product .s-top-product__slider--item:nth-of-type(3) .c-product-head__rank{
  background-color: #BA9B88;
}

.s-top-product .c-product-head__rankNum{
  display: block;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-white);
}

.s-top-product .c-product-body__title-name{
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
}

.s-top-product .c-product-price__item:has(.c-product-price__icon){
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: center;
}

.s-top-product .c-product-price__item:has(.c-product-price__discount:not(:empty)){
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.s-top-product .c-product-price__discount:not(:empty){
  display: block;
  font-family: var(--font-inter);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.025em;
  line-height: 1;
  color: var(--color-emphasis);
}

.s-top-product .c-product-price__item:nth-of-type(n+2){
  margin-top: 0.2rem;
}

.s-top-product .c-product-price__item[data-price-type="discount"] + .c-product-price__item[data-price-type="normal"] .c-product-price__numeric{
  position: relative;
}

.s-top-product .c-product-price__item[data-price-type="discount"] + .c-product-price__item[data-price-type="normal"] .c-product-price__numeric::after{
  width: 100%;
  height: 2px;
  background-color: var(--color-emphasis);
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.s-top-product .c-product-price__icon{
  width: 100%;
  height: 1.9rem;
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.025em;
  line-height: 1;
  border: 1px solid var(--color-text-default);
}

.s-top-product .c-product-price__item[data-price-type="discount"]{
  color: var(--color-emphasis);
}

.s-top-product .c-product-price__item[data-price-type="discount"] .c-product-price__icon{
  font-weight: var(--fw-bold);
  border-color: var(--color-emphasis);
  color: var(--color-emphasis);
}

.s-top-product .c-product-price__numeric{
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.025em;
  line-height: 1;
}

.s-top-product .c-product-price__suffix{
  font-size: 1rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.025em;
  line-height: 1;
}

.s-top-product .c-product-head__soldout{
  padding: 0.35rem 0.8rem;
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: var(--font-inter);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.025em;
  line-height: 1;
  background-color: var(--color-theme-sub);
  border-radius: 100vh;
  color: var(--color-white);
}

.s-top-product .swiper{
  margin-left: 2rem;
  padding-right: 2rem;
  width: calc(100% - 2rem);
}

.s-top-product .s-top-product__pagination{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.s-top-product .s-top-product__pagination .swiper-pagination-bullet{
  margin: 0;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 1;
  background-color: var(--color-theme-bg3);
}

.s-top-product .s-top-product__pagination .swiper-pagination-bullet-active{
  background-color: #666;
}

@media (min-width: 768px) {
  .s-top-product{
    padding-block: 6rem;
    display: grid;
    grid-template-columns: 1fr min(90%, 140rem) 1fr;
  }

  .s-top-product .s-top-product__inner{
    grid-column: 2/3;
    grid-template-columns: 1fr 11rem;
    gap: 4rem 0;
  }

  .s-top-product .s-top-heading{
    padding-left: 0;
  }

  .s-top-product .s-top-product__control{
    padding-right: 0;
    gap: 1rem;
    align-items: center;
  }

  .s-top-product .c-product-head__rank{
    width: 3.5rem;
    height: 3.5rem;
  }

  .s-top-product .c-product-head__rankNum{
    font-size: 1.5rem;
  }

  .s-top-product .c-product-body__title-name{
    font-size: 1.4rem;
  }

  .s-top-product .c-product-price__numeric{
    font-size: 1.8rem;
  }

  .s-top-product .c-product-price__icon{
    height: 2rem;
    font-size: 1.1rem;
  }

  .s-top-product .c-product-price__suffix{
    font-size: 1.2rem;
  }

  .s-top-product .c-product-price__item:has(.c-product-price__icon){
    grid-template-columns: 5.5rem 1fr;
  }

  .s-top-product .c-product-price__item:nth-of-type(n+2){
    margin-top: 0.3rem;
  }

  .s-top-product .c-product-price__item:has(.c-product-price__discount:not(:empty)){
    gap: 1rem;
  }

  .s-top-product .c-product-price__discount:not(:empty){
    font-size: 1.2rem;
  }

  .s-top-product .c-product-head__soldout{
    padding: 0.65rem 1rem;
    font-size: 1.2rem;
  }

  .s-top-product .s-top-product__arrow :where(img){
    width: 100%;
    height: auto;
  }

  .s-top-product .c-product-body,
  .s-top-product .c-product-body__price,
  .s-top-product .c-product-sIcon{
    margin-top: 1.5rem;
  }

  .s-top-product .swiper{
    margin-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .s-top-product .s-top-product__pagination{
    margin-top: 4rem;
  }

  .s-top-product .s-top-product__pagination .swiper-pagination-bullet{
    width: 0.8rem;
    height: 0.8rem;
  }
}

.s-top-category-banner{
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
}

.s-top-category-banner[data-banner-type="small"]{
  padding-block: 2rem 6rem;
}

.s-top-category-banner[data-banner-type="big"]{
  padding-block: 3rem 2rem;
}

.s-top-category-banner :where(img){
  width: 100%;
  height: auto;
}

.s-top-category-banner .s-top-category-banner__inner{
  padding: 0 1.5rem;
}

.s-top-category-banner .s-top-category-banner__list{
  display: grid;
  gap: 1rem;
}

.s-top-category-banner[data-banner-type="small"] .s-top-category-banner__list{
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .s-top-category-banner[data-banner-type="small"]{
    padding-block: 3rem 16rem;
  }

  .s-top-category-banner[data-banner-type="big"]{
    padding-block: 6rem 3rem;
  }

  .s-top-category-banner .s-top-category-banner__inner{
    margin-inline: auto;
    padding: 0;
    width: min(90%, 140rem);
  }

  .s-top-category-banner .s-top-category-banner__list{
    gap: min(2rem, calc(20 * (100vw / 1400)));
  }

  .s-top-category-banner[data-banner-type="big"] .s-top-category-banner__list{
    grid-template-columns: repeat(2, 1fr);
  }

  .s-top-category-banner[data-banner-type="small"] .s-top-category-banner__list{
    grid-template-columns: repeat(3, 1fr);
  }
}

.s-top-about{
  position: relative;
  z-index: 2;
}

.s-top-about .s-top-about__inner{
  display: grid;
  grid-template-rows: 14rem 11.5rem 6.5rem 1fr;
  gap: 0;
}

.s-top-about .s-top-about__image{
  margin: 0 0 0 auto;
  padding-right: 1rem;
  width: 24rem;
  grid-area: 2/1/4/3;
  z-index: 2;
}

.s-top-about .s-top-about__content{
  padding: 8rem 2.5rem 6rem;
  background-image: url(../img/top/top_about_bg.svg);
  background-repeat: repeat;
  background-color: var(--color-theme-bg2);
  grid-area: 3/1/5/3;
}

.s-top-about .s-top-about__lead{
  margin-block: 2rem;
  font-family: var(--font-shippori);
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.025em;
  line-height: 1.75;
}

.s-top-about .s-top-about__text{
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.08em;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .s-top-about .s-top-about__inner{
    grid-template-columns: 1fr min(80rem, calc(800 * (100vw / 1400))) min(60rem, calc(600 * (100vw / 1400))) 1fr;
    grid-template-rows: min(40rem, calc(400 * (100vw / 1400))) min(8rem, calc(80 * (100vw / 1400))) min(37rem, calc(370 * (100vw / 1400))) 1fr;
  }

  .s-top-about .s-top-about__image{
    padding-right: 0;
    width: 100%;
    grid-area: 2/3/4/4;
  }

  .s-top-about .s-top-about__content{
    padding: 6rem 0  7rem;
    grid-area: 3/1/5/5;
    display: grid;
    grid-template-columns: 1fr min(90%, 140rem) 1fr;
  }

  .s-top-about .s-top-about__content--inner{
    padding-left: min(8rem, calc(80 * (100vw / 1400)));
    grid-column: 2/3;
  }

  .s-top-about .s-top-about__lead{
    margin-block: 4rem 3rem;
    font-size: min(2.1rem, calc(21 * (100vw / 1400)));
  }

  .s-top-about .s-top-about__text{
    margin-top: 3rem;
    font-size: min(1.5rem, calc(15 * (100vw / 1400)));
  }
}

.s-top-bottom-banner{
  padding-block: 6rem;
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
}

.s-top-bottom-banner :where(button){
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.s-top-bottom-banner :where(img),
.s-top-bottom-banner :where(svg){
  width: 100%;
  height: auto;
}

.s-top-bottom-banner .s-top-bottom-banner__inner{
  padding-inline: 2rem;
}

.s-top-bottom-banner .s-top-bottom-banner__pagination{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  align-items: center;
}

.s-top-bottom-banner .swiper-pagination-bullet{
  margin: 0!important;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 1;
  background-color: var(--color-theme-bg3);
}

.s-top-bottom-banner .swiper-pagination-bullet-active{
  background-color: var(--color-theme-sub);
}

.s-top-bottom-banner .s-top-bottom-banner__prev{
  padding-left: 0.4rem;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  align-items: center;
  width: 5rem;
  height: calc(100% - 2.6rem);
  z-index: 2;
  background: linear-gradient(-90deg, rgb(255 255 255/ 0), rgb(255 255 255));
}

.s-top-bottom-banner .s-top-bottom-banner__next{
  padding-left: 0.4rem;
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-items: center;
  width: 5rem;
  height: calc(100% - 2.6rem);
  z-index: 2;
  background: linear-gradient(90deg, rgb(255 255 255/ 0), rgb(255 255 255));
}

@media (min-width: 768px) {
  .s-top-bottom-banner{
    padding-top: 12rem;
    margin-inline: auto;
    padding-bottom: 10rem;
    display: grid;
    grid-template-columns: 1fr 2.5rem 2.5rem min(90%, 135rem) 2.5rem 2.5rem 1fr;
    gap: 4rem 0;
  }

  .s-top-bottom-banner .s-top-bottom-banner__inner{
    padding-inline: 0;
    width: 100%;
    grid-area: 1/3/2/6;
  }

  .s-top-bottom-banner .s-top-bottom-banner__navigation--prev{
    width: 5rem;
    height: 5rem;
    grid-area: 1/1/2/2;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
  }

  .s-top-bottom-banner .s-top-bottom-banner__prev{
    padding-left: 0;
    grid-area: 1/2/2/4;
    position: static;
    width: 100%;
    height: 100%;
  }

  .s-top-bottom-banner .s-top-bottom-banner__navigation--next{
    width: 5rem;
    height: 5rem;
    top: 50%;
    right: 0;
    transform: none;
  }

  .s-top-bottom-banner .s-top-bottom-banner__next{
    padding-left: 0;
    background: none;
    width: 100%;
    height: 100%;
    grid-area: 1/5/2/7;
  }

  .s-top-bottom-banner .swiper-slide{
    height: fit-content;
  }

  .s-top-bottom-banner .swiper-pagination-bullet{
    width: 0.8rem;
    height: 0.8rem;
  }

  .s-top-bottom-banner .s-top-bottom-banner__pagination{
    margin-top: 0;
    grid-area: 2/1/3/8;
  }
}

.s-top-payment{
  padding: 3rem 0 6rem;
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
}

.s-top-payment .s-top-payment__inner{
  margin-inline: auto;
  width: 89.3333%;
  padding: 3rem 2rem;
  display: grid;
  gap: 2rem;
  border: 2px solid #EFEFEF;
}

.s-top-payment .s-top-payment__list{
  display: grid;
  gap: 1rem;
}

.s-top-payment .s-top-payment__item{
  padding: 1.5rem;
  background-color: var(--color-theme-bg1);
}

.s-top-payment .s-top-payment__title{
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  line-height: 1;
}

.s-top-payment .s-top-payment__text{
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
}

.s-top-payment .s-top-payment__image--list{
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.s-top-payment .s-top-payment__image--item{
  width: auto;
  max-height: 5.2rem;
}

.s-top-payment :where(img){
  width: auto;
  height: 100%;
  max-height: 5.2rem;
}

@media (min-width: 768px) {
  .s-top-payment{
    padding: 5rem 0 10rem;
  }
  
  .s-top-payment .s-top-heading__ja{
    font-size: 2.7rem;
  }
  
  .s-top-payment .s-top-payment__inner{
    padding: 5rem;
    width: min(90%, 140rem);
    grid-template-columns: 1fr 76.9230%;
    grid-template-rows: auto 1fr;
    gap: 4rem 7rem;
  }

  .s-top-payment .s-top-payment__content{
    grid-area: 1/2/3/3;
  }

  .s-top-payment .s-top-payment__list{
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .s-top-payment .s-top-payment__item{
    padding: 2rem;
  }

  .s-top-payment .s-top-payment__title{
    font-size: 1.6rem;
  }

  .s-top-payment .s-top-payment__text{
    font-size: 1.3rem;
  }
}
