@charset "UTF-8";
.content-media-slider__stage {
  position: relative;
}

/* pagination（土台の棒） */
.content-media-slider__pagination {
  width: auto !important;
  position: absolute;
  left: 10px !important;
  right: 10px !important;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6px;
}
@media only screen and (min-width: 768px) {
  .content-media-slider__pagination {
    column-gap: 8px;
    left: 30px !important;
    right: 30px !important;
    bottom: 19px !important;
  }
}

/* 棒（通常） */
.content-media-slider__bullet {
  flex: 1 1 0; /* 親の幅を均等に割る（gap分は自動で引かれる） */
  min-width: 0; /* 念のため（長い環境でも崩れにくい） */
  height: 1px; /* 棒の太さ */
  border-radius: 999px; /* 角丸の“線”にしたいなら。四角なら 0 */
  background: rgba(0, 0, 0, 0.25);
  opacity: 1; /* Swiperデフォルトのopacity変化を打ち消す用 */
  margin: 0; /* Swiper側の余計な余白対策 */
}
@media only screen and (min-width: 768px) {
  .content-media-slider__bullet {
    height: 2px;
  }
}

/* 棒（アクティブ） */
.content-media-slider__bullet--active {
  background: rgba(255, 255, 255, 0.4); /* 画像上に重ねるなら白が見やすい想定 */
}
@media only screen and (min-width: 768px) {
  .content-media-slider__bullet--active {
    background: rgb(255, 255, 255);
  }
}

.content-media-slider__caption {
  margin-top: 16px;
}

.content-media-slider__caption-text {
  color: #555;
  text-align: justify;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  letter-spacing: 1.2px;
  position: relative;
  padding-left: 36px;
}
@media only screen and (min-width: 768px) {
  .content-media-slider__caption-text {
    padding-left: 40px;
  }
}
.content-media-slider__caption-text::before {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #A0A0A0;
  position: absolute;
  left: 0;
  top: 9px;
}
@media only screen and (min-width: 768px) {
  .content-media-slider__caption-text::before {
    width: 29px;
  }
}

.content-media-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.content-media-slider__nav--prev {
  left: -33px;
}
@media only screen and (min-width: 768px) {
  .content-media-slider__nav--prev {
    left: -71px;
  }
}

.content-media-slider__nav--next {
  right: -33px;
}
@media only screen and (min-width: 768px) {
  .content-media-slider__nav--next {
    right: -71px;
  }
}

.content-media-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5F5F5F; /* currentColor */
}

/* 初期：SPを表示、PCを非表示 */
.content-media-slider__nav-icon--sp {
  display: block;
}

.content-media-slider__nav-icon--pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  /* md以上：PCを表示、SPを非表示 */
  .content-media-slider__nav-icon--sp {
    display: none;
  }
  .content-media-slider__nav-icon--pc {
    display: block;
  }
}
/* 右矢印は回転（SP/PCどっちも対象） */
.content-media-slider__nav--next .content-media-slider__nav-icon {
  transform: rotate(180deg);
}

/* =========================================================
  home.scss
  - TOPページ（記事ページトップ）専用
========================================================= */
/* =========================================================
  1) 共通（home内の基本）
========================================================= */
.home {
  background: transparent;
}

.home section {
  width: 100%;
}

.home img {
  display: block;
  max-width: 100%;
  height: auto;
}

.home .home-inner {
  width: 100%;
  max-width: 1240px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home .home-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.home .home-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-heading {
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2.2px;
  text-align: center;
  font-feature-settings: "pwid" on;
  color: #1d1c1c;
  margin-bottom: 46px;
}
@media only screen and (min-width: 768px) {
  .home-heading {
    font-size: 24px;
    letter-spacing: 2.4px;
    margin-bottom: 50px;
  }
}

.home .home-section-more {
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 2px;
}

.home .home-muted {
  color: rgba(0, 0, 0, 0.65);
}

/* 共通：バッジ（NEW / PICKUP）
   .home-article-card__thumb に home-label--new / home-label--pickup クラスを付けるだけで表示 */
.home-article-card__thumb.home-label--new::before,
.home-article-card__thumb.home-label--pickup::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -8px;
  z-index: 3;
  width: 61px;
  height: 61px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .home-article-card__thumb.home-label--new::before,
  .home-article-card__thumb.home-label--pickup::before {
    left: 10px;
    top: -10px;
    width: 83px;
    height: 83px;
  }
}

.home-article-card__thumb.home-label--new::before {
  background-image: url("/images/kayanoya_mc/top/icon-new.png");
}

.home-article-card__thumb.home-label--pickup::before {
  background-image: url("/images/kayanoya_mc/top/icon-pickup.png");
}

/* 共通：ストレッチリンク（タグ等の別リンクを優先させる用） */
.home-stretched {
  position: relative;
}

.home-stretched__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.home-stretched__above {
  position: relative;
  z-index: 3;
}

.home-header-notice {
  text-align: center;
  padding: 20px 0 0;
}
@media only screen and (min-width: 768px) {
  .home-header-notice {
    padding: 29px 0 0;
  }
}

