@charset "UTF-8";
/*-------------------------------------------------------------------基本設定*/
/*--------------------------------------------------------------ページ別背景色*/

/*背景色*/
body {
    background: #000;
    background-position: top;
    text-align: center;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;

}

h1,
h2,
h3,
h4,
h5,
h6,
    {
    margin-bottom: 24px;
}



h2 {
    font-size: 36px;
    line-height: 1.33333;
}

h3 {
    font-size: 24px;
    line-height: 1;
}

h4 {
    font-size: 18px;
    line-height: 1.5;
}

h7 {
    font-size: 12px;
    line-height: 1.5;
}

hgroup h2,
h3,
h4,
h5,
h6 {
    font-size: 16px;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

hr {
    margin: 12px 0;
}

a {
    color: #fff;
    text-decoration: none;
}

a:link {
    color: #fff;
    text-decoration: none;
}

a:visited {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #bf096f;
    text-decoration: none;
}

#menu {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 9999;
    top: 0;
    font-family: 'Oswald', sans-serif;
}

#menu .wrapper {
    width: 1000px;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    height: 50px;
}

#menu .wrapper ul {
    width: 740px;
    float: left;
}

#menu .wrapper ul li {
    float: left;
}

#menu .wrapper ul li img {
    margin: -8px 0 0 0;
}

#menu .wrapper ul li a {
    display: block;
    color: #ccc;
    padding: 15px;
    text-decoration: none;
}

#menu .wrapper ul li a:hover {
    display: block;
    color: #ccc;
    padding: 15px;
    text-decoration: none;
    border-bottom: 2px #FFFFFF solid;
}



/*------------------------------------------スマホ用ページ用設定*/
@media screen and (max-width: 767px) {
    h1 {
        width: 48%;
        padding: 10px;
    }

    main {
        color: #fff;
        text-align: left;
        position: relative;
        padding-top: calc(100%*1111/750);

        /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
        background-color: #c52a1e;
        background: url(../_image/main_bgSP.png) center 0px / 100% no-repeat;
    }

    article {
        width: 100%;

    }

    .top-contents {
        padding: 4%;
        box-sizing: border-box;
        background-color: #000;
        border-top: 5px solid #b81d14;
        border-bottom: 5px solid #b81d14;
    }


    /*---------------------*/
    /*コミックス*/
    .top-comics img {
        width: 100%;
    }

    /*---------------------*/
    /*スペシャル*/
    .special {
        position: relative;
        padding-top: 1em;
        padding-bottom: .5em;
        border-bottom: 2px solid #ccc;
        font-size: 1.3em;

    }

    .special::after {
        position: absolute;
        bottom: -2px;
        left: 0;
        z-index: 2;
        content: '';
        width: 25%;
        height: 2px;
        background-color: #b81d14;
    }

    .special-ichiran {
        width: 30%;
        text-align: right;
        float: right;
        font-size: .6em;
        bottom: 0;
        margin-top: 8px;
    }

    .new_icon {
        width: 40px;
        position: absolute
    }

    /*---------------------*/
    /*スペシャルリスト*/
    ul.speciallist {
        margin: 10px auto;
        font-size: 0
    }

    ul.speciallist li {
        display: inline-block;
        width: 48%;
        margin: 2% 1%;
    }

    /*---------------------*/
    /*ニュース*/
    .news {
        position: relative;
        padding-top: 1em;
        padding-bottom: .5em;
        border-bottom: 2px solid #ccc;
        font-size: 1.3em;
    }

    .news::after {
        position: absolute;
        bottom: -2px;
        left: 0;
        z-index: 2;
        content: '';
        width: 15%;
        height: 2px;
        background-color: #b81d14;
    }








    /*---------------------*/
    /*ニュースリスト*/
    ul.newslist {
        margin: 10px auto;
        height: 250px;
        overflow: auto;
    }

    ul.newslist li {
        font-size: 14px;
        padding: 8px 0;
        border-bottom: 1px solid #333;
        line-height: 1.4;
    }

    ul.newslist li a span {
        color: #ccc;
        padding-right: 10px;
    }

    
/*---------------------*/
/*ツールチップ*/
/* 表示文字の装飾 */
.tooltip1{
    color: #555;
    display: inline-block;                        /* インライン要素化 */
    border-bottom:dashed 1px #555;  
    /* 下線を引く */
}
 
/* ツールチップ部分を隠す */
.tooltip1 span {
    display: none;
}
 
/* マウスオーバー */
.tooltip1:hover {
    position: relative;
    color: #333;
}
 
/* マウスオーバー時にツールチップを表示 */
.tooltip1:hover span {
    display: block;                  /* ボックス要素にする */
    position: absolute;            /* relativeからの絶対位置 */
    top: 45px;
    font-size: 90%;
    color: #fff;
    background-color: #51A2C1;
    width: 100px;
    padding: 5px;
    border-radius:3px;
    z-index:100;
    text-align: center;
}
 
/* フキダシ部分を作成 */
.tooltip1 span:before{
    content:''; 
    display:block; 
    position:absolute;                         /* relativeからの絶対位置 */
    height:0; 
    width:0; 
    top:-13px; 
    left:15px;
    border:13px transparent solid; 
    border-right-width:0; 
    border-left-color:#51A2C1; 
    transform:rotate(270deg);            /* 傾きをつける */
    -webkit-transform:rotate(270deg);
    -o-transform:rotate(270deg);
    z-index:100;
}
    
    
    /*---------------------*/
    /*SNS*/
    .top-sns {
        margin-top: 10px;
        padding: 1%;
        box-sizing: border-box;
        background-color: #000;
        border: 5px solid #b81d14;
    }

    .top-sns ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-sns ul li {
        width: 10.5%;
        text-align: right;
    }

    .top-sns ul li:last-child {
        width: 50%;
    }

    .top-sns ul li a {}

    #footer {
        width: 100%;
        background: url(../_image/footer_bg.gif);
        background-position: 50% -20%;
        background-repeat: no-repeat;
        background-color: #000;
        background-size: 800px;
    }

    #footer .wrapper {
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding: 90px 0 30px 0;
    }

    #footer .wrapper img {
        width: 45%;
        display: inline;
        padding: 3px 0;
    }

    #footer .wrapper p {
        color: #ccc;
        margin: 5px 0 0 0;
        line-height: 1.9;
        font-size: 10px;
    }


    /*-------------------------------------------------------end@media*/
}












