@charset "utf-8";

/* スワイパー　基本
---------------------------------------------------- */
.swiper-wrapper img {margin: 0 auto;}
.swiper-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 calc(50% - 50vw);
    max-width: 100vw;
}
#mainimage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0 !important;
}
@media print, screen and (min-width: 1200px) {
    .swiper-container-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 10px !important;
    }
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute !important;
    z-index: 200 !important;
}
@keyframes zoom-in {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* スライド画像のアニメーション
---------------------------------------------------- */
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
    animation: zoom-in 10s linear 0s 1 normal both;
}

/* スライドテキスト
---------------------------------------------------- */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: serif;
    font-weight: bold;
    font-size: 3vw;
    color: #fff;
    text-shadow: 2px 2px 8px #000;
    transform: translate(-50%, -50%);
}

/* モバイル
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
    .swiper-wrapper,
    .slide-img {
        height: 100vh;
    }
    .slide-img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* タブレット～PC
---------------------------------------------------- */
@media print, screen and (min-width: 768px) {
    .swiper-wrapper,
    .slide-img {
        height: 100vh;
    }
    .slide-img img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }
}

/* PC　大画面
---------------------------------------------------- */
@media print, screen and (min-width: 1200px) {
    .swiper-wrapper,
    .slide-img {
        height: 100vh;
    }
    .slide-img img {
        height: 100vh;
    }
}

/* メインテキスト
---------------------------------------------------- */
/* 初期状態 */
.title01,
.title02 {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s ease, transform 1s ease;
}

/* 表示状態 */
.title01.show,
.title02.show {
    opacity: 1;
    transform: translateX(0);
}

/* メインテキスト　その1
---------------------------------------------------- */
.title01 {
    position: absolute;
    z-index: 5;
    left: 5%;
    bottom: 20%;
    font-family: "Big Shoulders Inline", sans-serif;
    color: #fff;
    font-size: 90px;
    line-height: 110px;
    letter-spacing: 2px;
}

@media print, screen and (min-width: 768px) {
    .title01 {
        bottom: 22%;
        font-size: 130px;
        line-height: 140px;
        letter-spacing: 3px;
    }
}

@media print, screen and (min-width: 992px) {
    .title01 {
        bottom: 25%;
        font-size: 140px;
        line-height: 150px;
        letter-spacing: 4px;
    }
}

@media print, screen and (min-width: 1400px) {
    .title01 {
        bottom: 25%;
        font-size: 160px;
        line-height: 150px;
        letter-spacing: 5px;
    }
}


/* メインテキスト　その２
---------------------------------------------------- */
.title02 {
    position: absolute;
    z-index: 5;
    left: 5%;
    bottom: 12%;
    color: #fff;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 4px;
}

.title02 span {
    background: #11603e;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    padding: 8px 10px;
}

@media print, screen and (min-width: 768px) {
    .title02 {
        bottom: 8%;
        font-size: 28px;
        line-height: 42px;
        letter-spacing: 5px;
    }

    .title02 span {
        font-size: 14px;
        line-height: 32px;
        padding: 9px 18px;
    }
}

@media print, screen and (min-width: 992px) {
    .title02 {
        bottom: 10%;
        font-size: 30px;
        line-height: 48px;
        letter-spacing: 6px;
    }

    .title02 span {
        font-size: 15px;
        line-height: 36px;
        padding: 10px 20px;
    }
}

@media print, screen and (min-width: 1400px) {
    .title02 {
        bottom: 12%;
        font-size: 31px;
        line-height: 49px;
        letter-spacing: 7px;
    }

    .title02 span {
        font-size: 15px;
        line-height: 25px;
        padding: 10px 20px;
    }
}