.home-header-notice__link {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 0.05em;
  display: block;
}
@media only screen and (min-width: 768px) {
  .home-header-notice__link {
    font-size: 13px;
    text-underline-offset: 9px;
    text-decoration: underline;
    text-decoration-color: #D0D0D0;
  }
  .home-header-notice__link:hover {
    opacity: 0.8;
  }
}

/* =========================================================
  2) MVブロック（Swiper）
========================================================= */
.home-mv {
  background: #ecebe7;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .home-mv {
    padding-top: 32px;
  }
}

.home-mv__inner {
  width: 100%;
  overflow: hidden;
}

.home-mv__slider-wrap {
  position: relative;
}

.home-mv__slider {
  position: relative;
}

.home-mv .swiper {
  overflow: visible;
  height: auto !important;
}

.home-mv .swiper-wrapper {
  align-items: stretch;
  height: auto !important;
}

.home-mv .swiper-slide {
  height: auto;
  width: 89.7435897436%;
}
@media only screen and (min-width: 768px) {
  .home-mv .swiper-slide {
    width: min(900px, 100vw - 500px);
  }
}

.home-mv__link {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: opacity 0.3s ease;
  aspect-ratio: 350/520;
}
.home-mv__link:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 768px) {
  .home-mv__link {
    aspect-ratio: 900/460;
    max-height: 460px;
    max-width: 900px;
    margin: 0 auto;
  }
}

.home-mv__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-mv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-mv__text {
  position: absolute;
  left: 20px;
  bottom: 17px;
  right: 0;
  display: block;
  color: rgba(29, 28, 28, 0.85);
}
@media only screen and (min-width: 768px) {
  .home-mv__text {
    left: 30px;
    bottom: 24px;
  }
}

.home-mv__kicker {
  display: block;
  width: fit-content;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 15.4px */
  letter-spacing: 0.98px;
  background: rgb(255, 255, 255);
  padding: 6px 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .home-mv__kicker {
    font-size: 17px;
    line-height: 120%; /* 20.4px */
    letter-spacing: 1.19px;
    padding: 8px 13px;
    margin-bottom: 29px;
  }
}

.home-mv__title {
  display: inline;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.57px;
  background: rgb(255, 255, 255);
  padding: 10px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media only screen and (min-width: 768px) {
  .home-mv__title {
    font-size: 26px;
    line-height: 42px;
    padding: 13px 13px;
  }
}

.home-mv .home-mv__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  margin-top: 0;
  border-radius: 999px;
  background-color: rgba(29, 28, 28, 0.2);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  left: auto;
  right: auto;
}
.home-mv .home-mv__nav::after {
  display: none;
}
.home-mv .home-mv__nav svg {
  display: block;
  max-width: 18px;
  max-height: 18px;
  width: auto;
  height: auto;
  fill: #1d1c1c;
}
.home-mv .home-mv__nav:hover {
  background-color: rgba(29, 28, 28, 0.4);
}
.home-mv .home-mv__nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .home-mv .home-mv__nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.home-mv .swiper-slide:not(.swiper-slide-active) {
  pointer-events: none;
}

.home-mv .swiper-slide.swiper-slide-active {
  pointer-events: auto;
}

@media only screen and (min-width: 768px) {
  .home-mv .home-mv__nav--prev {
    left: calc((100% - min(900px, 100vw - 500px)) / 2 - 45px - 44px);
    right: auto;
  }
}

@media only screen and (min-width: 768px) {
  .home-mv .home-mv__nav--next {
    right: calc((100% - min(900px, 100vw - 500px)) / 2 - 45px - 44px);
    left: auto;
  }
}

.home-mv__pagination {
  position: static !important;
  margin-top: 14px;
  text-align: center;
}

.home-mv .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  border-radius: 0;
  opacity: 1;
  background: #D4D3CE;
  margin: 0 4px !important;
}

.home-mv .swiper-pagination-bullet-active {
  background: #1D1C1C;
}

/* =========================================================
  3) 商品カテゴリーブロック
  - 初期表示：PC 12 / SP 6（CSSで制御）
  - “すべてのカテゴリを見る”で展開（JSで .is-open 付与想定）
========================================================= */
.home-category {
  background: #ECEBE8;
  padding-top: 33px;
  padding-bottom: 60px;
}
@media (min-width: 1044px) {
  .home-category {
    padding-bottom: 80px;
    padding-top: 100px;
  }
}

.home-category__inner {
  width: 100%;
  max-width: 354px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1044px) {
  .home-category__inner {
    max-width: 1044px;
  }
}

.home-category__panel {
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: -8px;
  padding-left: 8px;
}

.home-category__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 3px;
  padding: 0;
}
@media (min-width: 1044px) {
  .home-category__list {
    grid-template-columns: repeat(6, 160px);
    gap: 70px 15px;
    padding: 10px 10px 0;
  }
}

.home-category__item {
  list-style: none;
}

/* カテゴリカード（imgタグ前提） */
.home-category-card {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 8px;
  transition: opacity 0.3s ease;
}
.home-category-card:hover {
  opacity: 0.8;
}

.home-category-card__media {
  position: relative;
  width: 100%;
}

.home-category-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.home-category-card__label {
  margin-top: 15px;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.35;
}
@media (min-width: 1044px) {
  .home-category-card__label {
    font-size: 16px;
    margin-top: 24px;
  }
}

