// カレンダー
.tbl_calendar {
  border: none !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}
.tbl_calendar th, .tbl_calendar td {
  padding: 4px !important;
  text-align: center !important;
  border-bottom: 1px solid #ccc !important;
}

.mainCalendar {
  display: flex;
  justify-content: space-between;
}
.mainCalendar table.tbl_calendar {
    max-width: calc(50% - 30px);
}
.mainCalendar table.tbl_calendar caption{
  font-weight: bold;
    margin: 0px auto 15px;
    font-size: 18px;
}
@media (max-width: 991px) {
  .mainCalendar {
    display: block;
  }
  .mainCalendar table.tbl_calendar {
      max-width: 100%;
  }
}
.sec_price .container .cateList .hasChildren--click > a {
    border: 1px solid #DFDFDF;
}
section.sec_search {
  background: url('https://img21.shop-pro.jp/PA01490/013/etc/sakuhin2.jpg') !important;
}
@media (max-width: 767px) {
  section.sec_search {
    background: url('https://img21.shop-pro.jp/PA01490/013/etc/sakuhin2.jpg') !important;
  }
}

.sec_search .h2C small{
    color: #8b8d8f; 
}
.itemList--ranking.ranking--typeC .itemList__unit {
    margin-bottom: 50px;
}

.newsList__body {
    overflow: hidden;
    height: 200px;
    overflow-y: scroll;
}
.slick-dotted.slick-slider {
    list-style: none;
}

.custom-banner-grid {
    display: flex;
    flex-wrap: wrap;       /* 折り返しを許可 */
    gap: 15px;             /* バナー間の隙間 */
    margin: 80px auto;     /* 上下の余白 */
    padding: 0 10px;
    max-width: 1200px;     /* サイトの幅に合わせる */
}

/* 各バナーの設定（PC版：4枚並び） */
.custom-banner-grid .banner-item {
    flex: 1 1 calc(25% - 15px); /* 4枚並び（隙間分を引く） */
    text-decoration: none;
}

.custom-banner-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;    /* サイトの雰囲気に合わせた緩い角丸 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 軽い影で浮き立たせる */
    transition: transform 0.3s ease;
}

/* ホバー時の動き */
.custom-banner-grid img:hover {
    transform: translateY(-5px); /* 少し上に浮く演出 */
    opacity: 0.9;
}
/* スマホ版の設定（画面幅が768px以下のとき：2枚並び） */
@media (max-width: 768px) {
    .custom-banner-grid .banner-item {
        flex: 1 1 calc(50% - 15px); /* 2枚並び */
    }
}