<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* CSS Document */
@media screen and (min-width: 751px) {

    /*  共通部分
----------------------------------------*/
    html {
        font-size: 100%;
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Noto Sans JP', sans-serif;
        background-color: #ffdb5c;
        margin: 0;
    }

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

    a:hover {
        opacity: 0.7;
    }

    img {
        max-width: 100%;
    }

    ul {
        list-style-type: none;
        padding: 0;
    }

    .wrapper {
        max-width: 750px;
        margin: 0 auto;
        padding: 0 4%;
    }

    h1,
    h2,
    p,
    ul,
    h3,
    h4 {
        margin: 0;
        color: #1b1b1b;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /*  サイトオープンロゴ
------------------------------------------------------------------*/

    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: #ffdb5c;
        text-align: center;
        color: #fff;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 300px;
    }

    /* fadeUpをするアイコンの動き */
    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeUpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /*  配置/PC版両サイド
------------------------------------------------------------------*/

    .pc_flex {
        display: flex;
        justify-content: space-between;
        align-items: first baseline;
        opacity: 1;
        background-size: 24px 24px;
    }

    .center {
        width: 40%;
        margin: auto;
    }

    .left {
        left: 0;
        width: 30%;
        height: 40vh;
        position: fixed;
        text-align: center;
        box-sizing: border-box;
        padding: 2% 2%;
    }

    .left_fixed {
        width: 25%;
        position: fixed;
        top: 150px;
    }

    .pc_left_logo {
        width: 80%;
    }


    .right {
        right: 0;
        width: 30%;
        height: 40vh;
        position: fixed;
        text-align: center;
        box-sizing: border-box;
        padding: 2% 2%;
    }

    .right_fixed {
        width: 25%;
        position: fixed;
        bottom: 30px;
    }

    .side_sns {
        padding: 0 20px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 20px;
    }

    .side_sns&gt;a {
        width: 10%;
    }

    .r_nav {
        padding-left: 20%;
        text-align: center;
        margin-top: 10%;
    }

    .l_nav {
        padding-left: 20%;
        text-align: left;
        margin-top: 10%;
    }

    .l_nav&gt;li {
        margin-bottom: 5%;
    }

    .ent01 {
        padding: 8px;
    }

    .ent01&gt;a {
        color: #fff;
    }

    .ent02 {
        margin-top: 20px;
        display: inline-block;
        width: 100%;
    }

    .fuwafuwa {
        animation: fuwafuwa 2s linear infinite;
    }

    /* fuwafuwa */
    @keyframes fuwafuwa {
        0% {
            transform: translateY(0)
        }

        33.33333% {
            transform: translateY(30px)
        }

        66.66667% {
            transform: translateY(0)
        }

        100% {
            transform: translateY(0)
        }
    }

    /*  PC_header
------------------------------------------------------------------*/
    .head_pc {
        width: 100%;
        background-color: #000;
        top: 0;
        position: fixed;
        z-index: 200;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .head_flex {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0 4%;
        align-items: center;
    }

    .head_pc ul li {
        float: left;
    }

    .head_pc_a a {
        color: #fff;
        margin-left: 40px;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .head_pc_b a {
        width: 30%;
        margin-left: 50px;
        display: inline-block;
    }

    /*  PC_TOPメイン
------------------------------------------------------------------*/
    .pc_top {
        text-align: center;
        margin-top: 55px;
    }

    /*  協賛ページ
------------------------------------------------------------------*/
    .spon_top {
        width: 25%;
        margin: 50px auto;
    }

    .about2 {
        margin-bottom: 80px;
    }

    .h2_spon {
        text-align: center;
        font-size: 3rem;
        font-weight: 900;
        letter-spacing: 2.5px;
        line-height: 0.5;
    }

    .spop_00 {
        text-align: center;
        margin-top: 150px;
    }

    .spop_00 h3 {
        margin-bottom: 40px;
        font-size: 2rem;
    }

    .spon_img {
        display: block;
        width: 50%;
        margin: 0 auto;
    }

    .spon_img2 {
        display: block;
        width: 70%;
        margin: 0 auto;
    }

    .spop_00 h4 {
        margin-top: 30px;
        font-size: 1.6rem;
        font-weight: 500;
    }

    .spon_p {
        margin-top: 30px;
        text-align: left;
        line-height: 2;
        font-weight: 500;
    }

    .spon_a {
        display: inline-block;
        margin-top: 20px;
        color: #00abeb;
        border-bottom: #00abeb 1px solid;
    }

    /*  about
------------------------------------------------------------------*/

    .about {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .h2_01 {
        text-align: center;
        font-size: 4rem;
        font-weight: 900;
        letter-spacing: 2.5px;
        line-height: 0.5;
        margin-bottom: 50px;
    }

    .h2_02 {
        font-size: 1.5rem;
    }

    .about_p {
        line-height: 2;
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .about_span {
        font-size: 1.5rem;
        padding-top: 5px;
        padding-bottom: 5px;
        line-height: 2.5;
        padding-left: 5px;
        padding-right: 5px;
    }

    .b_black {
        background-color: #000;
        color: #fff;
    }

    .b_blue {
        background-color: #00abeb;
        color: #fff;
    }

    .about_span2 {
        font-size: 1.5rem;
    }

    /*  お知らせ
------------------------------------------------------------------*/

    details:not(:last-child) {
        margin-bottom: 20px;
    }

    details summary {
        cursor: pointer;
    }

    .qa1 {
        margin-top: 30px;
    }

    .qa1&gt;details&gt;summary {
        background-color: #fff;
        text-align: left;
        color: #000;
        font-size: 1rem;
        font-weight: bold;
        padding: 20px;
    }

    .qa1&gt;details {
        color: #000;
        text-align: left;
    }

    .q_aa {
        padding: 10px;
        font-size: 1rem;
        font-weight: 700;
        line-height: 2;
    }

    /*  ファイナリスト
------------------------------------------------------------------*/

    .finalist {
        padding-top: 80px;
        padding-bottom: 80px;
        background-image: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(216, 159, 50, 1));
        border-radius: 20px;
    }

    .final_place {
        text-align: center;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .final_place2 {
        text-align: center;
        color: #fff;
        font-size: 1rem;
        font-weight: 900;
    }

    .final_mc {
        margin-top: 40px;
        margin-bottom: 80px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 40px 10px;
    }

    .final_mc0 {
        width: 43%;
        text-align: center;
    }

    .final_mc0 p {
        color: #fff;
        font-weight: 500;
    }

    .final_000 {
        margin-top: 40px;
        text-align: center;
    }

    .final_000 p {
        color: #fff;
    }

    /*  優勝特典
------------------------------------------------------------------*/

    .grand {
        padding-top: 80px;
        padding-bottom: 80px;
        background-color: #000;
    }

    .h2_w {
        color: #fff;
    }

    .grand_img {
        margin-bottom: 30px;
    }

    /*  募集要項
------------------------------------------------------------------*/

    .ded_txt {
        text-align: left;
        padding: 0;
    }

    .ded_txt01 {
        border-bottom: 3px solid #1b1b1b;
        padding: 25px 0px;
        align-items: start;
    }

    .ded_tit {
        font-weight: 900;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .ded_tit02 {
        font-size: 1rem;
        line-height: 2;
        font-weight: 500;
    }

    .ded_l {
        text-align: center;
    }

    .ded_line {
        display: block;
        background-color: #02d402;
        color: #fff;
        padding: 20px 50px;
        display: inline-block;
        margin-top: 20px;
        border-radius: 50px;
        font-weight: 500;
    }

    .qa2&gt;details&gt;summary {
        text-align: left;
        color: #e60012;
        font-weight: 900;
        font-size: 1.2rem;
        padding: 0;
    }

    .qa2&gt;details {
        color: #000;
        text-align: left;
    }

    .q_aa2 {
        padding-top: 10px;
        font-size: 1rem;
        line-height: 2;
        font-weight: 500;
    }

    .a_step {
        margin-left: 5px;
        margin-right: 5px;
        color: #249bdb;
        border-bottom: #249bdb 1px solid;
    }

    /*  大会フロー
------------------------------------------------------------------*/

    .qa3 {
        margin-top: 30px;
    }

    .qa3&gt;details&gt;summary {
        background-color: #fff;
        text-align: left;
        color: #000;
        font-size: 1rem;
        font-weight: 900;
        border-radius: 10px;
        padding: 30px 20px;
    }

    .qa3&gt;details {
        color: #000;
        text-align: left;
    }

    .step_h3 {
        display: inline-block;
    }

    .q_aa3 {
        padding: 30px 10px
    }

    .step1_flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .step1_flex img {
        width: 20%;
    }

    .step1_flex_p {
        width: 75%;
    }

    .step1_flex_p1 {
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .sankaku {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .yosen {
        margin-bottom: 30px;
    }

    .yosen_stay {
        background-color: #000;
        border-radius: 30px;
        color: #fff;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .yosen_pa {
        padding: 0px 10px;
    }

    .day {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .mc_center {
        margin-top: 30px;
        text-align: center;
    }

    .mc {
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 2px #000 solid;
        display: inline;
    }

    .mc_flex {
        margin-top: 20px;
        display: flex;
        justify-content: space-around;
    }

    .mc_tale {
        width: 22%;
        text-align: center;
    }

    .mc_tale p {
        font-size: 0.8rem;
        margin-top: 5px;
        font-weight: 700;
    }

    /*  SNS
------------------------------------------------------------------*/

    .sns {
        text-align: center;
    }

    .x_bo {
        background-color: #000;
        border-radius: 50px;
        color: #fff;
        padding: 20px 100px;
        display: block;
        margin-top: 30px;
    }

    .inst_bo {
        background-color: #000;
        border-radius: 50px;
        color: #fff;
        padding: 20px 100px;
        display: block;
        margin-top: 30px;
    }

    .x_bo:before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../images/x_w.png);
        background-size: contain;
        margin-right: 20px;
        position: relative;
        top: 3px;
    }

    .inst_bo:before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../images/inst_w.png);
        background-size: contain;
        margin-right: 20px;
        position: relative;
        top: 3px;
    }

    /*  固定エントリー
------------------------------------------------------------------*/

    .ent_btn_pc {
        background-color: rgb(0, 0, 0, 0.7);
        width: 100%;
        bottom: 0;
        position: fixed;
        z-index: 300;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /*
    .ent_bt_flex {
        display: flex;
        justify-content: space-between;
    }
    */

    .ent_bt_flex a {
        padding: 20px;
        color: #fff;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        background-color: #e4007f;
        display: block;
    }

    /*
    .pc_line {
        background-color: #02d402;
    }

    .pc_viewing {
        width: 100%;

    }
    */

    /*  サイト下部
------------------------------------------------------------------*/

    .zenkai {
        text-align: center;
        margin-top: 20px;
    }

    .zenkai a {
        position: relative;
        border: 2px solid #3c3b3a;
        padding: 20px 50px;
        display: inline-block;
        font-size: 1.3rem;
    }

    .zenkai a:after {
        content: '';
        width: 6px;
        height: 6px;
        border: 0;
        border-top: solid 2px #333;
        border-right: solid 2px #333;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        margin-left: 20px;
    }



    /*  個人情報の取り扱いについて
------------------------------------------------------------------*/

    .kojin {
        text-align: center;
    }

    .on_a {
        background-color: #a0a0a0;
        color: #fff;
        padding: 20px 30px;
        font-size: 1rem;
    }

    /*  footer
------------------------------------------------------------------*/

    footer {
        padding-top: 60px;
        padding-bottom: 130px;
        text-align: center;
    }

    .ft {
        color: #000;
        margin-top: 70px;
    }

    .fot01 {
        margin-bottom: 30px;
    }

    .fot01&gt;a&gt;img {
        margin-bottom: 20px;
        width: 60%;
    }

    .kyouryoku {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .kyouryoku2 {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .audtop {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .audtop&gt;a {
        margin-top: 30px;
        background-color: #249bdb;
        padding: 10px 50px;
        color: #fff;

    }

    .copy {
        margin-top: 20px;
        font-size: 0.5rem;
    }



}</pre></body></html>