.home-category-card__media.home-category-badge--no1::before, .home-category-card__media.home-category-badge--no2::before, .home-category-card__media.home-category-badge--net::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  z-index: 3;
  width: 44px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1044px) {
  .home-category-card__media.home-category-badge--no1::before, .home-category-card__media.home-category-badge--no2::before, .home-category-card__media.home-category-badge--net::before {
    width: 56px;
    height: 56px;
    left: -8px;
    top: -8px;
  }
}
.home-category-card__media.home-category-badge--no1::before {
  background-image: url("/images/kayanoya_mc/top/icon-no1.png");
}
.home-category-card__media.home-category-badge--no2::before {
  background-image: url("/images/kayanoya_mc/top/icon-no2.png");
}
.home-category-card__media.home-category-badge--net::before {
  background-image: url("/images/kayanoya_mc/top/icon-limited.png");
}

/* 「すべてのカテゴリを見る / 閉じる」トグル */
.home-category__toggle {
  appearance: none;
  border: none;
  background: transparent;
  color: #1D1C1C;
  text-align: center;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 16px;
  transition: opacity 0.3s ease;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  padding: 0 0 4px 0;
  cursor: pointer;
  border-bottom: 1px solid #1D1C1C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 46px auto 0 auto;
}
@media (min-width: 1044px) {
  .home-category__toggle {
    margin-top: 80px;
  }
}

.home-category__toggle:hover {
  opacity: 0.8;
}

.home-category__toggle-text--close {
  display: none;
}

.home-category.is-open .home-category__toggle-text--open {
  display: none;
}

.home-category.is-open .home-category__toggle-text--close {
  display: inline;
}

.home-category__toggle-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  transition: transform 200ms ease;
}

.home-category__toggle-svg--pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .home-category__toggle-svg--sp {
    display: none;
  }
  .home-category__toggle-svg--pc {
    display: block;
  }
}
.home-category.is-open .home-category__toggle-icon {
  transform: rotate(180deg);
}

/* =========================================================
  4) ランキングブロック
  - 「寒くなってきたら食べたいお鍋」と「だし」
  - 商品カードは content-product-card を参照（評価/カート/価格/ストレッチリンク）
========================================================= */
.home-ranking {
  background: #F3F2EE;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .home-ranking {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.home-ranking .home-section-head {
  justify-content: center;
}

.home-ranking__inner {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home-ranking__inner {
    max-width: 1300px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1300px) {
  .home-ranking__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.home-ranking__sections {
  display: grid;
  gap: 34px;
}
@media only screen and (min-width: 768px) {
  .home-ranking__sections {
    gap: 40px;
  }
}

.home-ranking-group + .home-ranking-group {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .home-ranking-group + .home-ranking-group {
    margin-top: 100px;
  }
}

.home-ranking-group__title {
  color: #1D1C1C;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D0D0D0;
}
@media only screen and (min-width: 768px) {
  .home-ranking-group__title {
    padding-bottom: 5px;
    margin-bottom: 43px;
  }
}

.home-ranking-card__rank {
  position: absolute;
  left: 7px;
  top: -2px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 32px;
  box-sizing: border-box;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.54px;
  padding-bottom: 6px;
}
.home-ranking-card__rank::before {
  content: counter(ranking);
}
@media only screen and (min-width: 768px) {
  .home-ranking-card__rank {
    left: 10px;
    width: 30px;
    height: 40px;
    font-size: 20px;
    letter-spacing: 0.6px;
  }
}

.home-ranking__item:nth-child(1) .home-ranking-card__rank {
  background-image: url("/images/kayanoya_mc/top/bg_rank1.png");
}

.home-ranking__item:nth-child(2) .home-ranking-card__rank {
  background-image: url("/images/kayanoya_mc/top/bg_rank2.png");
}

.home-ranking__item:nth-child(3) .home-ranking-card__rank {
  background-image: url("/images/kayanoya_mc/top/bg_rank3.png");
}

.home-ranking__item:nth-child(4) .home-ranking-card__rank {
  background-image: url("/images/kayanoya_mc/top/bg_rank4.png");
}
@media only screen and (min-width: 768px) {
  .home-ranking__item:nth-child(4) .home-ranking-card__rank {
    color: #1d1c1c;
  }
}

.home-ranking__item:nth-child(5) .home-ranking-card__rank {
  background-image: url("/images/kayanoya_mc/top/bg_rank5.png");
}
@media only screen and (min-width: 768px) {
  .home-ranking__item:nth-child(5) .home-ranking-card__rank {
    color: #1d1c1c;
  }
}

.home-ranking__item:nth-child(6) .home-ranking-card__rank {
  background-image: url("/images/kayanoya_mc/top/bg_rank6.png");
}
@media only screen and (min-width: 768px) {
  .home-ranking__item:nth-child(6) .home-ranking-card__rank {
    color: #1d1c1c;
  }
}

.home-ranking__swiper {
  overflow-x: clip;
  overflow-y: visible;
  margin-right: -18px;
}
@media only screen and (min-width: 768px) {
  .home-ranking__swiper {
    padding: 0;
    overflow: visible;
    margin-right: 0;
  }
}

.home-ranking__list {
  counter-reset: ranking;
}
@media only screen and (min-width: 768px) {
  .home-ranking__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0 20px;
  }
}

@media only screen and (min-width: 768px) {
  .home-ranking__list.swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0 20px;
    transform: none !important;
    width: 100% !important;
    flex-wrap: wrap;
  }
}
.home-ranking__item {
  counter-increment: ranking;
}
@media only screen and (min-width: 768px) {
  .home-ranking__item {
    width: auto !important;
    margin-right: 0 !important;
    min-width: 0;
  }
}

