/* 共通設定 */
html {
    font-size: 62.5%;
}

body {
    font-size: 1.5rem;
    position: relative;
    background: #000;
}

h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
}

h2 {
    font-size: 6.4rem;
    font-weight: normal;
    margin: 0 0 6.4rem;
}

.underlayer h1 {
    font-size: 7.2rem;
    text-align: center;
    padding: 7.2rem 0 14.6rem;
    margin: 0;
    background: url(../img/bg_underlayerh1.jpg)center center;
    position: relative;
}

.underlayer h1::after {
    content: '';
    background-color: rgb(0 0 0 / 0%);
    background-image: linear-gradient(180deg, transparent 0 70%, #000 100%);

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width: 768px) {
    .underlayer h1 {
        font-size: 3.6rem;
        padding: 7.2rem 0;
    }
}

.underlayer h2 {
    text-align: left;
}

.underlayer .breadcrumbs {
    margin-bottom: 10px;
}

h3 {
    font-size: 3.6rem;
    font-weight: normal;
    margin: 5.6rem 0 2.8rem 0;
}

.underlayer h3 {
    margin: 0 0 5.6rem 0;
}

h4 {
    font-size: 2.4rem;
    font-weight: normal;
    margin: 0 0 1.6rem;
}

.underlayer h4 {
    margin: 0 0 2.4rem;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 4.8rem;
        text-align: center;
    }

    .underlayer h2 {
        text-align: left;
    }

    h3 {
        font-size: 3rem;
    }
}

h3:after {
    border-top: 3px solid #fff;
    content: "";
    width: 40px;
    margin-left: 20px;
    display: inline-block;
    line-height: 10px;
    height: 14px;
}

.prize-h4 {
    font-size: 16px;
    color: #9B9B9B;
    margin: 0;
}

.one-em-bottom {
    margin-bottom: 1em;
}

@font-face {
    font-family: "Oswald";
    src: url(../font/oswald/Oswald-Regular.ttf);
}

p,
a,
div {
    font-family: "Oswald";
    /* font-family: 'Noto Sans JP', sans-serif; */
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.bgc-000 {
    background: #000;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.test-text {
    display: none;
    background: green;
    margin: 0;
}

table {
    margin-top: 24px;
    table-layout: fixed;
}

table tr {
    border-bottom: 1px dotted #fff;
}

table th {
    background: #6d6d6d;
}

table.headding-center td:first-of-type {
    text-align: center;
}

table tbody tr:nth-of-type(even) td {
    background: #2f2f2f;
}

table.partici-table tbody td span {
    font-size: 12px;
    text-align: center;
}

table th,
table td {
    text-align: left;
    padding: 6px;
    border-right: 1px dotted #fff;
    border-left: 1px dotted #fff;
}

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

    table th,
    table td {
        font-size: 1.2rem;
        padding: 4px;
    }

    table th.avg,
    table td.avg {
        width: 4em;
    }
}

#teams-section table th, #teams-section  table td {
    text-align: center;
}

#teams-section table {
    border: 1px dotted #fff;
    width: 100%;
}
table td.name {
    width: 127px;
}
table td.country {
    width: 54px;
}

.no-link li a {
    pointer-events: none;
    text-decoration: none;
}

@media screen and (min-width: 769px) {
    .pc-hide {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .sp-hide {
        display: none;
    }
}

.mb0 {
    margin-bottom: 0 !important;
}

a.link-button {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #fff;
    background: #fff;
    padding: 10px 30px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}

/*ボタン内spanの形状*/
a.link-button span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #333;
}

a.link-button:hover span {
    color: #fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #222222;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.link-section {
    width: 100vw;
    margin: 60px calc(50% - 50vw);
    padding: 0 10px;
    background: #2b2b2b;
    padding: 60px;
    box-sizing: border-box;
}


.link-section .inner {
    max-width: 960px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .link-section {
        /* margin: 30px 0; */
        padding: 30px;
        margin: 30px calc(50% - 50vw);
    }
}

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

.center.link-section p {
    text-align: center;
}

.center.link-section a {
    margin: 30px auto 0;
    display: block;
    width: 200px;
}