@charset "utf-8";
/* CSS Document */

/** メインビジュアル
---------------------------------------------**/
.mainVisual {
    height: 38vw;
    min-height: 500px;
    background-image: none;
    padding-top: 0;
    position: relative;

    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.slider .sliderItem {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: anime 15s 0s infinite; 
    opacity: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.slider .sliderItem:nth-of-type(1) {
    background-image: url(../images/top/mv_01-pc.jpg);
}
.slider .sliderItem:nth-of-type(2) {
    animation-delay: 5s;
    background-image: url(../images/top/mv_02-pc.jpg);
}
.slider .sliderItem:nth-of-type(3) {
    animation-delay: 10s;
    background-image: url(../images/top/mv_03-pc.jpg);
}
@media print, screen and (max-width: 767px){
    .slider .sliderItem:nth-of-type(1) {
        background-image: url(../sp-images/top/mv_01-sp.jpg);
    }
    .slider .sliderItem:nth-of-type(2) {
        background-image: url(../sp-images/top/mv_02-sp.jpg);
    }
    .slider .sliderItem:nth-of-type(3) {
        background-image: url(../sp-images/top/mv_03-sp.jpg);
    }
}
@keyframes anime {
  0%{ opacity: 0;}
  15%{ opacity: 0;}
  20%{ opacity: 1;}
  35%{ opacity: 1;}
  100%{ opacity: 0;}
}

@media print, screen and (max-width: 767px){
    .mainVisual {
        width: 100%;
        height: 95vw;
        min-height: 375px;
    }
}

/** リードエリア
---------------------------------------------**/
.leadBox {
    position: relative;
    padding: 102px 0 0;
    margin: 0 auto;
    text-align: center;
}

.leadBox .leadBnr {
    position: absolute;
    width: 189px;
    height: 189px;
    top: 24px;
    right: 140px;
}

.leadBox .leadLogo {
    width: 658px;
    height: 287px;
    margin: 0 auto;
    border-bottom: solid 1px #231815;
}

.leadBox h2 {
    margin: 27px auto 0;
    width: 489px;
}

.leadBox p {
    margin-top: 50px;
    font-size: 21px;
    line-height: 43px;
}

.leadBox p span.red {
    font-weight: bold;
}
.leadBox .btnGrn {
    margin-top: 60px;
}
.leadBox .btnGrn a {
    display: inline-block;
    background: #6fba2c;
    text-decoration: none;
    border-radius: 12px;

    padding: 25px 60px;
    transition: opacity ease .8s;
}

.leadBox .btnGrn a p.read {
    color: #fff67f;
    font-size: 20px;
    line-height: 27px;
    margin: 0;
}

.leadBox .btnGrn a p.arrow {
    color: #fff;
    font-size: 27px;
    text-shadow: 1px 1px 1px #231815;

    margin-top: 15px;
}

.leadBox .btnGrn a p.arrow::before {
    content: "";
    display: inline-block;
    background-image:  url(../images/top/icn_03.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 40px;
    height: 25px;
    margin-bottom: 4px;
    margin-right: 15px;
    vertical-align: middle;
}

.leadBox ul {
    display: flex;
    width: 950px;
    margin: 45px auto 0;
}

.leadBox ul li {
    width: 440px;
    min-height: 96.2px;
    transition: opacity ease .8s;
}
.leadBox ul li:hover,
.leadBox .btnGrn a:hover {
    opacity: 0.6;
}

.leadBox ul li a {
    width: 100%;
    height: auto;
    text-shadow: 1px 1px 1px #231815;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 27px;
    line-height: 35px;
    display: inline-block;
    position: relative;
}


.leadBox ul li.btnBlue {
    background-color: #2D257A;
}
.leadBox ul li.btnBlue a {
    padding: 23px 0;
}
.leadBox ul li.btnBlue a:after {
    content: "";
    display: inline-block;
    background-image:  url(../images/top/icn_01.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 70px;
    height: 70px;
    margin-left: 22px;
    vertical-align: middle;
}
.leadBox ul li.btnRed {
    background-color: #E60012;
}
.leadBox ul li.btnRed a {
    padding: 0.86em 0;
}
.leadBox ul li.btnRed a:after {
    content: "";
    display: inline-block;
    background-image:  url(../images/top/icn_02.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 36px;
    height: 69px;
    margin-left: 22px;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 40px;
}
.leadBox ul li:last-child {
    margin-left: 70px;
}

@media print, screen and (max-width: 767px){
    .leadBox {
        padding: 55px 0 0;
        width: 85%;
    }
    .leadBox .leadBnr {
        top: -90vw;
        left: 0;
        z-index: 1;
        width: 141.5px;
        height: 141.5px;
    }
    .leadBox .leadLogo {
        width: 90%;
        height: 100%;
    }
    .leadBox h2 {
        margin-top: 13px;
        width: 80%;
    }
    .leadBox h2 span {
        border-bottom: none;
    }
    .leadBox p {
        font-size: 16px;
        line-height: 35px;
    }
    .leadBox .btnGrn {
        margin-top: 50px;
    }
    .leadBox .btnGrn a {
        padding: 22px 24.5px;
    }
    .leadBox .btnGrn a p.read {
        font-size: 15.5px;
        line-height: 22.5px;
    }

    .leadBox .btnGrn a p.arrow {
        font-size: 17.5px;

        margin-top: 15px;
    }
    .leadBox .btnGrn a p.arrow::before {
        width: 24px;
        height: 14px;
        margin-bottom: 4px;
        margin-right: 7px;
    }
    .leadBox ul {
        display: block;
        width: 100%;
        margin: 32px auto 0;
    }
    .leadBox ul li:last-child {
        margin: 27.5px auto 0;
    }
    .leadBox ul li {
        width: 292.5px;
        min-height: 76.5px;
        margin: 0 auto;
    }
    .leadBox ul li a {
        font-size: 18px;
        line-height: 31px;
    }
    .leadBox ul li.btnBlue a:after {
        width: 40px;
        height: 37.5px;
    }
    .leadBox ul li.btnRed a:after {
        right: 30px;
        top: 30px;
        width: 25px;
        height: 27px;
    }
}
/** 下層リンクエリア
---------------------------------------------**/
.linkArea {
    background-image: url(../images/top/bg_01.jpg);
    background-repeat: no-repeat;
    margin: 106px auto 0;
}

.linkBox {
    padding: 120px 0;
}

.linkInner {
    width: 836px;
    height: 346px;
    margin: 0 auto;
    background-image: url(../images/top/line.png);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    padding: 130px 0 135px;
}

.linkInner .linkItem p {
    font-size: 53px;
    line-height: 53px;
    margin: 0 auto;
    font-weight: bold;
}

.linkInner .linkItem a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    line-height: 43px;
    display: block;
    font-weight: bold;
    text-shadow: 1px 1px 1px #231815;
    letter-spacing: normal;
}
.linkInner .linkItem p.btnRed,
.linkInner .linkItem li {
    height: 40px;
    padding: 5px 0 11px;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 28px;
}
.linkInner .linkItem p.btnRed {
    width: 450px;
    background-image: url(../images/top/btnbg_01.png); 
}

.linkInner .linkItem:last-child {
    margin-top: 65px;
}

.linkInner .linkItem ul {
    display: inline-flex;
    margin: 0 auto;
}

.linkInner .linkItem li.btnBlue {
    width: 288px;
    background-image: url(../images/top/btnbg_02.png); 
}

.linkInner .linkItem li.btnOrange {
    width: 288px;
    background-image: url(../images/top/btnbg_03.png); 
}

.linkInner .linkItem li:last-child {
    margin-left: 23px;
}


@media print, screen and (max-width: 767px){
    .linkArea {
        margin: 59px auto 0;
    }
    .linkBox {
        padding: 42px 0;
    }
    .linkInner {
        background-image: url(../sp-images/top/line.png);
        width: 90%;
        padding: 80px 0;
    }
    .linkInner .linkItem a {
        font-size: 20px;
        line-height: normal;
    }
    .linkInner .linkItem p {
        font-size: 26.5px;
        line-height:  30px;
    }
    .linkInner .linkItem p.btnRed,
    .linkInner .linkItem li {
        margin-top: 18px;
        height: 31px;
        padding: 10px 0 4px;
    }
    .linkInner .linkItem p.btnRed {
        width: 230px;
        background-image: url(../sp-images/top/btnbg_01.png); 
    }
    .linkInner .linkItem:last-child {
        margin-top: 35px;
    }
    .linkInner .linkItem ul {
        display: block;
    }
    .linkInner .linkItem li,
    .linkInner .linkItem li:last-child {
        margin: 18px auto 0;
    }

    .linkInner .linkItem li.btnBlue {
        width: 230px;
        background-image: url(../sp-images/top/btnbg_02.png); 
    }

    .linkInner .linkItem li.btnOrange {
        width: 230px;
        background-image: url(../sp-images/top/btnbg_03.png); 
    }
}