/* ランキング内の product card（homeスコープで安全に） */
.home-ranking .content-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  height: 100%;
  transition: opacity 0.3s ease;
}
.home-ranking .content-product-card:hover {
  opacity: 0.8;
}

.home-ranking .content-product-card__media {
  position: relative;
  background: #fff;
  overflow: visible;
}

.home-ranking .content-product-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 200/267;
  object-fit: cover;
}

.home-ranking .content-product-card__favorite {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
}

.home-ranking .content-product-card__favorite:hover {
  opacity: 0.8;
}

.home-ranking .content-product-card__info {
  padding-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-ranking .content-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.home-ranking .content-product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.home-ranking .content-product-card__name {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.home-ranking .content-product-card__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 12px 12px;
  align-items: center;
  margin-top: auto;
}

/* 評価（★のみ） */
.home-ranking .content-product-card__rating {
  grid-column: 1/2;
  grid-row: 1/2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}

.home-ranking .content-product-card__stars {
  --rating: 0;
  position: relative;
  display: inline-block;
  line-height: 1;
  letter-spacing: 2px;
  font-size: 13px;
}

.home-ranking .content-product-card__stars::before {
  content: "★★★★★";
  color: rgba(0, 0, 0, 0.18);
}

.home-ranking .content-product-card__stars::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  color: #d4a200;
}

/* カート */
.home-ranking .content-product-card__cart {
  grid-column: 2/3;
  grid-row: 1/3;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.home-ranking .content-product-card__cart img {
  width: 50px;
  height: 50px;
  transition: opacity 0.25s ease;
}

.home-ranking .content-product-card__cart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/common_mc/btn-cart_ov.svg") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.home-ranking .content-product-card__cart:hover img {
  opacity: 0;
}

.home-ranking .content-product-card__cart:hover::after {
  opacity: 1;
}

/* 価格 */
.home-ranking .content-product-card__price {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.home-ranking .content-product-card__tax {
  font-size: 10px;
  margin-left: 2px;
  opacity: 0.8;
}

/* ストレッチリンク */
.home-ranking .content-product-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home-ranking .content-product-card__favorite,
.home-ranking .content-product-card__cart {
  position: relative;
  z-index: 4;
}

/* =========================================================
  5) 記事エリアブロック（A / B / C / D）
  - HTMLクラス: home-articles-area, home-articles-area--a 等
  - A: メイン4件グリッド
  - B: 左2件＋右大1件 ＋ 下3件
  - C: 2件均等
  - D: リスト型（横並びカード）
========================================================= */
.home-articles {
  background: #ecebe7;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .home-articles {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.home-articles-area + .home-articles-area {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .home-articles-area + .home-articles-area {
    margin-top: 60px;
  }
}

.home-articles-area__inner {
  width: 100%;
  max-width: 1380px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home-articles-area__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.home-article {
  list-style: none;
}

.home-article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: opacity 0.3s ease;
}
.home-article-card:hover {
  opacity: 0.8;
}

.home-article-card__thumb {
  position: relative;
}

.home-article-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.home-article-card__titles {
  position: absolute;
  right: 0;
  top: 18px;
  z-index: 3;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
}
@media only screen and (min-width: 768px) {
  .home-article-card__titles {
    top: 22px;
    padding: 20px 30px;
  }
}

.home-article-card__title-category {
  display: block;
  color: #414141;
  font-feature-settings: "halt" on, "pwid" on, "palt" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.88px;
}
@media only screen and (min-width: 768px) {
  .home-article-card__title-category {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
  }
}

.home-article-card__title-rich {
  display: block;
  color: #1D1C1C;
  font-feature-settings: "halt" on, "pwid" on, "palt" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 1.28px;
}
@media only screen and (min-width: 768px) {
  .home-article-card__title-rich {
    font-feature-settings: "halt" on, "pwid" on;
    font-size: 21px;
  }
}

.home-article-card__body {
  padding: 16px 0 0;
}
@media only screen and (min-width: 768px) {
  .home-article-card__body {
    padding: 24px 0 0;
  }
}

.home-article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.home-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 86px;
  height: 26px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 12px */
  letter-spacing: 0.36px;
  color: #1D1C1C;
  border: 1px solid #A0A0A0;
  border-radius: 999px;
}

.home-type__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2px;
}
.home-type__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-type--read .home-type__icon {
  width: 17px;
  height: auto;
}

.home-type--shop .home-type__icon {
  width: 17px;
  height: auto;
}

.home-type--recipe .home-type__icon {
  width: 17px;
  height: auto;
}

