.mainSlick> .inner{
    width: 100%;
    height: calc(100vh - 100px);
    background-image: url('../img/slick/slick01.jpg');
    background-size: cover;
    background-color: #000;
}

.mainSlick .slider{
    position: relative;
    width: 100%;
    padding-bottom: calc(100vh - 100px);
    overflow: hidden;
}
.mainSlick .items{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: absolute;
    z-index: 1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    list-style: none;
}
.mainSlick .item{
    min-width: 100%;
    height: 100%;
}
.mainSlick .item > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainSlick .buttons{
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    z-index: 3;
}
.mainSlick .buttons button{
    border-style: none;
    background-color: rgba(0,0,0,0);
    color: #fff;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-position-y: center;
    background-position-x: center;
    background-repeat: no-repeat;
}
.mainSlick .buttons button.prev{
    background-image: url('../img/slick/prev.svg');
}
.mainSlick .buttons button.next{
    background-image: url('../img/slick/next.svg');
}

.mainSlick .flowEyeCatchArea{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(0,0,0,0.1);
    padding-left: calc(50% - 300px);
    padding-top: calc(50vh - 250px);
}

.mainSlick .flowEyeCatchArea > .inner{
    height: 400px;
    width: 600px;
    background-color: rgba(0,0,0,0.2);
    padding: 16px;
}

.mainSlick .flowEyeCatchArea > .inner > .flowEyeCatch{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 16px;
    border: 6px double #fff;
}

.mainSlick .flowEyeCatchArea > .inner > .flowEyeCatch > .flowEyeCatchCaption{
}

.mainSlick .flowEyeCatchArea > .inner > .flowEyeCatch > .flowEyeCatchString{
    text-align: center;
    font-size: 64px;
    color: #fff;
}