@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;800&display=swap");
* {
  font-family: "M PLUS 1p", sans-serif;
}

.use-case-section {
  padding-top: 8vw;
  position: relative;
  z-index: 1;
  padding-bottom: 5.55vw;
  margin-bottom: 6.25vw;
  background-color: rgba(122, 210, 212, 0.2);
}
@media screen and (max-width: 900px) {
  .use-case-section {
    padding-top: 15%;
    padding-bottom: 25%;
  }
}
.use-case-section .inner .ttl {
  width: 385px;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .ttl {
    width: 38.66%;
  }
}
.use-case-section .inner .ttl img {
  width: 100%;
}
.use-case-section .inner .sub-ttl {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 85px;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .sub-ttl {
    font-size: 4vw;
    margin-top: 5%;
    margin-bottom: 15%;
  }
}
.use-case-section .inner .splide.splide-upper {
  margin-bottom: 2.77vw;
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide.splide-upper {
    margin-bottom: 7vw;
  }
}
.use-case-section .inner .splide.splide-upper li {
  flex-direction: row-reverse;
  text-align: left;
}
.use-case-section .inner .splide.splide-middle {
  margin-bottom: 7vw;
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide.splide-lower li {
    flex-direction: row-reverse;
    text-align: left;
  }
}
.use-case-section .inner .splide .splide__list {
  will-change: transform;
}
.use-case-section .inner .splide ul li {
  cursor: pointer;
  overflow: clip;
  width: 41%;
  min-width: 600px;
  aspect-ratio: 600/220;
  background-color: white;
  border-radius: 30px;
  border: none !important;
}
@media screen and (min-width: 901px) {
  .use-case-section .inner .splide ul li:hover .detail-btn {
    background-image: url("../img/top/detail_btn_hover.svg") !important;
  }
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide ul li {
    min-width: 300px;
    aspect-ratio: 300/120;
    width: 80%;
    border-radius: 20px;
  }
}
.use-case-section .inner .splide ul li * {
  pointer-events: none;
}
.use-case-section .inner .splide ul li .thumb {
  width: 46%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide ul li .thumb {
    width: 43%;
  }
}
.use-case-section .inner .splide ul li .right {
  width: 54%;
  position: relative;
  padding: 3.2vw 2vw;
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide ul li .right {
    width: 57%;
    padding: 4vw;
  }
}
.use-case-section .inner .splide ul li .right .title {
  font-size: 20px;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide ul li .right .title {
    font-size: 3.7vw;
    letter-spacing: 1px;
  }
}
.use-case-section .inner .splide ul li .right .date {
  position: absolute;
  left: 2vw;
  bottom: 2vw;
  font-size: 14px;
  color: #727171;
  line-height: 1;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide ul li .right .date {
    left: 4vw;
    bottom: 2.6vw;
    font-size: 2.6vw;
  }
}
.use-case-section .inner .splide ul li .right .detail-btn {
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  width: 35px;
  height: 35px;
  background-image: url("../img/top/detail_btn.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 900px) {
  .use-case-section .inner .splide ul li .right .detail-btn {
    right: 2.6vw;
    bottom: 2.6vw;
    width: 8vw;
    height: 8vw;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100vw;
  height: 100dvh;
  opacity: 0;
  transition-duration: 0.3s;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal.open .detail-wrap {
  transform: scale(1) !important;
}
.modal .overlay {
  position: absolute;
  width: 100vw;
  height: 100dvh;
  background-color: black;
  opacity: 0.78;
}
.modal .inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin-bottom: -90px;
}
@media screen and (max-width: 1000px) {
  .modal .inner {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 900px) {
  .modal .inner {
    width: 82%;
    margin-bottom: -25vw;
  }
}
.modal .inner .detail-wrap {
  padding: 80px 45px;
  background-color: white;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  border-radius: 30px;
  max-height: 500px;
  overflow: auto;
  transform: scale(0);
  transition-duration: 0.3s;
  will-change: transform;
}
@media screen and (max-width: 900px) {
  .modal .inner .detail-wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .modal .inner .detail-wrap {
    max-height: 60vh;
    padding: 8vw 6.66vw;
    margin-bottom: 7vw;
    border-radius: 20px;
  }
}
.modal .inner .detail-wrap img {
  width: 52%;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 900px) {
  .modal .inner .detail-wrap img {
    position: relative;
    width: 100%;
    margin-bottom: 3.4vw;
  }
}
.modal .inner .detail-wrap .contents {
  width: 48%;
  padding-left: 40px;
}
@media screen and (max-width: 900px) {
  .modal .inner .detail-wrap .contents {
    padding-left: 0;
    width: 100%;
  }
}
.modal .inner .detail-wrap .contents .date {
  font-size: 14px;
  transform: rotate(0.05deg);
  color: #727171;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .modal .inner .detail-wrap .contents .date {
    font-size: 2.6vw;
    margin-bottom: 2.6vw;
  }
}
.modal .inner .detail-wrap .contents .ttl {
  font-size: 22px;
  transform: rotate(0.05deg);
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .modal .inner .detail-wrap .contents .ttl {
    font-size: 4.8vw;
    letter-spacing: 5%;
    margin-bottom: 4.2vw;
  }
}
.modal .inner .detail-wrap .contents .text {
  font-size: 18px;
  line-height: 1.6;
  transform: rotate(0.05deg);
  font-weight: 400;
  color: #2B2B37;
}
@media screen and (max-width: 900px) {
  .modal .inner .detail-wrap .contents .text {
    font-size: 3.7vw;
  }
}
.modal .inner .close-btn {
  display: block;
  width: 80px;
  margin: auto;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .modal .inner .close-btn {
    width: 16vw;
  }
}/*# sourceMappingURL=use_case_section.css.map */