.home-type--listen .home-type__icon {
  width: 17px;
  height: auto;
}

.home-type--gift .home-type__icon {
  width: 17px;
  height: auto;
}

.home-article-card__date {
  font-size: 13px;
  font-style: normal;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 100%; /* 13px */
  letter-spacing: 0.7px;
}

.home-article-card__title {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .home-article-card__title {
    font-size: 17px;
  }
}

.home-article-card__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #414141;
}
@media only screen and (min-width: 768px) {
  .home-article-card__text {
    font-size: 14px;
  }
}

.home-article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .home-article-card__tags {
    margin-top: 14px;
  }
}

.home-article-card__tag-item {
  list-style: none;
}

.home-article-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.65);
  position: relative;
  z-index: 4;
  transition: opacity 0.3s ease;
}

.home-article-card__tag:hover {
  opacity: 0.8;
}

.home-article-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home-articles-area__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
  column-gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .home-articles-area__list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .home-article--2col {
    grid-column: span 2;
  }
}

@media only screen and (min-width: 768px) {
  .home-article--2row {
    grid-row: span 2;
  }
}
.home-article--2row .home-article-card {
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .home-article--2row .home-article-card__thumb {
    flex: 1;
  }
}
@media only screen and (min-width: 768px) {
  .home-article--2row .home-article-card__thumb img {
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (min-width: 768px) {
  .home-article--col-right {
    grid-column: 3/5;
  }
}

@media only screen and (min-width: 768px) {
  .home-articles-area--a .home-articles-area__list {
    grid-template-columns: 1fr 1fr;
  }
}

.home-articles-area--a .home-articles-area__col-left,
.home-articles-area--a .home-articles-area__col-right {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .home-articles-area--a .home-articles-area__col-left,
  .home-articles-area--a .home-articles-area__col-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}

.home-articles-area--a .home-articles-area__col-left > .home-article:first-child {
  order: 1;
}

.home-articles-area--a .home-articles-area__col-right > .home-article {
  order: 2;
}

.home-articles-area--a .home-articles-area__col-left > .home-article:last-child {
  order: 3;
}

.home-articles-area__col-right-smalls {
  order: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media only screen and (min-width: 768px) {
  .home-articles-area__col-right-smalls {
    gap: 40px;
  }
}

.home-articles-area--b .home-articles-area__list {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 768px) {
  .home-articles-area--b .home-articles-area__list {
    grid-template-columns: 1fr 1fr;
  }
}

.home-articles-area--b .home-articles-area__col-left {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .home-articles-area--b .home-articles-area__col-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 24px;
    align-content: start;
  }
}

.home-articles-area--b .home-articles-area__col-right {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .home-articles-area--b .home-articles-area__col-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.home-articles-area--b .home-articles-area__col-right > .home-article {
  grid-column: 1/3;
}
@media only screen and (min-width: 768px) {
  .home-articles-area--b .home-articles-area__col-right > .home-article {
    grid-column: auto;
  }
}

@media only screen and (min-width: 768px) {
  .home-articles-area--c .home-articles-area__list {
    grid-template-columns: 1fr 1fr;
  }
}

.home-articles-area--c .home-articles-area__col-left {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .home-articles-area--c .home-articles-area__col-left {
    display: flex;
    flex-direction: column;
  }
}

.home-articles-area--c .home-articles-area__col-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media only screen and (min-width: 768px) {
  .home-articles-area--c .home-articles-area__col-right {
    gap: 40px;
  }
}

.home-article--dark .home-article-card {
  background: #2B394C;
  padding: 15px;
}
@media only screen and (min-width: 768px) {
  .home-article--dark .home-article-card {
    padding: 20px;
  }
}
.home-article--dark .home-article-card__thumb.home-label--new::before,
.home-article--dark .home-article-card__thumb.home-label--pickup::before {
  top: -23px;
  left: -7px;
}
@media only screen and (min-width: 768px) {
  .home-article--dark .home-article-card__thumb.home-label--new::before,
  .home-article--dark .home-article-card__thumb.home-label--pickup::before {
    top: -30px;
    left: -10px;
  }
}
.home-article--dark .home-article-card__body {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .home-article--dark .home-article-card__body {
    padding: 20px 0 0 0;
  }
}
.home-article--dark .home-article-card__title {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .home-article--dark .home-article-card__title {
    font-size: 18px;
  }
}
.home-article--dark .home-article-card__text {
  color: #fff;
}
.home-article--dark .home-article-card__tag {
  color: rgba(255, 255, 255, 0.75);
}
@media only screen and (min-width: 768px) {
  .home-article--dark .home-article-card__date {
    color: rgba(255, 255, 255, 0.65);
  }
}
.home-article--dark .home-type {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .home-article--dark .home-type {
    color: #fff;
    border-color: #A0A0A0;
  }
}

.home-articles-area__heading {
  color: #1D1C1C;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
  padding-bottom: 5px;
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .home-articles-area__heading {
    margin-bottom: 40px;
  }
}

.home-article-row {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  transition: opacity 0.3s ease;
}
.home-article-row:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 768px) {
  .home-article-row {
    grid-template-columns: 160px 1fr;
    gap: 20px;
  }
}

.home-article-row__thumb {
  overflow: hidden;
}

.home-article-row__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}

.home-article-row__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-article-row__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.home-article-row__title {
  color: #1D1C1C;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 12px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .home-article-row__title {
    font-size: 17px;
  }
}

