﻿@charset "UTF-8";

.p-page-home {
  padding-bottom: 0;
}
@media screen and (min-width: 992px) {
  .p-page-home {
    width: min(95%, 114rem);
    margin-inline: auto;
  }
}

/* Home Common */
.home-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  row-gap: 1.2rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  font-family: var(--font-ja);
}
.home-section__title small {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
}
.home-section__body {
  padding-inline: 1.2rem;
}
.home-section__button-wrapper {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-section__button {
  width: 18rem;
  height: 4rem;
  color: var(--color-white) !important;
  background-color: var(--color-tertiary);
  border: 1px solid var(--color-tertiary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-en);
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .home-section {
    padding-block: 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  .home-section {
    margin-block: 10rem;
  }
  .home-section__body {
    padding-inline: 0;
  }
  .home-section__title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  .home-section__button-wrapper {
    margin-top: 4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-section__button {
    transition: color var(--transition-default), background-color var(--transition-default);
  }
  .home-section__button:hover {
    color: var(--color-tertiary) !important;
    background-color: var(--color-white);
  }
}

/* Main Visual */
.m-featureVertical-container {
  margin-top: 0;
  margin-bottom: 0;
}
.home-mainvisual {
  min-height: 16.7rem;
}
@media screen and (min-width: 992px) {
  .home-mainvisual {
    margin-top: 2rem;
    min-height: min(37.9104477612svw, 50.8rem);
  }
}

/* Campaign Banner */
.home-campaignbanner {
  margin-top: 2rem;
  position: relative;
  min-height: 14.4rem;
}
.home-campaignbanner .m-featureVertical-container {
  margin-inline: auto;
}
.home-campaignbanner .m-featureVertical-navigation {
  position: absolute;
  z-index: 10;
  top: 50%;
  translate: 0 -50%;
  width: 3rem;
}
.home-campaignbanner .m-featureVertical-navigation--prev {
  left: 1rem;
}
.home-campaignbanner .m-featureVertical-navigation--next {
  right: 1rem;
}
.home-campaignbanner .swiper-pagination {
  position: relative;
  bottom: unset;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.6rem 1rem;
}
.home-campaignbanner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.home-campaignbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 0.8rem !important;
  height: 0.8rem !important;
  margin: 0 0;
  background-color: #DDDDDD !important;
  opacity: 1 !important;
}
.home-campaignbanner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active,
.home-campaignbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--color-tertiary) !important;
}
@media screen and (max-width: 991px) {
  .home-campaignbanner .m-featureVertical-navigation {
    top: calc(50% - 1.5rem);
  }
  .home-campaignbanner .swiper-pagination {
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .home-campaignbanner {
    width: min(85.07462686567svw, 114rem);
    min-height: min(15.3731343284svw, 20.6rem);
    margin-top: 5rem;
    margin-inline: auto;
  }
  .home-campaignbanner .m-featureVertical-container {
    width: min(60.8955223881svw, 81.6rem);
  }
  .home-campaignbanner .m-featureVertical-navigation {
    width: min(3.5820895522svw, 4.8rem);
    height: min(3.5820895522svw, 4.8rem);
  }
  .home-campaignbanner .m-featureVertical-navigation--prev {
    left: min(5.5970149254svw, 7.5rem);
  }
  .home-campaignbanner .m-featureVertical-navigation--next {
    right: min(5.5970149254svw, 7.5rem);
  }
}

/* News */
.p-homeNewsList,
.p-homeNewsList-body {
  border-color: #F0F0F0;
}
.p-homeNewsList-body {
  padding: 1.6rem 0;
}
.p-homeNewsList-body__time {
  font-family: var(--font-en-accent);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.02em;
}
.p-homeNewsList-body__title span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  font-family: var(--font-ja-accent);
  letter-spacing: 0.02em;
}

/* Product */
.c-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.1rem 1rem;
}

@media screen and (min-width: 992px) {
  .c-product-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3.4rem 2rem;
  }
  #homeRanking .c-product-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  #homeRecentlyViewed .c-product-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  #homeRecentlyViewed .c-product-list .c-product-list__item:nth-child(n+7) {
    display: none;
  }
  .p-homeNewsList {
    width: min(70.8955223881svw, 95rem);
    margin-inline: auto;
  }
  .p-homeNewsList-body {
    align-items: flex-start;
    padding: 2.4rem 2rem;
  }
}
.c-product-head__rank {
  background-color: var(--color-white);
  border: 1px solid var(--color-secondary);
  min-width: unset;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0 0;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 991px) {
  .c-product-head__rank {
    width: 2rem;
    height: 2rem;
    font-size: 1.4rem;
  }
}
.c-product-head__image {
  object-fit: cover;
}
#homeRecommendedProduct .c-product-head__rank {
  display: none;
}
.c-product-head__picture::before {
  padding-top: 100%;
}
.c-product-body__title-name a {
  font-family: var(--font-en-accent);
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
.c-product-body__price-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.c-product-body__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.c-product-body__price-label {
  font-family: var(--font-ja-accent);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.5rem 0.4rem;
  background-color: var(--color-white);
  border: 1px solid #888888;
  border-radius: 0.2rem;
}
.c-product-body__price-value {
  font-family: var(--font-en-accent);
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0.03em;
}
.c-product-body__price-value--discount {
  color: var(--color-danger);
}
.c-product-body {
  margin-top: 1.2rem;
}
.c-product-body__price-list {
  margin-top: 1rem;
}

/* Lineup */
.c-lineup-body {
  margin-top: 0;
}
.c-lineup-body {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 2rem;
}
.c-lineup-body__title {
  font-family: var(--font-en), var(--font-ja);
  padding-block: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  border-bottom: 1px solid #DDDDDD;
}
.u-text-uppercase {
  text-transform: uppercase;
}
.c-lineup-body__description {
  font-weight: 500;
  font-family: var(--font-ja-accent);
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-lineup-body__description sup {
  font-size: 1rem;
}
.c-lineup-body__description small {
  font-size: 1rem;
}

.c-lineup {
  height: 100%;
}
.c-lineup__link {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

@media (hover: hover) and (pointer: fine) {
  .c-lineup__link {
    transition: opacity var(--transition-default);
  }
  .c-lineup__link:hover {
    opacity: 0.75;
  }
}

@media screen and (max-width: 991px) {
  .c-lineup-body__title {
    display: grid;
    place-content: center;
    padding-block: 1rem 0.6rem;
  }
  .c-lineup-body {
    row-gap: 1.1rem;
  }
  .c-lineup-body__description {
    font-size: 1.2rem;
  }
  #homeProductLineup .c-product-list__item:nth-of-type(3) .c-lineup-body__title {
    min-height: 10.1rem;
  }

  #homeRecentlyViewed .c-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 1rem;
  }
}

@media screen and (min-width: 992px) {
  .c-lineup-body {
    height: auto;
  }
  .c-lineup-body__title {
    font-size: min(1.2686567164svw, 1.7rem);
    white-space: nowrap;
    padding-block: 1.6rem 1rem;
  }
  .c-lineup {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .c-lineup-body {
    row-gap: 1.5rem;
  }
}

.c-product-head__status {
  position: relative;
}