@charset "utf-8";

/* 背景　流体 */
.background-svg {
    margin-top: -200px;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

.background-svg svg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
}

/* 見出しの装飾 */
.midashi {
    width: 500px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    margin: 200px auto;
    padding: 1rem 2rem calc(1rem + 10px);
    background: #FFC89A;
    font-size: 40px;
    font-weight: normal;
}

.midashi:before {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 100%;
    height: 100%;
    content: '';
    border: 2px solid #000;
    border-radius: 50px;
}

/* title名 */
/* contest */
.contest-title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 35px;

}

/* ☆マーク付き */
.title {
    margin-bottom: 10px;
    font-size: 30px;
}

/* display */
.display {
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
}

/* 次回の発表会について */
.next {
    width: 100%;
    margin-bottom: 100px;
    padding: 40px;
    background-color: #FFC89A;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid black;

}

/* 次回の発表会(文字について) */
.next-contest {
    font-size: 30px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* 開催年 */
.big {
    font-size: 60px;
    text-align: center;
}

/* 発表会 */
.contest {
    width: 100%;
    align-items: center;
    margin-bottom: 70px;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.contest01{
    background-color: #FFC89A;
}

.contest02{
    background-color: #ffd9ba;
}

.perf {
    margin-top: 30px;
}

.nagakute{
    margin-bottom: 10px;
}

/* 教室名 */
.contest-class {
    font-size: 27px;
}

/* 日時、会場、チーム */
.date,
.address,
.team {
    margin-left: 30px;
    font-size: 25px;
}

/* span */
span {
    font-size: 18px;
}

/* 挿入写真 */
.contest img {
    width: 100%;
    margin-top: 40px;
    border-radius: 40px;
    border: 1px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* スマホ対応　 ------------------------------------------------------- */
@media (max-width: 440px) {

    /* 背景　流体 */
    .background-svg {
        display: none;
    }

    /* 見出しの装飾 */
    .midashi {
        width: 300px;
        text-align: center;
        position: relative;
        border-radius: 50px;
        margin: 100px auto;
        padding: 1rem .5rem calc(1rem + 10px);
        background: #FFC89A;
        font-size: 25px;
        font-weight: normal;
    }

    .midashi:before {
        position: absolute;
        top: -8px;
        left: -8px;
        width: 100%;
        height: 100%;
        content: '';
        border: 2px solid #000;
        border-radius: 50px;
    }

    /* title名 */
    /* contest */
    .contest-title {
        margin-bottom: 20px;
        text-align: center;
        font-size: 20px;

    }

    /* ☆マーク付き */
    .title {
        margin-bottom: 5px;
        font-size: 18px;
    }

    /* display */
    .display {
        display: flex;
        justify-content: space-between;
    }

    /* 次回の発表会について */
    .next {
        width: 100%;
        margin-bottom: 50px;
        padding: 20px;
        border-radius: 30px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        border: 1px solid black;

    }

    /* 次回の発表会(文字について) */
    .next-contest {
        margin-bottom: 10px;
        font-size: 18px;
        text-align: center;
        line-height: 1.5;
        /* margin-bottom: 30px; */
    }

    /* 開催年 */
    .big {
        font-size: 30px;
        text-align: center;
    }

    /* 発表会 */
    .contest {
        width: 100%;
        align-items: center;
        margin-bottom: 50px;
        padding: 20px;
        border-radius: 30px;
        border: 1px solid black;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .perf {
        margin-top: 10px;
    }

    .nagakute{
        margin-bottom: 10px;
    }    

    /* 教室名 */
    .contest-class {
        font-size: 15px;
    }

    /* 日時、会場、チーム */
    .date,
    .address,
    .team {
        margin-left: 18px;
        font-size: 13px;
    }

    /* span */
    span {
        font-size: 10px;
    }

    /* 挿入写真 */
    .contest img {
        width: 100%;
        margin-top: 20px;
        border-radius: 20px;
        border: 1px solid black;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
}