@charset "utf-8";
/* CSS Document */

@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}

.img-fluid {
    width: 100%;
}

.flexbox {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
.txt-white {
    color: #fff;
}
.txt-white:hover {
    text-decoration: underline;
    transition: 0.5s;
}

#wrap {
    max-width: 100%;
    margin: 0;
    padding: 0 0 30px;
    box-sizing: border-box;
    background: url("../image/bg1.gif");
}

#contents {
}

#visual_area {
    width: 100%;
    position: relative;
    padding: 7.5vmax 0 0;
    box-sizing: border-box;
    height: 55vmax;
    min-height: 600px;
}

#news {
    width: 80%;
    height: 85%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    margin: auto;
    padding: 5%;
    box-sizing: border-box;
    border-radius: 10px;
}

#news p {
    color: #FFF;
    margin: 10px auto;
    font-size: 2.0em;
}

@media all and (-ms-high-contrast: none) {
  /* ここに書く */
    #visual_area {
        padding: 15vh 0 0;
    }
}

#visual_area::before {
    content: "";
    width: 100%;
    height: 0;
    padding-top: calc(104/1024*100%);
    background: url("../image/top_accent.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

#main_ttl {
    width: 50%;
    margin: 0 auto;
}

#costume-theme {
    width: 40%;
    margin: 0 auto;
}

#terms {
    width: 100%;
    margin: 0 auto 0;
}

#terms_area {
    width: 80%;
    margin: 0 auto;
    padding: 30px 40px;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(255,255,255,0.7);
}

.sub_ttl {
    text-align: center;
    font-size: 53px;
    color: #f48998;
    font-weight: 700;
}

.term_info {
    margin-top: 30px;
}

.info_ttl {
    display: inline;
    font-size: 20px;
    padding: 8px 15px;
    border: 2px solid #000;
}

.info_detail {
    width: 98%;
    margin: 15px auto 0;
}

.info_detail p {
    line-height: 1.6;
    font-size: 21px;
    font-weight: 600;
}

#form_area {
    width: 80%;
    margin: 80px auto 0;
    padding: 30px 40px;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(255,255,255,0.7);
    position: relative;
}

#black_area {
    width: 98%;
    height: 98%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
}

#black_area p{
    font-size: 2.0rem;
    color: #FFF;
    text-align: center;
    padding-top: 10%;
    line-height: 2.0;
    box-sizing: border-box;
    margin: auto;

}

#form_area form {
    width: 95%;
    margin: 50px auto 0;
}

#form_area form dl {
    padding: 10px 0;
}

#form_area form dl dt {
    font-size: 24px;
    font-weight: 600;
}

#form_area form dl dd {
    margin-top: 5px;
}

#form_area form dl dd input[type="radio"] {
    text-align: left;
}

#form_area form dl dd input[type="text"] {
    width: 80%;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: none;
    font-size: 21px;
}

#form_area form dl dd input[type="text"]::placeholder {
    font-size: 0.75em;
}

#form_area form dl dd input[type="tel"] {
    width: 15em;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: none;
    font-size: 21px;
}

#form_area form dl dd#birthday select {
    width: 6em;
    font-size: 16px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 5px;
}

#form_area form dl dd select {
    width: 10em;
    font-size: 16px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 5px;

}

#form_area form dl dd #gender label {
    font-size: 16px;
}
#form_area form dl dd select p {
    margin-left: 0.5em;
}

#form_area form dl dd textarea {
    width: 100%;
    height: 10em;
    resize: none;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    font-family: 'Kosugi Maru', sans-serif;
}

#form_area form dl#timetable dt {
    margin-top: 10px;
}

#venue dd input {
    margin-left: 30px;
}

#venue dd input:first-child {
    margin-left: 0;
}

#check_form dt {
    font-size: 16px!important;
}
#check_form dd {
    width: 100%;
    margin-top: 5px;
    text-align: left;
}

#check_form dd input[type="checkbox"] {
    display: none;
}

#check_form dd input[type="checkbox"] + label::before {
    font-family: FontAwesome;
    display: inline-block;   
}

#check_form dd input[type="checkbox"] + label::before {
    content: "\f096";
    letter-spacing: 10px;
    font-size: 21px;
}