@media screen and (min-width: 768px) {
    
    /*-----------------------------------------------------------------*/
    /*768px以上の場合*/
    /*----------------------------------------------------------------------------*/
    /*PCでは非表示*/
    .nopc {
        display: none;
    }

    h1 {
        width: 48%;
        padding: 10px 0;
    }

    main {
        color: #fff;
        text-align: left;
        position: relative;
        padding-bottom: calc(100%*1103/1500);
        /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
        background-color: #c52a1e;
        background: url(../_image/main_bg.png) center 0px / 100% no-repeat;
    }




    article {
        width: 34%;
        position: absolute;
        top: 1.2%;
        left: 10.8%;
    }

    @media screen and (min-width:768px) and (max-width:1200px) {
        /*　画面サイズが768pxから1024pxまで　*/

        main {
            color: #fff;
            text-align: left;
            position: relative;
            padding-bottom: calc(100%*1103/1200);
            /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
            background-color: #c52a1e;
            background: url(../_image/main_bg.png) top right / 120% no-repeat;
        }


        article {
            width: 34%;
            position: absolute;
            top: 1.2%;
            left: 1.5%;
        }

    }



    .top-contents {
        padding: 4%;
        box-sizing: border-box;
        background-color: #000;
        border: 5px solid #b81d14;
    }

    /*---------------------*/
    /*メニュー*/
    nav {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    /*---------------------*/
    /*コミックス*/
    .top-comics img {
        width: 100%;
    }

    /*---------------------*/
    /*スペシャル*/
    .special {
        position: relative;
        padding-top: 1em;
        padding-bottom: .5em;
        border-bottom: 2px solid #ccc;
        font-size: 1.3em;

    }

    .special::after {
        position: absolute;
        bottom: -2px;
        left: 0;
        z-index: 2;
        content: '';
        width: 25%;
        height: 2px;
        background-color: #b81d14;
    }

    .special-ichiran {
        width: 30%;
        text-align: right;
        float: right;
        font-size: .6em;
        bottom: 0;
        margin-top: 8px;
    }

    .new_icon {
        width: 40px;
        position: absolute
    }

    /*---------------------*/
    /*スペシャルリスト*/
    ul.speciallist {
        margin: 10px auto;
        font-size: 0
    }

    ul.speciallist li {
        display: inline-block;
        width: 48%;
        margin: 2% 1%;
    }

    /*---------------------*/
    /*ニュース*/
    .news {
        position: relative;
        padding-bottom: .5em;
        border-bottom: 2px solid #ccc;
        font-size: 1.3em;
    }

    .news::after {
        position: absolute;
        bottom: -2px;
        left: 0;
        z-index: 2;
        content: '';
        width: 15%;
        height: 2px;
        background-color: #b81d14;
    }

    /*---------------------*/
    /*ニュースリスト*/
    ul.newslist {
        margin: 10px auto;
        height: 80px;
        overflow: auto;
    }

    ul.newslist li {
        font-size: 14px;
        line-height: 1.6;
    }

    ul.newslist li a span {
        color: #ccc;
        padding-right: 10px;
    }


    
    
/*---------------------*/
/*ツールチップ*/
/* 表示文字の装飾 */
.tooltip1{
    color: #555;
    display: inline-block;                        /* インライン要素化 */
    border-bottom:dashed 1px #555;  
    /* 下線を引く */
}
 
/* ツールチップ部分を隠す */
.tooltip1 span {
    display: none;
}
 
/* マウスオーバー */
.tooltip1:hover {
    position: relative;
    color: #333;
}
 
/* マウスオーバー時にツールチップを表示 */
.tooltip1:hover span {
    display: block;                  /* ボックス要素にする */
    position: absolute;            /* relativeからの絶対位置 */
    top: 35px;
    font-size: 90%;
    color: #fff;
    background-color: #51A2C1;
    width: 100px;
    padding: 5px;
    border-radius:3px;
    z-index:100;
    text-align: center;
}
 
/* フキダシ部分を作成 */
.tooltip1 span:before{
    content:''; 
    display:block; 
    position:absolute;                         /* relativeからの絶対位置 */
    height:0; 
    width:0; 
    top:-13px; 
    left:15px;
    border:13px transparent solid; 
    border-right-width:0; 
    border-left-color:#51A2C1; 
    transform:rotate(270deg);            /* 傾きをつける */
    -webkit-transform:rotate(270deg);
    -o-transform:rotate(270deg);
    z-index:100;
}
    
    
    /*---------------------*/
    /*SNS*/
    .top-sns {
        margin-top: 10px;
        padding: 1%;
        box-sizing: border-box;
        background-color: #000;
        border: 5px solid #b81d14;
    }

    .top-sns ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-sns ul li {
        width: 10.5%;
        text-align: right;
    }

    .top-sns ul li:last-child {
        width: 50%;
    }


    /*------------------------------------------------------------footer*/
    #footer {
        width: 100%;
        background: url(../_image/footer_bg.gif);
        background-position: 50% 0;
        background-repeat: no-repeat;
        background-color: #000;
    }

    #footer .wrapper {
        width: 100%;
        margin: 0 auto;
        padding: 140px 0 20px 0;
    }

    #footer .wrapper img {
        padding: 10px;
    }

    #footer .wrapper p {
        color: #FFF;
        font-size: 12px;
        line-height: 1.6;
    }



    /*-------------------------------------------------------end@media*/
}

















