/* =============================================================
    Module
============================================================= */
/**
 * common / variables
 */
.p-page-home {
  --home-container-middle-value: 1140;
  --home-container-middle: calc(var(--home-container-middle-value) * 0.1rem);
}
.c-home-heading {
  display: grid;
  grid-template-columns: 100%;
  text-align: center;
}
.c-home-heading--primary {
  letter-spacing: 0.15em;
  font-weight: 700;
}
.c-home-heading--secondary {
  font-family: var(--font-en);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  font-weight: 800;
}
.c-home-button__container {
  margin-inline: auto;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-home-heading {
    gap: 0.5rem;
  }
  .c-home-heading + * {
    margin-block-start: var(--home-heading-spaceer, 3rem);
  }
  .c-home-heading--primary {
    font-size: 2.6rem;
    line-height: calc(37 / 26);
  }
  .c-home-heading--secondary {
    font-size: 1.3rem;
    line-height: calc(16 / 13);
  }
  .c-home-button__container {
    width: 24.5rem;
    margin-block-start: var(--button-container-spacer, 3rem);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-home-heading {
    gap: 0.9rem;
  }
  .c-home-heading + * {
    margin-block-start: var(--home-heading-spaceer, 4rem);
  }
  .c-home-heading--primary {
    font-size: 3.5rem;
    line-height: calc(51 / 35);
  }
  .c-home-heading--secondary {
    font-size: 1.5rem;
    line-height: calc(18 / 15);
  }
  .c-home-button__container {
    width: 32rem;
    margin-block-start: var(--button-container-spacer, 4rem);
  }
}

/**
 * layout
 */
.l-home-section__shell {
  max-width: var(--home-container-middle);
  width: 100%;
  margin-inline: auto;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .l-home-section + .l-home-section {
    margin-block-start: var(--section-spacer, 6rem);
  }
  .l-home-section__container + .l-home-section__container {
    margin-block-start: var(--section-container-spacer, 6rem);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .l-home-section + .l-home-section {
    margin-block-start: var(--section-spacer, 10rem);
  }
  .l-home-section__container + .l-home-section__container {
    margin-block-start: var(--section-container-spacer, 10rem);
  }
}

/**
 * #m-homeMainVisual
 */
.m-homeMainVisual {
  display: block;
  width: 100%;
  position: relative;
}
.m-homeMainVisual__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  position: relative;
}
.m-homeMainVisual--single .m-homeMainVisual-slideController,
.m-homeMainVisual--single .m-homeMainVisual-slidePagination {
  display: none;
}

.m-homeMainVisual-slider__item-picture > img {
  width: 100%;
}

.m-homeMainVisual-slideController {
  display: block;
}
.m-homeMainVisual-slideController__prev,
.m-homeMainVisual-slideController__next {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: calc(50% - 3.9rem);
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.3s ease;
  outline: none;
}
.m-homeMainVisual-slideController__prev > img,
.m-homeMainVisual-slideController__next > img {
  width: 1.2rem;
}
@media screen and (min-width: 768px) {
  .m-homeMainVisual-slideController__prev,
  .m-homeMainVisual-slideController__next {
    top: calc(50% - 4rem);
  }
  .m-homeMainVisual-slideController__prev:hover,
  .m-homeMainVisual-slideController__next:hover {
    opacity: var(--hover-opacity);
  }
}
.m-homeMainVisual-slideController__prev {
  left: 1rem;
  padding-right: 0.3rem;
}
@media screen and (min-width: 768px) {
  .m-homeMainVisual-slideController__prev {
    left: 3rem;
  }
}
.m-homeMainVisual-slideController__next {
  right: 1rem;
  padding-left: 0.3rem;
}
@media screen and (min-width: 768px) {
  .m-homeMainVisual-slideController__next {
    right: 3rem;
  }
}
.m-homeMainVisual-slideController__prev.swiper-button-disabled,
.m-homeMainVisual-slideController__next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.m-homeMainVisual-slidePagination {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  width: 100%;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-homeMainVisual-slidePagination {
    margin-top: 2rem;
  }
}
.m-homeMainVisual-slidePagination__item {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  background: var(--color-white);
  opacity: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .m-homeMainVisual-slidePagination__item {
    transition: opacity 0.3s ease;
  }
  .m-homeMainVisual-slidePagination__item:hover {
    opacity: var(--hover-opacity);
  }
}
.m-homeMainVisual-slidePagination__item.swiper-pagination-bullet-active {
  cursor: default;
  background: var(--color-black);
}

/**
 * #m-homeFeatureSlide
 */
.m-homeFeatureSlide {
  display: block;
  width: 100%;
  position: relative;
}
.m-homeFeatureSlide-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  position: relative;
}
.m-homeFeatureSlide-slider {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  transition-property: transform;
  box-sizing: content-box;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.m-homeFeatureSlide-slider__item {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  transition-property: transform;
}
@media screen and (min-width: 768px) {
  .m-homeFeatureSlide-slider__item {
    width: 36.7rem;
  }
}
.m-homeFeatureSlide-slider__picture {
  display: block;
  width: 100%;
}
.m-homeFeatureSlide-slider__picture img {
  display: block;
  width: 100%;
  height: auto;
}
.m-homeFeatureSlide-slider__link {
  display: block;
}
@media screen and (min-width: 768px) {
  .m-homeFeatureSlide-slider__link {
    transition: opacity 0.3s ease;
  }
  .m-homeFeatureSlide-slider__link:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px) {
  .m-homeFeatureSlide--mdNoSlide .m-homeFeatureSlide-container {
    display: block;
    max-width: calc(1140px + 4rem);
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
    position: relative;
    overflow: visible;
  }
  .m-homeFeatureSlide--mdNoSlide .m-homeFeatureSlide-slider {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    transition-property: none;
    box-sizing: border-box;
    gap: 2.5rem 2rem;
    height: auto;
  }
  .m-homeFeatureSlide--mdNoSlide .m-homeFeatureSlide-slider__item {
    display: block;
    width: calc(33.3333% - 1.3333333333rem);
    height: auto;
    overflow: visible;
    background: #ffffff;
    transition-property: none;
  }
}
@media screen and (min-width: 768px) {
  .m-homeFeatureSlide--md2Slide {
    max-width: calc(1140px + 10rem);
    margin: 0 auto;
    padding: 0 5rem;
  }
  .m-homeFeatureSlide--md2Slide .m-homeFeatureSlide-container {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
  }
}
.m-homeFeatureSlide-slideController {
  display: block;
}
.m-homeFeatureSlide-slideController__prev,
.m-homeFeatureSlide-slideController__next {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: calc(50% - 4.9rem);
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.3s ease;
  outline: none;
}
.m-homeFeatureSlide-slideController__prev > img,
.m-homeFeatureSlide-slideController__next > img {
  width: 1.2rem;
}
.m-homeFeatureSlide-slideController__prev {
  left: 1rem;
  padding-right: 0.3rem;
}
.m-homeFeatureSlide-slideController__next {
  right: 1rem;
  padding-left: 0.3rem;
}
@media screen and (min-width: 768px) {
  .m-homeFeatureSlide-slideController {
    display: none;
  }
  .m-homeFeatureSlide-slideController--md2Slide {
    display: block;
  }
  .m-homeFeatureSlide-slideController__prev,
  .m-homeFeatureSlide-slideController__next {
    top: calc(50% - 2.5rem);
  }
  .m-homeFeatureSlide-slideController__prev:hover,
  .m-homeFeatureSlide-slideController__next:hover {
    opacity: var(--hover-opacity);
  }
  .m-homeFeatureSlide-slideController__prev {
    left: 3rem;
  }
  .m-homeFeatureSlide-slideController__prev--md2Slide {
    left: 0;
  }
  .m-homeFeatureSlide-slideController__next {
    right: 3rem;
  }
  .m-homeFeatureSlide-slideController__next--md2Slide {
    right: 0;
  }
}
.m-homeFeatureSlide-slideController__prev.swiper-button-disabled,
.m-homeFeatureSlide-slideController__next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.m-homeFeatureSlide-slidePagination {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .m-homeFeatureSlide-slidePagination {
    margin-top: 2rem;
  }
}
.m-homeFeatureSlide-slidePagination__item {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  background: var(--color-white);
  opacity: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .m-homeFeatureSlide-slidePagination__item {
    transition: opacity 0.3s ease;
  }
  .m-homeFeatureSlide-slidePagination__item:hover {
    opacity: var(--hover-opacity);
  }
}
.m-homeFeatureSlide-slidePagination__item.swiper-pagination-bullet-active {
  cursor: default;
  background: var(--color-black);
}

/**
 * sub banner
 */
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .l-home-section[data-section="sub-banner"] {
    margin-block-start: 4rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .l-home-section[data-section="sub-banner"] {
    margin-block-start: 8rem;
  }
}

/**
 * products
 */
.l-home-section[data-section="products"] {
  background-repeat: no-repeat;
  background-size: cover;
}
.c-home-products {
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
}
.c-home-products__list {
  display: grid;
}
.c-home-products__container {
  position: relative;
}
.c-home-products__thumbnail {
  position: relative;
}
.c-home-products__thumbnail-picture {
  aspect-ratio: 1;
  overflow: hidden;
}
.c-home-products__thumbnail-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.c-home-products__icons {
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-home-products__icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.c-home-products__icons-list-item img {
  width: auto;
  height: 100%;
}
.c-home-products__product-name {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-home-products__price-shell {
  display: grid;
  grid-template-columns: 100%;
}
.c-home-products__discount-price {
  color: var(--color-sale);
}
.c-home-products__price {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-home-products__price--numeric {
  font-family: var(--font-en);
}
.c-home-products__price-special + .c-home-products__price {
  position: relative;
  width: fit-content;
  color: #666;
}
.c-home-products__price-special + .c-home-products__price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #666;
  transform: translateY(-50%);
}
.c-home-products__soldout {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #666;
  font-family: var(--font-en);
  color: #666;
  letter-spacing: 0.05em;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .l-home-section[data-section="products"] {
    padding-block: 6rem;
    padding-inline: 1.5rem;
    background-image: url(../../assets/img/home/home-background-small.jpg);
  }
  .c-home-products {
    padding-block-start: 1.2rem;
    padding-block-end: 4rem;
    padding-inline: 1.2rem;
  }
  .c-home-products__list {
    --home-products-list-row-gutter: 2rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--home-products-list-row-gutter);
    row-gap: 2rem;
  }
  .c-home-products__item:not(:nth-of-type(-n + 2)) {
    padding-block-start: 2rem;
    border-top: 1px solid #ededed;
  }
  .c-home-products__container {
    height: 100%;
  }
  .c-home-products__item:nth-of-type(odd) .c-home-products__container::after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(var(--home-products-list-row-gutter) / 2 * -1);
    width: 1px;
    height: 100%;
    background-color: #ededed;
  }
  .c-home-products__icons-list-item {
    height: 1.7rem;
  }
  .c-home-products__description {
    margin-block-start: 1rem;
  }
  .c-home-products__product-name {
    font-size: 1.4rem;
    line-height: calc(22 / 14);
  }
  .c-home-products__price-shell {
    row-gap: 0.2rem;
    margin-block-start: 1rem;
  }
  .c-home-products__price {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .c-home-products__price--tax {
    font-size: 1.1rem;
  }
  .c-home-products__price-special + .c-home-products__price {
    font-size: 1.6rem;
  }
  .c-home-products__price-special
    + .c-home-products__price
    .c-home-products__price--tax {
    font-size: 1rem;
  }
  .c-home-products__soldout {
    height: 1.7rem;
    margin-block-start: 0.5rem;
    padding-inline: 0.8rem;
    font-size: 1.2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .l-home-section[data-section="products"] {
    padding-block-start: 10rem;
    padding-block-end: 12rem;
    background-image: url(../../assets/img/home/home-background-large.jpg);
  }
  .c-home-products {
    padding-block-start: 3rem;
    padding-block-end: 5rem;
    padding-inline: 3rem;
  }
  .c-home-products__list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2.4rem;
    row-gap: 4rem;
  }
  .c-home-products__icons-list-item {
    height: 2rem;
  }
  .c-home-products__description {
    margin-block-start: 1.2rem;
  }
  .c-home-products__product-name {
    font-size: 1.6rem;
    line-height: calc(24 / 16);
  }
  .c-home-products__price-shell {
    row-gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
  .c-home-products__price {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  .c-home-products__price--tax {
    font-size: 1.2rem;
  }
  .c-home-products__price-special + .c-home-products__price {
    font-size: 1.8rem;
  }
  .c-home-products__price-special
    + .c-home-products__price
    .c-home-products__price--tax {
    font-size: 1.1rem;
  }
  .c-home-products__soldout {
    height: 2rem;
    margin-inline-start: 1.5rem;
    padding-inline: 0.8rem;
    font-size: 1.4rem;
  }
}

/**
 * categories
 */
.l-home-categories__container {
}
.l-home-categories__shell {
  display: grid;
  max-width: var(--home-container-middle);
  width: 100%;
  margin-inline: auto;
}
.c-home-heading--categories-sub {
  letter-spacing: 0.05em;
  font-weight: 700;
}
.c-home-categories__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.c-home-categories__item {
  border-radius: 0.5rem;
  background-color: var(--color-white);
  box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}
.c-home-categories__thumbnail-image {
  margin-inline: auto;
}
.c-home-categories__thumbnail-caption {
  letter-spacing: 0.05em;
  font-weight: 700;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .l-home-categories__container {
    padding-block-end: 3rem;
    background-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 9.8rem,
      #f8fce4 9.8rem,
      #f8fce4 100%
    );
  }
  .l-home-categories__container + .l-home-categories__container {
    margin-block-start: 5rem;
  }
  .c-home-categories__eyecatch {
    width: 29.5rem;
    margin-inline: auto;
  }
  .c-home-categories__description {
    margin-block-start: 2rem;
    padding-inline: 1.5rem;
  }
  .c-home-heading--categories-sub {
    font-size: 1.8rem;
    line-height: 3.4rem;
    text-align: center;
  }
  .c-home-heading--categories-sub span {
    font-size: 2.8rem;
    font-family: var(--font-en);
  }
  .c-home-categories__list {
    column-gap: 0.8rem;
    row-gap: 1rem;
    margin-block-start: 1.5rem;
  }
  .c-home-categories__item {
    padding-block: 1.2rem;
  }
  .c-home-categories__thumbnail-image {
    width: 8.5rem;
  }
  .c-home-categories__thumbnail-caption {
    margin-block-start: 0.5rem;
    font-size: 1.1rem;
    line-height: calc(16 / 11);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .l-home-categories__container {
    --categories-eyecatch-width: 51rem;
  }
  .l-home-categories__container:nth-of-type(odd) {
    background-image: linear-gradient(
      to left,
      transparent 0%,
      transparent 50%,
      #f8fce4 50%,
      #f8fce4 100%
    );
  }
  .l-home-categories__container:nth-of-type(even) {
    background-image: linear-gradient(
      to right,
      transparent 0%,
      transparent 50%,
      #f8fce4 50%,
      #f8fce4 100%
    );
  }
  .l-home-categories__container + .l-home-categories__container {
    margin-block-start: 8rem;
  }
  .l-home-categories__shell {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-home-categories__eyecatch {
    display: grid;
    place-items: center;
    height: 100%;
    padding-block: 5.6rem;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .c-home-categories__eyecatch > * {
    width: var(--categories-eyecatch-width);
  }
  .c-home-categories__description {
    padding-block: 5.6rem;
  }
  .l-home-categories__container:nth-of-type(odd) .c-home-categories__eyecatch {
    grid-column: 2;
    grid-row: 1;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTcwIiBoZWlnaHQ9IjQ1MyIgdmlld0JveD0iMCAwIDU3MCA0NTMiPiA8ZGVmcz4gPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPiA8cmVjdCBpZD0i6ZW35pa55b2iXzQzOTciIGRhdGEtbmFtZT0i6ZW35pa55b2iIDQzOTciIHdpZHRoPSI1NzAiIGhlaWdodD0iNDUzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4MDAgMzYxNCkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+IDwvY2xpcFBhdGg+IDwvZGVmcz4gPGcgaWQ9IuODnuOCueOCr+OCsOODq+ODvOODl18yNjUiIGRhdGEtbmFtZT0i44Oe44K544Kv44Kw44Or44O844OXIDI2NSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTgwMCAtMzYxNCkiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4gPHBhdGggaWQ9IuODkeOCuV84MjE5IiBkYXRhLW5hbWU9IuODkeOCuSA4MjE5IiBkPSJNMCwwSDEwNDEuMTcxTDEyNzAsNDUzSDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDM2MTQpIiBmaWxsPSIjZjhmY2U0Ii8+IDwvZz48L3N2Zz4=");
  }
  .l-home-categories__container:nth-of-type(odd)
    .c-home-categories__eyecatch
    > * {
    margin-inline-start: auto;
  }
  .l-home-categories__container:nth-of-type(odd)
    .c-home-categories__description {
    grid-column: 1;
    grid-row: 1;
  }
  .l-home-categories__container:nth-of-type(even) .c-home-categories__eyecatch {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTcwIiBoZWlnaHQ9IjQ1MyIgdmlld0JveD0iMCAwIDU3MCA0NTMiPiA8ZGVmcz4gPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPiA8cmVjdCBpZD0i6ZW35pa55b2iXzQzOTgiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDQzOTgiIHdpZHRoPSI1NzAiIGhlaWdodD0iNDUzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzAgNDE0NykiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+IDwvY2xpcFBhdGg+IDwvZGVmcz4gPGcgaWQ9IuODnuOCueOCr+OCsOODq+ODvOODl18yNjYiIGRhdGEtbmFtZT0i44Oe44K544Kv44Kw44Or44O844OXIDI2NiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIzMCAtNDE0NykiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4gPHBhdGggaWQ9IuODkeOCuV84MjIwIiBkYXRhLW5hbWU9IuODkeOCuSA4MjIwIiBkPSJNMTI3MCwwSDIyOC44MjlMMCw0NTNIMTI3MFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMzMCA0MTQ3KSIgZmlsbD0iI2Y4ZmNlNCIvPiA8L2c+PC9zdmc+");
  }
  .c-home-heading--categories-sub {
    font-size: 3rem;
    line-height: 4.9rem;
  }
  .c-home-heading--categories-sub span {
    font-size: 4rem;
    font-family: var(--font-en);
  }
  .c-home-categories__list {
    gap: 1.5rem;
    margin-block-start: 3rem;
  }
  .c-home-categories__item {
    padding-block: 2rem;
    padding-inline: 2rem;
  }
  .c-home-categories__thumbnail-caption {
    margin-block-start: 1rem;
    font-size: 1.5rem;
    line-height: calc(21 / 15);
  }
}

/**
 * news
 */
.l-home-news {
  border-radius: 0.5rem;
  background-color: #f4faf4;
  box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.1);
}
.c-home-news__list {
  border-bottom: 1px solid #e4ebe4;
}
.c-home-news__item {
  border-top: 1px solid #e4ebe4;
}
.c-home-news__date {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.c-home-news__detail {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-appearance: none;
  background-color: inherit;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: left;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .l-home-news {
    width: 34.5rem;
    margin-inline: auto;
    padding-block: 4rem;
    padding-inline: 2rem;
  }
  .c-home-news__body {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 0.6rem;
    padding-block: 1.6rem;
    padding-inline: 0.5rem;
  }
  .c-home-news__date {
    font-size: 1.4rem;
    line-height: calc(17 / 14);
  }
  .c-home-news__detail {
    font-size: 1.4rem;
    line-height: calc(22 / 14);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .l-home-news {
    padding-block: 6rem;
    padding-inline: 10rem;
  }
  .c-home-news__body {
    display: grid;
    grid-template-columns: 10.2rem 1fr;
    padding-block: 2.5rem;
    padding-inline: 3rem;
  }
  .c-home-news__date {
    font-size: 1.6rem;
    line-height: calc(26 / 16);
  }
  .c-home-news__detail {
    font-size: 1.6rem;
    line-height: calc(26 / 16);
  }
  [data-button-container="news"] {
    --button-container-spacer: 5rem;
  }
}
/**
 * #m-homeCategoryList
 */
.m-homeCategoryList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .m-homeCategoryList {
    gap: 1.5rem 2rem;
  }
}
.m-homeCategoryList__item {
  display: block;
  width: calc((100% - 4.5rem) / 3);
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .m-homeCategoryList__item {
    width: 12.5rem;
    font-size: 1.6rem;
  }
}
.m-homeCategoryList__link {
  display: block;
}
@media screen and (min-width: 768px) {
  .m-homeCategoryList__link {
    transition: opacity 0.3s ease;
  }
  .m-homeCategoryList__link:hover {
    opacity: var(--hover-opacity);
  }
}
.m-homeCategoryList__picture {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.m-homeCategoryList__picture img {
  display: block;
  width: 100%;
  height: auto;
}

/**
 * #m-productLine-col2-md3
 */
.m-productLine-col2-md3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .m-productLine-col2-md3 {
    gap: 2.5rem 2rem;
  }
}
.m-productLine-col2-md3__item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 576px) {
  .m-productLine-col2-md3__item {
    width: calc(33.3333% - 1.3333333333rem);
  }
}

/* =============================================================
    Page
============================================================= */
.p-page-home {
  padding-bottom: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-home {
    padding-bottom: 10.5rem;
  }
}

/**
 * #p-homeSection
 */
.p-homeSection {
  display: block;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-homeSection {
    padding-top: 9rem;
  }
}
.p-homeSection--bgOrange {
  margin-top: 5rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: #f5e3b5;
}
@media screen and (min-width: 768px) {
  .p-homeSection--bgOrange {
    margin-top: 9rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-homeSection__title {
  display: block;
  margin-bottom: 2rem;
  font-family: var(--font-en);
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-homeSection__title {
    font-size: 3rem;
  }
}

/**
 * #p-homeContentsUnderBtn
 */
.p-homeContentsUnderBtn {
  display: block;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-homeContentsUnderBtn {
    margin-top: 4.5rem;
  }
}

.p-homeViewMoreBtn {
  display: inline-block;
  padding: 0 1.45rem 0.6rem;
  border-bottom: 1px solid #575757;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-homeViewMoreBtn {
    transition: opacity 0.3s ease;
  }
  .p-homeViewMoreBtn:hover {
    opacity: var(--hover-opacity);
  }
}

/**
 * #p-homeNewsList
 */
.p-homeNewsList {
  display: block;
  width: 100%;
  border-top: 1px solid var(--color-gray);
}
.p-homeNewsList__item {
  display: block;
}
.p-homeNewsList-body {
  display: block;
  padding: 2.4rem 0 1.9rem;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-homeNewsList-body {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 2rem 2.45rem;
  }
}
.p-homeNewsList-body__time {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-homeNewsList-body__time {
    width: 17rem;
    margin-bottom: 0;
    white-space: nowrap;
  }
}
.p-homeNewsList-body__title {
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-homeNewsList-body__title {
    max-width: calc(100% - 17rem);
  }
}
@media screen and (min-width: 768px) {
  .p-homeNewsList-body--link {
    transition: opacity 0.3s ease;
  }
  .p-homeNewsList-body--link:hover {
    opacity: var(--hover-opacity);
  }
}
