@charset "utf-8";

/* ==================================================
Common CSS
================================================== */

@media(min-width:1000px){

/*STYLE*/
.sp {
display:none;
}

.cts {
width:1000px;
position:relative;
}


/*HEADER*/
header {
    width:100%;
    height:50px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 10px;
}

header h1 {
    width:300px;
}

header .deco {
    display:flex;
    align-items:center;
}

header .deco p {
    color:#008296;
}

header .deco p:first-child {
    font-size:70%;
    line-height:100%;
    margin-right:7px;
}

header .deco p:last-child {
    font-size:135%;
    line-height:100%;
}




/*MV*/
#mv {
    position:relative;
    padding:50px 0 0;
}

#mv .bg {
    width:100%;
    height:500px;
    background:#008296;
    position:absolute;
    top:0;
    left:0;
    right:0;
}

#mv .titles {
    text-align:center;
    margin-bottom:30px;
}

#mv .titles .start {
    border:#fff 1px solid;
    color:#fff;
    display:inline-block;
    margin-bottom:10px;
    font-size:150%;
    font-weight:500;
    line-height:100%;
    padding:10px 10px 9px;
}

#mv .titles .maintitle {
    font-size:300%;
    font-weight:600;
    line-height:150%;
    color:#fff;
}

#mv .titles .subtitles {
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

#mv .titles .subtitles:before {
    content:"";
    width:50px;
    height:1px;
    background:#fff;
    margin-right:10px;
}

#mv .titles .subtitles:after {
    content:"";
    width:50px;
    height:1px;
    background:#fff;
    margin-left:10px;
}

#mv .titles .subtitles .subtitle {
    font-size:120%;
    font-weight:500;
    color:#fff;
}

#mv .movie {
    width:100%;
    padding-top: 56.25%;
    position:relative;
    margin-bottom:30px;
}

#mv .movie iframe {
    position: absolute;
    top:0;
    right:0;
    width:100% !important;
    height:100% !important;
}

#mv .conclusion {
    display:flex;
    justify-content:center;
    align-items:center;
}

#mv .conclusion .copies {
    text-align:center;
}

#mv .conclusion .copies .copy {
    font-size:150%;
    font-weight:600;
    margin-bottom:20px;
}

#mv .conclusion .copies .cta {
}

#mv .conclusion .copies .cta .btn {
    animation:cta 1s infinite alternate;
    -webkit-animation:cta 1s infinite alternate;
}

#mv .conclusion .copies .cta .btn a {
    width:500px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#00b900;
    padding:5px 30px;
    border-radius:50vw;
}

#mv .conclusion .copies .cta .btn a img {
    width:90px;
    margin-right:10px;
}

#mv .conclusion .copies .cta .btn a p {
    font-size:180%;
    font-weight:600;
    line-height:100%;
    color:#fff;
}

#mv .conclusion .photo {
    width:250px;
    margin-left:30px;
}





/*FOOTER*/
footer {
padding:30px 0;
}

footer .copyright {
font-size:70%;
text-align:center;
}





/*----- INVIEW -----*/
.fadeIn {
    opacity:0;
    transition:1s;
}

.fadeIn.show {
    opacity:1;
}

.fadeInUp {
    opacity:0;
    transform:translate(0,30%);
    transition:1s;
}

.fadeInUp.show {
    opacity:1;
    transform:translate(0,0);
}




/*----- SWIPER -----*/
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
    height: 0;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
    width:30px;
    height:30px;
    border-left:2px #000 solid;
    border-bottom:2px #000 solid;
    transform:rotate(45deg);
    left:30px;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
    width:30px;
    height:30px;
    border-top:2px #000 solid;
    border-right:2px #000 solid;
    transform:rotate(45deg);
    right:30px;
}





}