@charset "UTF-8";
@import url(sanitize.css);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,500);
/*! //////////////////////////////
Base
////////////////////////////// !*/

body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: auto;
    font-size: 16px;
    font-weight: 100;
    font-family: 'Noto Sans JP', sans-serif, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo;
    color: #111;
    background-color: #fff;
    position: relative;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin: 0;
}
a {
    text-decoration: none;
    color: #111;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 500;
}
a:hover {
    color: #33bad2;
    opacity: .8;
}
img {
    max-width: 100%;
    height: auto;
}
a img {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
li {
    list-style: none;
}
h1, h2, h3, h4, h5, h6, p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/*! Common Item !*/

.pc {
    display: none;
}
@media screen and (min-width:1025px) {
    .sp {
        display: none;
    }
    .pc {
        display: unset;
    }
}

/*! Header
-------------------- !*/

#header {
    display: block;
    width: 100%;
    z-index: 15;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0 0 10px #111;
    box-shadow: 0 0 10px #111;
}
.header {
    display: block;
    width: 100%;
    height: 50px;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.sitelogo {
    width: 220px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .sitelogo {
        margin: 0;
    }
}
@media screen and (min-width: 1025px) {
    .sitelogo {}
}

/*! Mainvisual
--------------------------- !*/

#mainvisual {
    position: relative;
    display: block;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    line-height: 0;
    height: 50vh;
}
#mainvisual::after {
    content: "";
    display: block;
    background: url(../img/mainvisual_after.png) no-repeat center bottom;
    width: 100%;
    height: 100px;
    z-index: 2;
    position: absolute;
    bottom: 0;
    -webkit-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}
#mainvisual_movie {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
#mainvisual_movie video {
    width: auto;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#mainvisual h1 {
    color: #FFF;
    text-shadow: 0 0 10px #000, 0 0 5px #000;
    z-index: 5;
    text-align: center;
    font-size: 5.5vw;
    font-weight: 500;
    line-height: 2;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
    #mainvisual::after {}
    #mainvisual h1 {
        font-size: 4.5vw;
    }
    #mainvisual_movie video {}
}
@media screen and (min-width: 1025px) {
    #mainvisual {
        height: 70vh;
    }
    #mainvisual::after {}
    #mainvisual h1 {
        font-size: 3rem;
    }
    #mainvisual_movie video {
        width: 100%;
        height: auto;
    }
}

/*! contents !*/

#contents {
    position: relative;
    padding: 30px 0px 50px;
}
#contents::after {
    content: "";
    display: block;
    background: url(../img/contents_after.png) no-repeat center bottom;
    width: 100%;
    height: 100px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    -webkit-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}
.contents {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.contents h2 {
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 20px;
}
.campaign {
    margin-bottom: 20px;
    overflow: hidden;
}
.campaign a {}
.youtube {
    position: relative;
    width: 100%;
    padding-top: 53%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
@media screen and (min-width: 768px) {
    #contents {
        position: relative;
        padding: 30px 0px 140px;
    }
    #contents::after {}
    .contents {
        padding: 0 20px;
    }
    .contents h2 {
        font-size: 3vw;
        margin-bottom: 40px;
        padding: 0;
    }
    .campaign {
        margin-bottom: 40px;
    }
}
@media screen and (min-width: 1025px) {
    #contents {
        padding: 50px -3px;
    }
    #contents::after {}
    .contents h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 60px;
    }
    .campaign {
        margin-bottom: 60px;
    }
}

/*! Footer
-------------------- !*/

#footer {
    background: #E12B05;
    padding: 20px 0 40px;
    position: relative;
}
#footer::after {
    content: "";
    display: block;
    background: url(../img/footer_after.png) no-repeat center bottom;
    width: 100%;
    height: 100px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    -webkit-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}
.footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer address {
    color: #FFF;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
}
@media screen and (min-width: 768px) {
    #footer {
        padding: 10px 0 50px;
    }
    #footer::after {}
    .footer {}
    .footer address {}
}
@media screen and (min-width: 1025px) {
    #footer {
        /* padding: 50px 0; */
    }
    #footer::after {
        display: none;
    }
    .footer {}
    .footer address {
        font-size: 14px;
    }
}
