@charset "utf-8";
/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#player_header {
    position: relative;
    /*ローディング画像などを表示す際の基点とするため指定*/
    height: 100vh;
    /*高さを全画面にあわせる*/
    text-align: center;
    color: #ffffff;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
    background-color: #000000;
    /* background: url("../img/IGNITE_YouTube.png") no-repeat; */
    /* background-size: cover; */
    /* background-position: center; */
}

/* ローディングアイコン設定 */

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear {
    display: none;
}


/* youtube設定 */

#youtube-area {
    position: fixed;
    z-index: 1;
    /*最背面に設定*/
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
    background: url(../img/IGNITE_YouTube.png) no-repeat;
    background-size: cover;
    background-position: center;
}


body.player.admin #youtube-area {
    position: absolute;
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
    animation-name: PageAnimeAppear;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

.description {
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
}

div#descriptionarea .section_contents {
    display: flex;
    justify-content: center;
    line-height: 1.7;
}

div#pname img {
    /* position: absolute; */
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0;
    width: 4rem;
    z-index: 1;
}

div#pname {
    position: relative;
    /* height: 5rem; */
}

div#pname p {
    margin: 0 0 1rem;
}

div#pname h2 {
    /* line-height: 5rem; */
    z-index: 5;
    position: relative;
    font-size: .5rem;
    margin: 0rem 0;
}

.section:nth-of-type(2n) {
    background-color: rgba(20, 25, 20, .4);
}

div.section h3 {
    transform: rotate(-90deg);
    flex-grow: 0;
    position: absolute;
    left: -.5rem;
    top: .6rem;
    /* border-bottom : 3px solid #aaaaaa; */
    font-size: 2em;
    margin: 2em 0;
    width: 3rem;
    text-align: center;
    padding-bottom: .1rem;
    letter-spacing: .1em;
}

div.section {
    /* display: flex; */
    min-height: 3rem;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    /* padding-left: 1.2rem; */
    text-align: center;
    /* padding: .3rem 0 .3rem 1.2rem; */
}

div.section h3 span {
    position: absolute;
    font-size: 2em;
    bottom: .1rem;
    color: #aaccaa;
    opacity: .2;
    /* left : 50%; */
    right: .3rem;
    /* left : 14%; */
    margin: auto;
}

.section_contents {
    min-height: 3rem;
    border-left: 3px solid #aaaaaa;
    padding: .1rem;
}

.sns {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sns a {
    font-size: .5rem;
    padding: .3rem;
    color: #ffffff;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#youtube {
    /*天地中央配置*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw;
    /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask {
    position: absolute;
    z-index: 2;
    /*下から2番目に表示*/
    top: 0;
    width: 100%;
    height: 100%;
}


/*youtube 上のロゴ */
#youtube-area h1 {
    position: absolute;
    z-index: 2;
    /*下から2番目に表示*/
    /*天地中央配置*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*色指定*/
    color: #ffffff;
    text-shadow: 0 0 15px #666666;
    font-size: 1rem;
    margin: 0;
}

/*下のコンテンツ*/
#player_container {
    position: relative;
    /*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
    z-index: 3;
    /*一番上に表示*/
    /*見た目の調整*/
    background: #000000;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    font-size: .25rem;
    font-family: "Oswald", "Noto Sans Jp", sans-serif;
    /* max-width: 10rem; */
}

#player_container:before {
    background-image: url(../img/carbon05-1.jpg);
    background-size: auto;
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    z-index: 0;
    pointer-events: none;
    /* background-color: #000; */
}

.contents {
    width: 15rem;
    margin: 0 auto;
    position: relative;
    padding: .2rem .2rem .2rem 1.25rem;
    max-width: 90%;
    box-sizing: border-box;
}

td.solo_top100,
td.duo_top50,
td.torio_top33 {
    background-color: rgba(255, 215, 0, .9);
    color: #000000;
    font-weight: bold;
}

td.solo_top300,
td.duo_top150,
td.torio_top100 {
    background-color: rgba(255, 255, 224, .9);
    color: #000000;
    font-weight: bold;
}

td.top1,
td.top10 {
    background-color: rgba(255, 0, 0, .9);
    color: yellow;
    text-shadow: 1px 1px 0 #000000, -1px 1px 0 #000000, 1px -1px 0 #000000, -1px -1px 0 #000000;
}

td.top1:before {
    font-family: "Font Awesome 5 Free";
    content: "\f521";
    font-weight: 900;
    font-size: 80%;
    position: relative;
    top: -.02rem;
    padding-right: .03rem;
}

td.top10:before {
    font-family: "Font Awesome 5 Free";
    content: "\f5a2";
    font-weight: 900;
    font-size: 80%;
    position: relative;
    top: -.02rem;
    padding-right: .03rem;
}

/*色見本*/
table.ranktable {
    padding-right: .1rem;
    display: inline-block;
    vertical-align: middle;
}

table.ranktable td {
    padding: .05rem;
    font-size: 80%;
}

.pure-table tbody th.th_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

th.th_title .image {
    width: .9rem;
    padding: 0 .1rem 0 0;
}

th.th_title .title {
    display: inline-block;
    white-space: initial;
}

th.th_title .add {
    display: inline-block;
    padding: 0 .1rem;
}

th.th_title .date {
    display: inline-block;
    padding-right: .1rem;
    font-size: 90%;
}

.pure-table tbody th .text {
    white-space: initial;
}

th.th_title .title span {
    display: inline-block;
}

.pure-table-horizontal td,
.pure-table-horizontal th {
    border-bottom: 1px solid #333333;
}

.pure-form legend {
    background-color: #aaaaaa;
}

div#resultajax {
    width: 11rem;
    max-width: 100%;
    margin: 0 auto;
}


#member-result-table tr {
    transition: 1s;
}

tr.is-hidden {
    opacity: 0;
    height: 0;
    width: 0;
    display: block;
}

.list-btn button {
    padding: .5em .6rem;
    /* display: flex; */
    /* justify-content: start; */
    /* align-items: center; */
    position: relative;
}

.list-btn {
    margin: .5rem 0;
}

.list-btn button:before,
.list-btn button:after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1em;
}

.list-btn button:before {
    left: .15rem;
}

.list-btn button:after {
    right: .15rem;
}

/**/
@media only screen and (max-width:768px) {
    div#player_container {
        font-size: .2rem;
    }


    div.section h3 {
        transform: none;
        position: relative;
        left: initial;
        border-bottom: 3px solid #aaaaaa;
        margin: 0 auto;
        width: 90%;
        top: 0;
        padding-top: .6rem;
    }

    .section_contents {
        border-left: 0;
        /* border-top: 3px solid #aaa; */
    }

    div.section {
        padding: 0;
    }


    .contents {
        padding: 0;
    }

    button.slick-prev {
        left: 1rem;
        top: initial;
    }

    button.slick-next {
        top: initial;
        right: 1rem;
    }
}