@charset "utf-8";
body {
    margin: 0;
}


/*--デザイン上、「font-size:0;」とした場合に子要素の文字が表示されなくなる問題を回避するためのclss--*/

.font-reset {
    font: 13px/1.231 arial, helvetica, clean, sans-serif;
    *font-size: small;
    /* for IE */
    *font: x-small;
    /* for IE in quirks mode */
}


/*--すべての要素にbox-sizingを設定して幅の違いを無くすcss--*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}


/*テキストを中央寄せ、右寄せ*/

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}


/*_____header_____->*/

.header {
    padding: 10px 5%;
    overflow: hidden;
    border-bottom: solid 3px #949ea8;
}

.snoway_logo {
    float: left;
    width: 216px;
}

.snoway_logo a {
    background-position: 0 0;
    width: 216px;
    height: 44px;
    background-image: url(/img/sprite/v2.png);
    background-repeat: no-repeat;
    text-indent: -9999px;
    display: block;
}

.header_share {
    float: right;
    overflow: hidden;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.header_share li {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0;
}

.header_share li.fb {
    position: relative;
    top: -4px;
}

.top_visual {
    width: 100%;
    height: 600px;
    background: url('') no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.top_visual_privacy {
    width: 100%;
    height: 60px;
    background: url('') no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.top_visual_box {
    background: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    position: relative;
    border-bottom: solid 3px #949ea8;
}

.top_con {
    width: 860px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.top_con img {
    float: left;
    margin-right: 120px;
    margin-left: 50px;
}

img.app_dl {
    margin: 0;
}

img.play_dl {
    margin: 0;
    margin-left: 2px;
}

.top_visual_txt {
    width: 400px;
    margin-top: 50px;
    float: left;
}


/*<-_____header_____*/

#features {
    padding-top: 62px;
    margin-top: -62px;
}


/*_____main_content_____->*/

.flex_container {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    margin-bottom: -6px;
    -webkit-align-items: center;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    -webkit-justify-content: center;
    /* Safari */
    justify-content: center;
}

.item_01 {
    flex: 1;
}

.item_02 {
    flex: 1;
}

.item_03 {
    flex: 1;
    order: 1;
}

.item_04 {
    flex: 1;
    order: 0;
}

.main_text {
    text-align: center;
    color: #212020;
}

.main_text p {
    margin-left: 10%;
    margin-right: 10%;
}

.sub_text {
    color: #838080;
}

.main_photo {
    width: 100%;
}


/*<-_____main_content_____*/

.privacy_con {
    margin: 30px;
}


/*_____bottom_content_____->*/

.bottom_visual {
    width: 100%;
    height: 400px;
    background-size: cover;
    margin: 0;
    padding: 0;
    border-top: solid 3px #949ea8;
    border-bottom: solid 20px #949ea8;
    clear: both;
}

.bottom_con {
    width: 860px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    /*background:url('../img/footer_01.png') repeat-x 50% 100%*/
}

.footer_text {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    height: 400px;
    width: 1200px;
}

.footer_sitetop a {
    color: #212020;
}


/*<-_____bottom_content_____*/

.marginL {
    margin-bottom: 80px;
}


/*_____sp_____->*/

@media screen and (max-width: 790px) {
    body {
        position: relative;
        /*padding-bottom: 44px;*/
    }
    /*_text_sp_*/
    /*h1{
	font-size:18px;
	font-weight:bold;
}
h2{
	font-size:16px;
	font-weight:bold;
}
.sub_text{
	font-size:14px;
}*/
    /*_____top_sp_____->*/
    .top_visual {
        height: 400px;
    }
    .header_share {
        float: none;
        position: absolute;
        bottom: 6px;
        left: 0;
        text-align: center;
        width: 100%;
    }
    .snoway_logo {
        float: none;
        width: 100%;
    }
    .snoway_logo a {
        margin: 0 auto;
        width: 108px;
        height: 22px;
        -moz-background-size: 108px auto;
        -o-background-size: 108px auto;
        -webkit-background-size: 108px auto;
        background-size: 108px auto;
    }
    .header_share li.fb {
        top: 0;
    }
    .top_sp {
        display: none;
    }
    .app_dl {
        margin: auto;
    }
    .top_con {
        width: auto;
    }
    .top_visual_txt {
        width: auto;
        margin: 3%;
    }
    /*<-_____top_sp_____*/
    /*_____content_sp_____->*/
    .flex_container {
        flex-direction: column;
    }
    .main_text {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .item_01 {
        flex: 1;
    }
    .item_02 {
        flex: 1;
        width: 100%;
        height: auto;
    }
    .item_03 {
        flex: 1;
        order: 0;
    }
    .item_04 {
        flex: 1;
        order: 1;
        height: auto;
        width: 100%;
    }
    /*<-_____content_sp_____*/
    /*_____bottom_sp_____->*/
    .bottom_con {
        width: auto;
        margin-left: 5%;
        margin-right: 5%;
    }
}


/*<-_____bottom_sp_____*/


/*<-_____sp_____*/

@media screen and (max-width: 423px) {
    .top_visual_txt a {
        display: block;
        margin: 0 auto;
        width: 198px;
    }
}

/*<-_____非公開_____*/

div a {
    /*display:none;*/
}