/*------------------------------------------------------------sns*/
#sns {
    width: 200px;
    height: 60px;
    float: right;
}

#social {
    width: 200px;
    float: right;
    margin: 0px auto;
    display: table;
    padding: 12px 0 10px;
}

#social .twitterTag {
    display: table-cell;
    width: 50%;
    padding: 3px 5px 0 0;
    text-align: right;
    vertical-align: middle;

}

#social .facebookTag {
    display: table-cell;
    width: 50%;
    padding: 0 0 0 5px;
    text-align: left;
    vertical-align: middle;

}

/*------------------------------------------------------------main*/
#main {
    width: 100%;
    margin: 0 auto;
    height: 639px;
    background: url(../_image/bg-shirakaba5.jpg);
    background-size: cover;

}

#main2 {
    width: 100%;
    margin: 0 auto;
    height: 639px;
    background-color: #FFF;
}

#main .wrapper {
    width: 1000px;
    margin: 0px auto;
    position: relative;
}

/*------------------------------------------------------------header残す*/

.header {
    background: #000;
}

.header h1 {
    width: 220px;
    padding: 5px 30px 5px;
}


.header_r {
    padding: 5px 0;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.header_r h1 {
    width: 220px;
    padding: 5px 0 5px 5px;
}

/*--------------スマホ用ページ用設定*/
@media screen and (max-width: 767px) {
    .header_r h1 {
        width: 160px;
        padding: 5px 0 5px 5px;
    }

}


/*------------------------------------------------------------twitter*/
#twitter {
    width: 100%;
    height: 771px;
    background: url(../_image/twitter_bg.jpg);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-color: #FFF;
}

#twitter .wrapper {
    width: 1000px;
    padding: 130px 0 0 0;
    margin: 0px auto;
    position: relative;
}

.twitter1 {}

.twitter2 {
    position: absolute;
    top: 130px;
    left: 560px;
}




/*文字色*/
a:link,
a:visited {
    overflow: hidden;
    /*リンクの点線消去*/
    outline: none;
}

a:hover,
a:active {
    overflow: hidden;
    /*リンクの点線消去*/
    outline: none;
    text-decoration: none;
}
