@charset "UTF-8";

/* 総合トップページ共通のスタイル */


/* ===============================================
  * Foundation *
=============================================== */




/* ===============================================
  * Layout *
=============================================== */




/* ===============================================
  * Object *
=============================================== */

/* Object - Component */

.c-heading__text {
  text-align: left;
}

@media (min-width: 768px) {
  .c-heading__text {
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;

    font-size: 3rem;
  }

  .c-heading__text > small {
    font-size: 1.5rem;
  }
}




/* Object - Project */

/*
 * Section - モバイル用検索エリア
 */

#commonSectionSearch {
  border-bottom: none;
}




/*
 * Section - MV
 */

#topSectionMv {
  padding-top: 0;
}

@media (min-width: 768px) {
  #topSectionMv {
    padding-top: 2rem;
  }
}





/*
 * Section - ブランド
 */

#topSectionBrand {
  --color-section-bg: var(--color-black);
  --color-section-heading: var(--color-white);
  --color-theme: var(--color-white);
  --arrow-icon: var(--asset-link-arrow-right-white);
  --blank-icon: var(--asset-link-blank-white)
}

@media (max-width: 767px) {
  #topSectionBrand .c-image-banner__name-wrapper {
    background: transparent;
  }
}

#topSectionBrand .c-top-tile__description {
  row-gap: 1.5rem;
}

@media (min-width: 768px) {
  #topSectionBrand .c-top-tile__description {
    row-gap: 1.8rem;
  }
}




/*
 * Section - 製品カテゴリー
 */

#topSectionCategory {
  --color-section-bg: var(--color-text-default);
  --color-section-heading: var(--color-white);
  --color-theme: var(--color-white);
  --arrow-icon: var(--asset-link-arrow-right-white);
  --blank-icon: var(--asset-link-blank-white)
}

#topSectionCategory .c-top-tile__list {
  --column-num: 2;
  --gap: .9rem;
  --arrow-size: .611rem;
}

@media (min-width: 768px) {
  #topSectionCategory .c-top-tile__list {
    --column-num: 3;
    --gap: 1.6rem;
    --arrow-size: 1rem;
  }
}

#topSectionCategory .c-top-category__text {
  display: grid;
  grid-template-rows: 12rem 5.4rem;

  height: 100%;
  background-color: var(--color-white);

  color: var(--color-text-default);
  text-decoration: none;
}

@media (min-width: 768px) {
  #topSectionCategory .c-top-category__text {
    grid-template-rows: auto;
    grid-template-columns: calc(180 / (456 - (10 + 25)) * 100%) 1fr;
    align-items: center;
    gap: calc(20 / (456 - (10 + 25)) * 100%);

    padding: 1rem 2.5rem 1rem 1rem;
  }
}

#topSectionCategory .c-top-category__text > img {
  padding: 1rem 3.4rem;
}

@media (min-width: 768px) {
  #topSectionCategory .c-top-category__text > img {
    padding: 0;
  }
}

#topSectionCategory .c-top-category__text > span {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  column-gap: 1em;

  padding: .8rem 1.2rem;
  background-color: var(--color-project-bg-sub);

  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  letter-spacing: .05em;
  line-height: calc(18 / 14);
}

@media (min-width: 768px) {
  #topSectionCategory .c-top-category__text > span {
    padding: 0;
    background-color: transparent;

    font-size: 2rem;
    line-height: calc(30 / 20);
  }
}

#topSectionCategory .c-top-category__text > span::after {
  content: "";

  width: var(--arrow-size);
  aspect-ratio: 6.11 / 10;
  background-image: var(--asset-link-arrow-right-red);
  background-repeat: no-repeat;
  background-size: contain;
}

/* Animation */

#topSectionCategory .c-top-category__text {
  transition: box-shadow var(--transition-default);
}

#topSectionCategory .c-top-category__text > span::after {
  transition: translate var(--transition-default);
}

@media (prefers-reduced-motion: reduce) {
  #topSectionCategory .c-top-category__text,
  #topSectionCategory .c-top-category__text > span::after {
    transition: none;
  }
}

#topSectionCategory .c-top-category__text:hover,
#topSectionCategory .c-top-category__text:focus-visible {
  box-shadow: 0 0 4rem #000;
}

#topSectionCategory .c-top-category__text:hover > span::after,
#topSectionCategory .c-top-category__text:focus-visible > span::after {
  translate: 1rem;
}


/*
 * Section - よく見られている商品
 */

#topSectionPopular:has(+ #topSectionRecommended) {
  padding-bottom: 0;
}



/*
 * Section - キャンペーン
 */

#topSectionCampaign .c-top-tile__list {
  --column-num: 2;
  --gap: 3rem 1.5rem;
}

@media (min-width: 768px) {
  #topSectionCampaign .c-top-tile__list {
    --column-num: 3;
    --gap: 4rem 2.8rem;
  }
}


/*
 * Section - Instagram
 */

#topSectionInstagram .c-top__hgroup {
  text-align: initial;
}


/*
 * Section - お知らせ
 */

#topSectionNews .c-news__list > li:nth-of-type(n+6) {
  display: none;
}




/* Object - Utility */