.home-article-row__text {
  overflow: hidden;
  color: #1D1C1C;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #414141;
}
@media only screen and (min-width: 768px) {
  .home-article-row__text {
    font-size: 14px;
  }
}

.home-article-row__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home-articles-area__cta {
  display: flex;
  justify-content: center;
  padding-top: 122px;
  position: relative;
}
.home-articles-area__cta::before {
  content: "";
  width: 1px;
  height: 66px;
  background-color: #D0D0D0;
  position: absolute;
  left: 50%;
  top: 40px;
}
@media only screen and (min-width: 768px) {
  .home-articles-area__cta::before {
    top: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .home-articles-area__cta {
    padding-top: 186px;
  }
}

.home-articles-area__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 52px;
  padding: 18px 0;
  border-radius: 5px;
  border: 1px solid #A0A0A0;
  color: #1D1C1C;
  text-align: center;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  transition: background-color 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .home-articles-area__btn {
    min-width: 320px;
    min-height: 56px;
    font-size: 15px;
  }
}
.home-articles-area__btn:hover {
  background-color: #D5D2CA;
}

/* =========================================================
  6) お試しセットブロック
========================================================= */
.home-trial {
  background: #F3F2EE;
  padding-top: 65px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .home-trial {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.home-trial__inner {
  width: 100%;
  max-width: 1300px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home-trial__inner {
    box-sizing: content-box;
  }
}

.home-trial__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) {
  .home-trial__head {
    gap: 28px;
    margin-bottom: 40px;
  }
}
.home-trial__head:not(:has(.home-trial__badge)) .home-trial__title,
.home-trial__head:not(:has(.home-trial__badge)) .home-trial__lead {
  text-align: center;
}

.home-trial__badge {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #2D476C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .home-trial__badge {
    width: 140px;
    height: 140px;
  }
}

.home-trial__badge-text {
  color: #fff;
  text-align: center;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.42px;
}
@media only screen and (min-width: 768px) {
  .home-trial__badge-text {
    font-size: 19px;
    letter-spacing: 0.57px;
  }
}

.home-trial__title {
  color: #1D1C1C;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) {
  .home-trial__title {
    color: #1D1C1C;
    font-feature-settings: "pwid" on;
    font-family: YakuHanMP, "Shippori Mincho", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 26.4px */
    letter-spacing: 2.4px;
    margin-bottom: 16px;
  }
}

.home-trial__lead {
  color: #1D1C1C;
  font-feature-settings: "halt" on, "pwid" on, "palt" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 768px) {
  .home-trial__lead {
    color: #1D1C1C;
    font-feature-settings: "halt" on, "palt" on;
    font-family: YakuHanMP, "Shippori Mincho", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 28.8px */
  }
}

.home-trial__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .home-trial__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.home-trial-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .home-trial-card {
    transition: opacity 0.5s;
  }
  .home-trial-card:hover {
    opacity: 0.8;
  }
}

.home-trial-card__thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.home-trial-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.home-trial-card__body {
  padding: 0 10px 20px;
  z-index: 2;
  position: relative;
}

.home-trial-card__title {
  display: inline-block;
  position: relative;
  z-index: 3;
  margin-top: -21px;
  margin-bottom: 16px;
  color: #1D1C1C;
  font-feature-settings: "halt" on, "pwid" on, "palt" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.8px;
  background-color: #fff;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  .home-trial-card__title {
    margin-bottom: 24px;
  }
}

.home-trial-card__text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 14px;
}

.home-trial-card__more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #1D1C1C;
}
.home-trial-card__more::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M0.773623 11.8578L5.86065 6.36184C5.95 6.26531 6 6.13584 6 6.00103C6 5.86623 5.95 5.73676 5.86065 5.64022L0.773621 0.142246C0.732003 0.0972285 0.682242 0.0614486 0.627277 0.0370173C0.572312 0.0125861 0.513257 -4.74008e-07 0.453597 -4.68792e-07C0.393937 -4.63577e-07 0.334881 0.0125861 0.279916 0.0370174C0.224951 0.0614486 0.175191 0.0972286 0.133572 0.142246C0.0479407 0.234561 -6.40583e-08 0.358496 -5.2776e-08 0.48755C-4.14938e-08 0.616604 0.0479407 0.740537 0.133572 0.832853L4.91726 6.00103L0.133573 11.1682C0.0482354 11.2604 0.000480121 11.3842 0.000480132 11.513C0.000480144 11.6418 0.0482354 11.7655 0.133573 11.8578C0.175192 11.9028 0.224952 11.9386 0.279917 11.963C0.334882 11.9874 0.393938 12 0.453598 12C0.513258 12 0.572313 11.9874 0.627278 11.963C0.682243 11.9386 0.732004 11.9028 0.773623 11.8578Z' fill='%231D1C1C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================================================
  7) 最近チェックした商品（Swiper想定）
