@charset "utf-8";

.swiper {
  width: 100%;
  max-height: 580px;
  height: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide-bk {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    filter: blur(10px);
    height: calc(100% + 20px);
    left: -10px;
    position: absolute;
    right: 0;
    top: -10px;
    width: calc(100% + 20px);
    z-index: -1;
}

.swiper-slide-bk--1 {
    background-image: url(/top/img/slide_01.jpg);
}
.swiper-slide-bk--2 {
    background-image: url(/top/img/slide_02.jpg);
}
.swiper-slide-bk--3 {
    background-image: url(/top/img/slide_03.jpg);
}

.swiper img {
  width: 399.23px;
  height: 580px;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.sub-title-top {
    font-size: 23px;
    color: var(--font-toptitle);
    font-family: var(--font-family-toptitle);
    font-weight: var(--font-weight-toptitle);
}

.sub-title-top::before {
    content: "";
    display: inline-block;
    height: 23px;
    border-left: 1px solid var(--color-toptitle);
    transform: rotate(40deg) translate(8px, -2px);
}

@media screen and (min-width:768px) {

    .swiper {
        max-height: 648px;
    }

    .swiper img {
        width: 446.05px;
        height: 648px;
    }
    .sub-title-top {
        font-size: 64px;
    }

    .sub-title-top::before {
        height: 64px;
        border-left: 3px solid var(--color-toptitle);
        transform: rotate(40deg) translate(19px, -5px);
    }
}