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

body {
    font-size: 1.5rem;
    position: relative;
    /*     overflow: hidden; */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

h2 {
    margin: 0;
    font-size: 40px !important;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    color: #A9935F;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 28px !important;
    }
}

h2 span {
    display: block;
    font-size: 16px;
    margin-top: 10px;
}

.section {
    padding: 60px 12px;
    color: #333;
}

@media screen and (max-width: 768px) {
    .section {
        padding: 30px 12px;
    }
}

.section .inner {
    max-width: 1060px;
    margin: 0 auto;
    /* background: gray; */
}

.section.black {
    color: #fff;
    background: #333;
}

.section.black h2 {
    color: #fff;
}

/* main .mainInner p.title {
	margin: 24px 0;
	font-size: 24px;
}

main .mainInner .mini {
	margin: 12px 0;
	font-size: 12px;
} */

/*スクロールダウン全体の場所*/
.scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 50%;
    bottom: 140px;
    /*全体の高さ*/
    height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
    position: absolute;
    left: -11px;
    top: -13px;
    color: #eee;
    font-size: 10px;
    letter-spacing: 0.05em;
    width: 40px;
}

/* 線の描写 */
.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

.underlayer h1 {
    font-size: 7.2rem;
    text-align: center;
    padding: 7.2rem 0;
    margin: 0;
    background: #333;
    color: #fff;
    background: url(../img/uoqt2/bg_underlayerh1.png)center center no-repeat;
    background-size: cover;
    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;
        margin-top: 70px;
    }
}

.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;
    color: #333;
    font-weight: bold;
}

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,
h1,
h2,
h3,
h4 {
    font-family: "Oswald";
    /* font-family: 'Noto Sans JP', sans-serif; */
    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: #000;
}

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: 10px;
    border-right: 1px dotted #fff;
    border-left: 1px dotted #fff;
    font-size: 13px;
}

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

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

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


.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;
}

.link-wrapper,
.footer-logo {
    /* display: none!important; */
}

a.link_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: #fff;
    text-align: center;
    color: #333;
    padding: 10px 20px;
    width: 30%;
    position: relative;
    text-decoration: none;
    border: 1px solid #707070;
}

@media screen and (max-width: 768px) {
    a.link_button {
        width: 50%;
    }
}

a.link_button::after {
    position: absolute;
    top: -6px;
    right: 20px;
    content: "";
    padding: 30px 10px;
    background-image: url(../img/arrow.png);
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

ul.sponsor_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    ul.sponsor_wrapper {
        flex-wrap: wrap;
    }
}

ul.sponsor_wrapper li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

@media screen and (max-width: 768px) {
    ul.sponsor_wrapper li {
        width: 45%;
    }
}

ul.sponsor_wrapper li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

#sponsor h3 {
    text-align: center;
}

.copyright {
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.mv .image_wrapper {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .mv .image_wrapper {
        margin-top: 70px;
    }
}