#check_form dd input[type="checkbox"]:checked + label::before {
    content: "\f046";
    letter-spacing: 7px;
}

#submit_btn input {
    width: 240px;
    height: 50px;
    border-radius: 5px;
    border: none;
    background: #6ebfec;
    font-size: 18px;
    color: #fff;
}

#submit_btn input:hover {
    opacity: 0.7;
    cursor: pointer;
}

footer {
    width: 100%;
    text-align: center;
    font-size: 14px;
}

/* コロナウイルス追加分 */
#coronavirus {
    width: 80%;
    margin: 0 auto 10vh;
    padding: 3vh 1vw;
    background: rgba(255,29,37,0.7);
    border-radius: 10px;
    box-sizing: border-box;
}

.corona {
    width: 100%;
    line-height: 1.6;
    text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

.corona > p {
    font-size: 26px;
}

.corona ul {
    width: 95%;
    margin: 3px auto 0;
}

.corona ul li {
    font-size: 20px;
    list-style-type: none;
}

#corona_area2 {
    margin-top: 5vh;
}

#cation_lead {
    width: 95%;
    margin: 0 auto;
}


@media screen and (max-width: 800px) {
    #main_ttl {
        width: 90%;
    }
    #costume-theme {
        width: 60%;
        margin: 0 auto;
    }
    #terms {
        margin: 50px auto 0;
    }
    #terms_area {
        width: 90%;
    }
    #form_area {
        width: 90%;
    }
    
    /* コロナウイルス追加分 */
    #coronavirus {
        width: 90%;
        margin: 10vh auto ;
        padding: 3vh 1vw;
    }

    .corona > p {
        font-size: 21px;
    }

    .corona ul li {
        font-size: 16px;
    }

}

@media screen and (max-width: 600px) {
#news p {
    color: #FFF;
    margin: 10px auto;
    font-size: 0.9em;
}

    #visual_area {
        width: 100%;
        padding: 16vmax 0 0;
        height: 100vmin;
        min-height: auto;
    }

    #visual_area::before {
        content: "";
        width: 100%;
        height: 0;
        padding-top: calc(75/300*100%);
        background: url("../image/top_accent_sp.svg") no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    #costume-theme {
        width: 75%;
        margin: 0 auto;
    }
    
    .sub_ttl {
        font-size: 30px;
    }
    #main_ttl {
        width: 95%;
    }
    #terms_area {
        width: 95%;
        padding: 20px 10px;
    }
    
    #form_area {
        width: 95%;
        padding: 20px 10px;
    }
    
    .info_ttl {
        font-size: 18px;
    }
    
    .info_detail p {
        font-size: 14px;
    }
    
    #form_area form {
        margin-top: 25px;
    }
    
    #form_area form dl dt {
        font-size: 16px;
    }
    
    #form_area form dl dd#birthday select {
        font-size: 14px;
    }
    
    #form_area form dl dd input[type="text"] {
        width: 100%;
        font-size: 16px;
    }
    
    #form_area form dl dd input[type="text"]::placeholder {
        font-size: 0.7em;
    }
    
    #form_area form dl dd input[type="tel"] {
        width: 100%;
    }
    #form_area form dl dd select {
        width: 100%;
    }
    #submit_btn {
        text-align: center;
    }
    
    #check_form dt {
        font-size: 15px!important;
    }
    
    /* コロナウイルス追加分 */
    #coronavirus {
        width: 98%;
        margin: 10vh auto ;
        padding: 5vh 0;
    }

    .corona {
        width: 95%;
        margin: 0 auto;
    }
    
    .corona > p {
        font-size: 16px;
    }

    .corona ul li {
        font-size: 13px;
    }
    #black_area p{
        font-size: 1.5rem;
        padding-top: 10%;
        line-height: 1.8;
    }

}

@media screen and (min-width:401px) and (max-width:550px) {
    #visual_area {
        width: 100%;
        padding: 14vmax 0 0;
        height: 100vmin;
        min-height: auto;
    }
}

@media screen and (max-width: 400px) {
    #visual_area {
        width: 100%;
        padding: 10vmax 0 0;
        height: 100vmin;
    }
    .corona > p {
        font-size: 15px;
    }

}