/* FireFox対応 */
@-moz-document url-prefix() {
    .slide-items img {
        animation: unset !important;
    }
}

#wrap {
    overflow: hidden;
}

/*
******************************
    slick（スライドショー）
*******************************
*/
.slide-items {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide-items__wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-items img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    animation: img-expansion 45s linear 80ms infinite;
}

/* メインビジュアルでスライドする画像を少しずつ拡大していくアニメーション */
@keyframes img-expansion {
    100% {
        transform: scale(1.2, 1.2);
    }
}

.slick-arrow {
    display: none !important;
}

/*
******************************
    mainVisual
*******************************
*/
.mainVisual {
    position: relative;
}


.mainVisual__catchcopyWapper {
    position: absolute;
    top: 50%;
    left: 3%;
    font-size: 10rem;
    transform: translateY(-50%);
    font-weight: 800;
    color: #fff;
    z-index: 10;
}

.mainVisual__catchcopy {
    text-shadow: 7px 7px 9px rgb(0 0 0 / 30%), 1px 2px 15px rgb(161 94 86 / 10%);
}

.mainVisual__catchcopy .ftbl {
    color: black;
}

/* 
画像やテキストのワイプ表示の設定 
*/
.img-wrap {
    opacity: 0;
}

.img-animation {
    animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1) forwards;
    overflow: hidden;
    position: relative !important;
}

.img-animation:before {
    animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
    background: black;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

/* 
画像やテキストのワイプ表示のアニメーション1 
*/
@keyframes img-opacity {
    100% {
        opacity: 1;
    }
}

/* 
画像やテキストのワイプ表示のアニメーション2 
*/
@keyframes img-animation {
    99% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}


/* 
背景が徐々に透明度が濃くなるアニメーション 
*/
@keyframes opacityanime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*
******************************
    news
*******************************
*/
.news {
    /* height: 350px; */
    box-sizing: border-box;
}

.news__wrapper {
    width: 1180px;
    margin: 0 auto;
    background: #fff;
}

.news__content {
    display: flex;
    padding: 72px;
    justify-content: space-between;
}

.news__sectiontitle {
    font-size: 5rem;
    font-weight: 800;
    text-align: center;
}

.news__sectiontitle-sub {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    color: #898989;
    margin-bottom: 24px;
}

.news__textBlock {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news__lists {
    width: 65%;
}

.news__item {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.news__date {
    margin-right: 24px;
}

.news__category {
    padding: 2px 24px;
    border: 1px solid #7c7c7c;
    font-size: 1.2rem;
}

.news__title {
    padding: 14px 0;
    border-bottom: 0.5px solid #e3e3e3;
}

.news__title a {
    transition: .4s;
}

.news__title a:hover {
    opacity: 0.6;
}


/*====================

◆ ブレークポイント
 - 0      〜  479px：スマホ
 - 480px  〜  959px：タブレット
 - 960px  〜 1279px：タブレット(大) / モバイルPC
 - 1280px 〜       ：大型PC

====================*/

/* ------------------------------------------
  〜479px：スマホ縦
--------------------------------------------*/
@media screen and (max-width:479px) {

    /*
    ******************************
        mainVisual
    *******************************
    */
    .mainVisual__catchcopyWapper {
        font-size: 5rem;
        transform: translateY(-65%)
    }

    /*
    ******************************
        news
    *******************************
    */
    .news {
        height: auto;
        background-size: 250%;
        padding-block: 64px;
        margin-bottom: 0;
    }

    .news__wrapper {
        width: 95%;
    }

    .news__content {
        padding: 16px;
        flex-direction: column;
    }

    .news__textBlock {
        width: 100%;
    }

    .news__lists {
        width: 100%;
    }

    .news__sectiontitle-sub {
        margin-bottom: 32px;
    }

    .news .readBtn.sp {
        margin-top: 32px;
    }

    .news .readBtn.sp a {
        margin: 0 auto;
    }

}

/* ------------------------------------------
  480px〜959px：タブレット
--------------------------------------------*/
@media screen and (min-width:480px) and (max-width:959px) {

    /*
    ******************************
        mainVisual
    *******************************
    */
    .mainVisual__catchcopyWapper {
        font-size: 6rem;
        transform: translateY(-65%)
    }

    /*
    ******************************
        news
    *******************************
    */
    .news {
        height: auto;
        background-size: 250%;
        padding-block: 64px;
        margin-bottom: 0;
    }

    .news__wrapper {
        width: 90%;
        max-width: 650px;
    }

    .news__content {
        padding: 0px;
        flex-direction: column;
    }

    .news__textBlock {
        width: 100%;
    }

    .news__lists {
        width: 100%;
    }

    .news__sectiontitle-sub {
        margin-bottom: 32px;
    }

    .news .readBtn a {
        margin: 0 auto;
    }

    .news .readBtn.sp {
        margin-top: 56px;
    }

}


/* ------------------------------------------
  960px〜1279px：タブレット(大)/モバイルPC
--------------------------------------------*/
@media screen and (min-width:960px) and (max-width:1279px) {

    .pc {
        display: none;
    }

    /*
    ******************************
        mainVisual
    *******************************
    */
    .mainVisual__catchcopyWapper {
        font-size: 6rem;
        transform: translateY(-65%)
    }

    /*
    ******************************
        news
    *******************************
    */
    .news__wrapper {
        width: 90%;
        margin: 0 auto;
        background: #fff;
    }

}


/* ------------------------------------------
  1280px〜：大型PC
--------------------------------------------*/
@media screen and (min-width:1280px) {}