@charset "UTF-8";

/* design
------------------------------*/
.card05 {
  /* コンテナ */
  overflow: hidden;
  /* スライド */
  /* スライド ホバー時 */
}
.card05 .swiper {
  overflow: visible;
}
.card05 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.card05 .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.card05 .slide {
  overflow: hidden;
  width: 25rem;/* 画像サイズ */
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
@media only screen and (max-width: 599px) {
  .card05 .slide {
    width: 17rem;/* 画像サイズ */
  }
}
@media only screen and (min-width: 1025px) {
  .card05 .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card05 .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card05 .slide:hover {/* ホバーした時の上へアップする */
    -webkit-transform: translateY(-0px);
            transform: translateY(-0px);
    -webkit-box-shadow: var(--box-shadow-hover);
            box-shadow: var(--box-shadow-hover);
  }
  .card05 .slide:hover img {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.card05 .slide-media {
  padding-top: 150%;/* 62.5%  縦横比 */
}
.card05 .slide-media img {/* ホバーした時の見える箇所の調整 */
  /* height: calc(100% + 16px); */
  /* -webkit-transform: translateY(-16px); */
          /* transform: translateY(-16px); */
}
.card05 .slide-content {
	padding: 1rem 2.5rem 2.2rem;/* img の下の padding 調整 */
	backgraoud-color: white;
}
@media only screen and (max-width: 599px) {
  .card05 .slide-content {
  padding: 1.2rem;/* img の下の padding 調整 */
  }
}
.card05 .slide-date {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1.1rem;
  display: block;
  /* color: var(--color-theme); */
  color: black;
}
.card05 .slide-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 1.5em;
  margin-top: 0.8rem;
}
@media only screen and (min-width: 1025px) {/*ホバーした時の透明度*/
  .card05 .swiper:hover .slide:not(:hover) {
    opacity: 0.88;
  }
}




