/* ========================================
  共通（スマホ・PC 共通）
======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}


/* もっと見る・全て見る */
.motto-miru a {
  display: block;
  padding: 20px 0 10px;
  color: #516354;
  text-decoration: none;
  text-align: center;
}

.js-display-button {
  display: block;
  width: 100%;
  padding: 5px;
  background: #fff;
  color: #516354;
  border: 0;
}

/* Slick スライド内のカード共通 */
.slick-slide {
  box-sizing: border-box;
  margin: 0 5px;
}
.slick-slide img {
  box-sizing: border-box;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* 新着/おすすめのカード（タイル） */
.c-item-list__item_top {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 25px;
  width: 16.65%; /* PC基準: 6列 */
  transition: opacity 0.2s;
  word-break: break-all;
}
.c-item-list__item_top.is-hidden {
  display: none;
}

/* インフォメーション */
.p-information {
  padding-bottom: 0;
}
.p-information__body {
  margin-left: 0;
  margin-right: 0;
  line-height: 2;
}

/* フリーページ枠 */
.p-free__body {
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}

/* トピック共通ラッパー */
.topic-container {
  box-sizing: border-box;
  position: relative;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}


/* ========================================
  スマホ（max-width: 648px）
======================================== */
@media (max-width: 648px) {
  /* 新着/おすすめのカード（3列） */
  .c-item-list__item_top {
    padding-left: 5px;
    padding-right: 5px;
    width: 33.3%;
  }

  /* インフォメーション余白 */
  .p-information {
    padding-bottom: 45px;
  }
  .p-free__body {
    margin-left: 0;
    margin-right: 0;
  }
}
/* ========================================
上部お知らせバナー
======================================== */
.top-notice-banner {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px 0;
}

.top-notice-banner a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  min-height: 54px;
  margin: 0 auto;
  padding: 12px 24px;
  background: #516354;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
}

.top-notice-banner a:hover {
  background: #5d7060;
}

.top-notice-banner a:active {
  opacity: 0.75;
}

.top-notice-banner__main {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.top-notice-banner__sub {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

/* スマホ */
@media (max-width: 648px) {
  .top-notice-banner {
    padding: 0;
  }

  .top-notice-banner a {
    display: block;
    min-height: 0;
    padding: 12px 14px;
  }

  .top-notice-banner__main,
  .top-notice-banner__sub {
    display: block;
  }

  .top-notice-banner__main {
    font-size: 15px;
    line-height: 1.5;
  }

  .top-notice-banner__sub {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.5;
  }
