@charset "UTF-8";
/* base
------------------------------*/
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
}

html {
  font-size: 62.5%;
  line-height: 1.8;
  height: 100%;
  word-break: break-word;
  background-color: var(--color-base);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }
}

/* slider */
[class*=swiper]:focus {
  outline: none;
}
.card05 img {
  border: 0;
  margin: 0;
  width:100%;
  height:auto;
}

.card05 a {
  text-decoration: none;
  color: #333;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card05 {
  overflow: hidden;
  padding:12px 0;
  margin:0;
}
.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: 36rem;
  border-radius: 4px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
@media only screen and (max-width: 599px) {
  .card05 .slide {
    width: 24rem;
  }
}
@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(-16px);
            transform: translateY(-16px);
    -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: 62.5%;
}
.card05 .slide-media img {
  height: calc(100% + 10px);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.card05 .slide-content {
  padding: 3.2rem;
}
.card05 .slide-date {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: var(--color-theme);
}

@media only screen and (min-width: 1025px) {
  .card05 .swiper:hover .slide:not(:hover) {
    opacity: 0.3;
  }
}