========================================================= */
.home-recent {
  background: #ecebe7;
  padding: 60px 0;
}
@media only screen and (min-width: 768px) {
  .home-recent {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

.home-recent__inner {
  width: 100%;
  max-width: 988px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home-recent__inner {
    max-width: 1038px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.home-recent__link {
  display: block;
  transition: opacity 0.3s ease;
}
.home-recent__link:hover {
  opacity: 0.8;
}

.home-recent__slider {
  position: relative;
}

.home-recent .swiper {
  overflow: hidden;
  margin-right: -20px;
}
@media only screen and (min-width: 768px) {
  .home-recent .swiper {
    margin-right: 0;
  }
}

.home-recent .swiper-slide {
  width: 110px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .home-recent .swiper-slide {
    width: 148px;
  }
}

.home-recent__nav {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .home-recent__nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
  }
  .home-recent__nav svg {
    width: 10px;
    height: auto;
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .home-recent__nav--prev {
    left: -28px;
    transform: translateY(-50%) rotate(180deg);
  }
}

@media only screen and (min-width: 768px) {
  .home-recent__nav--next {
    right: -28px;
    transform: translateY(-50%);
  }
}

@media only screen and (min-width: 768px) {
  .home-recent__nav.swiper-button-disabled svg path {
    fill: #E0E0E0;
  }
}

.home-recent__title {
  margin-bottom: 37px;
}
@media only screen and (min-width: 768px) {
  .home-recent__title {
    margin-bottom: 38px;
  }
}

/* =========================================================
  8) お知らせブロック
========================================================= */
.home-news {
  background: #ecebe7;
  padding: 60px 0;
  border-top: solid 1px #D0D0D0;
}
@media only screen and (min-width: 768px) {
  .home-news {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}

.home-news__inner {
  width: 100%;
  max-width: 657px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home-news__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.home-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-news__item {
  border-bottom: 1px solid #D0D0D0;
}

.home-news__link {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: opacity 0.3s ease;
}

.home-news__date {
  width: 100px;
  flex-shrink: 0;
  color: #1D1C1C;
  font-feature-settings: "pwid" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

.home-news__title {
  overflow-wrap: break-word;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1D1C1C;
  font-feature-settings: "pwid" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

.home-news__link:hover {
  opacity: 0.8;
}

/* =========================================================
  9) 折々の会ブロック（最新HTMLに整合）
  - 背景画像：CSS
  - 左：リスト + CTA（__menu）
  - 右：文章（__copy） + ルビ（ruby）
========================================================= */
.home-oriori {
  position: relative;
  padding: 80px 0;
  background-image: url("/images/kayanoya_mc/top/oriori-sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .home-oriori {
    padding: 113px 0;
    background-image: url("/images/kayanoya_mc/top/oriori-pc.jpg");
  }
}

.home-oriori__inner {
  max-width: 1171px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  .home-oriori__inner {
    position: relative;
    box-sizing: border-box;
  }
}

.home-oriori__panel {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
@media only screen and (min-width: 768px) {
  .home-oriori__panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .home-oriori__panel {
    flex-direction: column;
  }
}

/* Left（PCで左側に表示するためorderで制御） */
.home-oriori__menu {
  width: 100%;
  max-width: 517px;
  padding: 28px 28px 24px;
  background: rgba(29, 28, 28, 0.6);
  color: #fff;
}
@media (max-width: 1150px) {
  .home-oriori__menu {
    max-width: none;
  }
}
@media only screen and (min-width: 768px) {
  .home-oriori__menu {
    order: -1;
  }
}
@media (max-width: 1000px) {
  .home-oriori__menu {
    order: 0;
  }
}
@media only screen and (min-width: 768px) {
  .home-oriori__menu {
    padding: 50px;
  }
}

.home-oriori__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: oriori-num;
}

.home-oriori__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0;
  row-gap: 6px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  counter-increment: oriori-num;
}
@media only screen and (min-width: 768px) {
  .home-oriori__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.home-oriori__item::before {
  content: counter(oriori-num);
  grid-column: 1/2;
  grid-row: 1/3;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
  color: #fff;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.96px;
}
@media only screen and (min-width: 768px) {
  .home-oriori__item::before {
    grid-row: auto;
    align-items: center;
    padding-top: 0;
    flex-shrink: 0;
  }
}

.home-oriori__item:first-child {
  border-top: none;
  padding-top: 0;
}

.home-oriori__item-title {
  grid-column: 2/3;
  grid-row: 1/2;
  color: #fff;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.54px;
}
@media only screen and (min-width: 768px) {
  .home-oriori__item-title {
    margin-left: 10px;
    font-size: 17px;
    letter-spacing: 0.51px;
    text-align: left;
  }
}

.home-oriori__item-sub {
  grid-column: 2/3;
  grid-row: 2/3;
  color: #fff;
  font-feature-settings: "halt" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.2px;
}
@media only screen and (min-width: 768px) {
  .home-oriori__item-sub {
    margin-left: 12px;
    flex-shrink: 0;
    text-align: left;
  }
}

.home-oriori__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 0;
  border: 1px solid #b4b2ac;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.48px;
  transition: all 500ms;
  background-color: rgba(255, 255, 255, 0);
}

.home-oriori__cta:hover,
.home-oriori__cta:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Right */
.home-oriori__copy {
  width: 100%;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .home-oriori__copy {
    max-width: 455px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.home-oriori__copy-furi {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.9;
}
@media only screen and (min-width: 768px) {
  .home-oriori__copy-furi {
    margin: 0 10px 0 0;
  }
}

.home-oriori__title {
  position: absolute;
  top: 42px;
  right: 38px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 32.627px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.979px;
}
@media only screen and (min-width: 768px) {
  .home-oriori__title {
    position: static;
    top: auto;
    right: auto;
    font-size: 39.319px;
    letter-spacing: 1.18px;
    margin: 0 0 0 51px;
    text-align: left;
  }
}

.home-oriori__ruby {
  -webkit-ruby-position: before;
  ruby-position: over;
  ruby-align: start;
}

.home-oriori__rt {
  color: #fff;
  text-align: center;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 13.983px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.419px;
}

.home-oriori__lead {
  margin: 0 0 16px 24px;
  color: #fff;
  font-feature-settings: "halt" on, "pwid" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
@media only screen and (min-width: 768px) {
  .home-oriori__lead {
    margin: 0 0 0 43px;
    font-feature-settings: "halt" on, "vrt2" on;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0.45px;
  }
}

.home-oriori__text {
  margin: 0 0 0 24px;
  color: #fff;
  font-feature-settings: "halt" on, "pwid" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
@media only screen and (min-width: 768px) {
  .home-oriori__text {
    margin: 0 0 0 20px;
    font-feature-settings: "halt" on, "vrt2" on;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0.45px;
  }
}

/* =========================================================
  10) インスタ、アプリブロック（最新HTMLに整合）
  - 各カード：全体クリック（__wrap）
========================================================= */
.home-social {
  background: #fff;
}

.home-social__inner {
  width: 100%;
  max-width: 1240px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home-social__inner {
    padding-top: clamp(60px, 13%, 160px);
    padding-bottom: clamp(60px, 13%, 160px);
  }
}
@media (min-width: 1320px) {
  .home-social__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.home-social__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .home-social__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 7%, 100px);
  }
}
@media (min-width: 1440px) {
  .home-social__grid {
    grid-template-columns: repeat(2, 570px);
    gap: 100px;
  }
}

.home-social-card {
  background: #fff;
  border-top: 1px solid #D0D0D0;
}
@media only screen and (min-width: 768px) {
  .home-social-card {
    border-top: none;
  }
}

.home-social-card:first-child {
  border-top: none;
}

.home-social-card__wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 26px;
  align-items: start;
  padding: 50px 30px;
  text-decoration: none;
  color: inherit;
}
@media only screen and (min-width: 768px) {
  .home-social-card__wrap {
    padding: 0;
    column-gap: 38px;
    transition: opacity 0.5s;
  }
  .home-social-card__wrap:hover {
    opacity: 0.8;
  }
}

.home-social-card__wrap:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

.home-social-card__icon {
  grid-column: 1;
  grid-row: 1/4;
  width: 50px;
}
.home-social-card__icon svg {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .home-social-card__icon {
    width: 100px;
  }
}

.home-social-card__icon--app {
  width: 48px;
}
@media only screen and (min-width: 768px) {
  .home-social-card__icon--app {
    width: 100px;
  }
}

.home-social-card__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 14px;
  color: #1D1C1C;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.6px;
}
@media only screen and (min-width: 768px) {
  .home-social-card__title {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.66px;
    margin-bottom: 24px;
  }
}

.home-social-card__text {
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 20px;
  color: #1D1C1C;
  font-feature-settings: "pwid" on, "palt" on;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
}
@media only screen and (min-width: 768px) {
  .home-social-card__text {
    margin-bottom: 16px;
  }
}

.home-social-card__link {
  grid-column: 2;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1D1C1C;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
  transition: opacity 0.3s ease;
}

.home-social-card__link::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M0.773623 11.8578L5.86065 6.36184C5.95 6.26531 6 6.13584 6 6.00103C6 5.86623 5.95 5.73676 5.86065 5.64022L0.773621 0.142246C0.732002 0.0972287 0.682242 0.0614485 0.627277 0.0370173C0.572312 0.0125862 0.513257 -4.74008e-07 0.453597 -4.68792e-07C0.393937 -4.63577e-07 0.334881 0.0125862 0.279916 0.0370174C0.224951 0.0614485 0.175191 0.0972287 0.133572 0.142246C0.0479405 0.234562 -6.40583e-08 0.358496 -5.2776e-08 0.48755C-4.14938e-08 0.616605 0.0479405 0.740537 0.133572 0.832853L4.91726 6.00103L0.133573 11.1682C0.0482352 11.2604 0.000480121 11.3842 0.000480132 11.513C0.000480144 11.6418 0.0482353 11.7655 0.133573 11.8578C0.175192 11.9028 0.224952 11.9386 0.279917 11.963C0.334882 11.9874 0.393938 12 0.453598 12C0.513258 12 0.572313 11.9874 0.627278 11.963C0.682243 11.9386 0.732003 11.9028 0.773623 11.8578Z' fill='%231D1C1C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*# sourceMappingURL=style.css.map */
