// カレンダー
.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%;
  }
.col-pc-4.col-sp-12.order-sp-2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}
}
@media (max-width:767px){
 #main .conceptCus.conceptC.conceptC__bg {
    background: url(https://img21.shop-pro.jp/PA01497/005/etc_base64/c2VjMDVfYmdfc3A.png)!important;
    background-position: bottom!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    height: auto!important;
    padding-top: 120%;
} 
}

@media (max-width: 991px){
  .col-pc-4.col-sp-12.order-sp-2 img {
height:auto!important;
}
}

/******************************/
/* FEATURES */
/******************************/
.p-features {
  margin-top: 80px;
  padding-bottom: 60px;
}
.p-features-list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
  list-style: none;       /* ← リストマーカー非表示 */
  padding-left: 0;         /* ← 左側余白なし */
  margin: 0;               /* ← マージンリセット */
}
@media screen and (max-width: 1030px) {
  .p-features-list {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
    width: max-content;     /* ← 横スクロール対応 */
  }
}
.p-features-list__item {
  box-sizing: border-box;
  margin-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
  width: 33.333%;
}
@media screen and (max-width: 1030px) {
  .p-features-list__item {
    margin-right: 5px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 300px;
    flex: 0 0 auto;       /* ← 横並び維持 */
  }
}
.p-features-list__in {
  box-sizing: border-box;
  position: relative;
}
.p-features-list__in:before {
  content: "";
  position: absolute;
  top: 150px;
  bottom: 30px;
  right: 10px;
  left: 10px;
  z-index: -1;
  background: transparent;
  transform: scaleY(2.3) perspective(0.6em) rotateX(2deg);
  transform-origin: bottom;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1030px) {
  .p-features-list__in:before {
    top: 150px;
    bottom: 30px;
    right: 15px;
    left: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  }
}
.p-features-list__in:hover:before {
  content: "";
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.p-features-list__in:hover .p-features-list__img img {
  transform: scale(1.05, 1.05);
}
.p-features-list__img {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-features-list__img img {
  width: 100%;
  transform: scale(1, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-features-list__txt {
  box-sizing: border-box;
  padding: 30px;
  background: #ffffff;
}
@media screen and (max-width: 1030px) {
  .p-features-list__txt {
    padding: 30px 20px;
    width: 300px;
  }
}
.p-features-list__ttl {
  font-weight: bold;
}
.p-features-list__body {
  color: #909090;
}
@media screen and (max-width: 1030px) {
  .p-features-list__body {
    white-space: initial;
  }
}

/******************************/
/* 横スクロール対応 */
/******************************/
.u-overflow-slide {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 1030px) {
  .p-features-list__in:before {
    top: 150px;
    bottom: 30px;
    right: 15px;
    left: 15px;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); ←削除またはコメントアウト */
    box-shadow: none; /* ← 影を完全に消すならこちら */
    background: transparent; /* 念のため背景も透明に */
  }
}

/******************************/
/* 画像にテキスト追加 */
/******************************/
.p-features-list__img {
  position: relative;
  overflow: hidden;
}

.p-features-list__img img {
  display: block;
  width: 100%;
  filter: brightness(90%); /* ← 画像を暗くする */
  transition: filter 0.3s ease;
}

.p-features-list__img:hover img {
  filter: brightness(100%); /* ホバーで元に戻す（任意） */
}

.p-features-list__caption {
  position: absolute;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

/* PCでは中央 */
@media screen and (min-width: 769px) {
  .p-features-list__caption {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* スマホでは下に */
@media screen and (max-width: 768px) {
  .p-features-list__caption {
    bottom: 30px;
    top: auto;
    transform: translateX(-50%);
    font-size: 14px;
  }
}

/* Sauceロゴ非表示 */
.snpt-wdgt--liveig [class*="snpt-credit"],
.snpt-wdgt--liveig svg,
.snpt-wdgt--liveig a[href*="addsauce.com"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ポップアップ内のロゴも消すぞ！ */
[class*="snpt-"] svg,
[class*="snpt-"] a[href*="addsauce.com"],
[class*="snpt-"] [class*="credit"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}
