@charset "UTF-8";

/* CSS Document */

/*----------------------------------------
PC用レイアウト(768px以上スクリーン)
----------------------------------------*/

/* body全体の初期スタイル調整 */

html,
body {
    width: 100%;
}

body {
    font-size: 62.5%;
    /*emの計算をしやすくするための定番設定*/
    font-family: "YuGothic", "Yu Gothic medium", "Hiragino Sans", "Meiryo", "sans-serif";
    font-weight: normal;
    color: #000;
}

@media only screen and (max-width:768px) {

    body {
        width: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}


@media only screen and (max-width:768px) {

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

}

/*----------------------------------------
全体レイアウト/背景設定(PC)
----------------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */

#main {
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width:768px) {

    #main {
        width: 100%;
        margin: 0%;
    }

}

#main-contents {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;

}

@media only screen and (max-width:768px) {
    #main-contents {
        width: 100vw;
        margin: 0 auto;
    }
}

.contents {
    background: #187fa8;
    padding: 5% 0;
}

.contents_inner {
    margin: 0 auto;
    max-width: 520px;
    background: #fff;
    border-radius: 20px;
    padding: 4%;

}

.contents p {
    line-height: 1.8em;
    font-size: 1.6em;
    color: #333;
}

@media only screen and (max-width:768px) {

    .contents {
        background: #187fa8;
        padding: 3% 1%;
    }

    .contents_inner {
        margin: 5%;
        padding: 7%;
        background: #fff;
        border-radius: 20px;
    }

    .contents p {
        line-height: 1.8em;
        font-size: 1.3em;
        color: #333;
    }

}

/*----------------------------------------
hタグの設定
----------------------------------------*/

/*H2タグ*/
.contents h2 {
    margin: 0 0 0em;
    margin-bottom: 7%;
    padding: 0 0.9em;
    font-size: 2.7em;
    font-weight: bold;
    color: #187fa8;
    text-align: center;

}

.contents h3 {
    margin: 0 0 0em;
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    border-left: solid 5px #187fa8;
    /*左線*/
}

@media only screen and (max-width:768px) {

    .contents h2 {
        margin: 0 0 0em;
        padding: 0.3em 0.9em;
        margin-bottom: 10%;
        font-size: 2em;
        font-weight: bold;
        color: #187fa8;
        text-align: center;

    }

    .contents h3 {
        margin: 0 0 0em;
        font-size: 2em;
        font-weight: bold;
        color: #333;
        padding: 0.25em 0.5em;
        /*上下 左右の余白*/
        border-left: solid 5px #187fa8;
        /*左線*/
    }
}

/*----------------------------------------
下部固定ボタン
----------------------------------------*/

.float-area {
    position: fixed;
    bottom: 0;
    opacity: 0;
    transition: 0.3s;
    width: 100%;
    z-index: 99999;
    pointer-events: none;
}

.float-area.fixed {
    opacity: 1;
    z-index: 100;
    pointer-events: auto;
}

.float-btn-wrap {
    position: relative;

}

.float_btn {
    position: absolute;
    width: 27%;
    bottom: 10%;
    left: 36.5%;
    transition-duration: .4s;
}

@media only screen and (max-width:768px) {
    .float_btn {
        position: absolute;
        width: 92%;
        bottom: 15%;
        left: 4%;
        transition-duration: .4s;
    }
}


.float_btn:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.float_btn.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

.float-area.float-area__d-none {
    display: none;
    pointer-events: none;
}

/*----------------------------------------
FV
----------------------------------------*/

.fv {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/*----------------------------------------
cv_area01
----------------------------------------*/

.cv_area01 {
    position: relative;
    margin: 0 auto;
    text-align: center;

}

.cv-btn01 {
    position: absolute;
    bottom: 20%;
    width: 50%;
    left: 25%;
    transition-duration: .4s;
}

@media only screen and (max-width:768px) {

    .cv-btn01 {
        position: absolute;
        bottom: 24%;
        width: 90%;
        left: 5%;
        transition-duration: .4s;
    }

}

.cv-btn01 img {
    transition-duration: .4s;

}

.cv-btn01:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv-btn01.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
cv_area02
----------------------------------------*/

.cv_area02 {
    position: relative;
    margin: 0 auto;
    text-align: center;
    margin-top: -1px;
}

.cv-btn02 {
    position: absolute;
    top: 2%;
    width: 50%;
    left: 25%;
    transition-duration: .4s;
}

@media only screen and (max-width:768px) {

    .cv_area02 {
        position: relative;
        margin: 0 auto;
        text-align: center;
        margin-top: -1px;
    }

    .cv-btn02 {
        position: absolute;
        top: 10%;
        width: 90%;
        left: 5%;
        transition-duration: .4s;
    }

}

.cv-btn02 img {
    transition-duration: .4s;

}

.cv-btn02:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv-btn02.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
sec00_movie
----------------------------------------*/

.mov-contents {
    position: relative;
    margin-top: -1px;
}

.mov_wrap {
    position: absolute;
    bottom: 9%;
    text-align: center;
    margin: auto;
    background: none;
}

video.movie {
    width: 63.5%;
    border-radius: 20px;
}

@media only screen and (max-width:768px) {

    .mov_wrap {
        position: absolute;
        bottom: 10%;
        text-align: center;
        margin: auto;
        background: none;
    }    

    video.movie {
        width: 90%;
        border-radius: 10px;
    }
    
}

/*----------------------------------------
トップへ戻るボタン
----------------------------------------*/

a.back_btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 43%;
    margin: auto;
    padding: 0.9rem 0;
    margin-top: 7%;
    font-weight: bold;
    border: 2px solid #f4af10;
    color: #f4af10;
    background-color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 1.4em;
}

a.back_btn:hover {
    color: #fff;
    background: #f4af10;
}

@media only screen and (max-width:768px) {
    a.back_btn {
        display: block;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        width: 50%;
        margin: auto;
        padding: 0.8rem;
        margin-top: 10%;
        font-weight: bold;
        border: 2px solid #f4af10;
        color: #f4af10;
        border-radius: 100vh;
        transition: 0.5s;
        font-size: 1.1em;
    }

    a.back_btn:hover {
        color: #fff;
        color: #f4af10;
    }
}

/*----------------------------------------
footer
----------------------------------------*/

.footer {
    background: #EEEEEE;
    padding: 2.5em 0em 2em 0em;
    text-align: center;
    font-size: 1.4em;
    color: #333;

}

footer ul {
    display: flex;
    justify-content: center;
}

footer ul li {
    padding: 0 1.5%;
}

li+li {
    border-left: 1px solid #333;
}

.footer a {
    color: #333;
    transition-duration: .4s;
}

.footer a:hover {
    color: #187fa8;
}

.footer_logo {
    transition: opacity 0.3s;
}

.footer_logo img {
    width: 25%;
    margin-bottom: 2%;
    transition: opacity 0.3s;

}

.footer_logo:hover {
    opacity: 0.6;
}

@media only screen and (max-width:768px) {

    .footer {
        background: #EEEEEE;
        padding: 1.5em 1.5em;
        text-align: center;
        font-size: 1.5em;
        color: #333;
    }

    footer ul {
        display: flex;
        justify-content: center;
    }

    .footer_logo img {
        width: 60%;
        margin-bottom: 7%;
        transition-duration: .4s;
    }

    .footer_logo:hover {
        opacity: 0.6;
    }    

}