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

img{
    width: 100%;
}

body{
    font-family: "Kosugi", sans-serif;
    font-style: normal;
}

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

header{
    background-color: #fff;
    width: 100%;
    height: 5vw;
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
}

header h1{
    width: 18%;
    line-height: 5vw;
    margin-left: 100px;
    position: relative;
    z-index: 9997;
    vertical-align: middle;
}

header h1 img{
    vertical-align: middle;
}

header .accessibility{
    position: absolute;
    right: 10px;
    bottom: 15px;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: bold;
    font-size: clamp(10px, 1.2vw, 24px);
}

nav ul li{
    font-family: "Mochiy Pop One", sans-serif;
    font-size: clamp(18px, 3vw, 30px);
    font-weight: bolder;
    margin-top: 1em;
}

/*ここからハンバーガーメニュー*/
#menu-btn-check {
    display: none;
}

.menu-btn {
    position: fixed;
    top: 10px;
    left: 15px;
    display: flex;
    width: 50px;
    height: 48px;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-repeat: no-repeat;
    background-size: cover;
}

.menu-btn span{
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../img/hamburger-open.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#menu-btn-check:checked~.menu-btn span {
    background-image: url("../img/hamburger-close.png");
}


.menu-content {
    width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 9998;
    background-color: #000;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    right: 70%;/*メニューを画面内へ*/
}

.menu-content ul {
    padding: 70px 5px 0;
    color: #fff;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    color:#ffffff;
    padding: 15px 3em;
}

/*ここまでハンバーガーメニュー*/

.top_main{
    background-color: #000;
    width: 100%;
    height: 48vw;
    position: relative;
    z-index: 9997;
}

.top_main .top{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items:center;
}

.top_main .top .topin{
    background-image:url("../img/top_bg_img.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 74%;
    height: 40vw;
}
.top_main .illust{
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    z-index: 999;
}

.top_main .contest_logo{
    position: absolute;
    width: 33%;
    left: 3.5vw;
    bottom: 2vw;
    z-index: 998;
}

.goto-form{
    width: 17%;
    position: fixed;
    right: 0;
    bottom: 5vh;
    z-index: 9999;
}

.goto-form a{
    display: block;
    width: 100%;
    height: 100%;
}

.goto-form a:hover{
    opacity: 0.8;
}

.sp{
    display: none;
}

main{
    background-color: yellow;
    background-image: url("../img/main_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 8vw 0 3vw;
}

main .about{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size:clamp(10px, 1.5vw, 30px); 
    line-height: 1.7;
    font-weight: bold;
    position: relative;
    scroll-margin-top: 110px;
}

main .about .about-crown{
    width: 18%;
    margin: 0 auto;
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/*.box-height:before{
    content: "";
    display: block;
    padding-top: 100%;
}
*/
main section h2{
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: bolder;
    font-size:clamp(26px, 3.5vw, 56px); 
    padding-top: 1em;
    padding-bottom: 0.5em;
}

main section h2 span{
    display: inline-block;
    margin: 0 0.5em;
    width: 15vw;
    height: 0.2em;
    background-color: #000;
    vertical-align: middle;
}

main .aboutin{
    width: 100%;
    border-radius: 40px;
    background-color: #fff;
    padding-bottom: 2em;
    box-shadow: 5px 5px 0 #000;
}

main .award{
    width: 65%;
    margin: 7vw auto 1.5vw;
    scroll-margin-top: 100px;
}

main .award p{
    margin-bottom: 1vw;
    height: fit-content;
}

main .award p:first-child{
    width: 60%;
    margin: 0 auto 1.2vw;
}

main .award .award-wrap{
    display: flex;
    justify-content: space-between;
    height: fit-content;
}

main .award .award-wrap p{
    width: 49%;
}

main .award-about{
    width: 65%;
    margin: 0 auto;
    background-color: #fff;
    padding: 1em 2em;
    font-size: clamp(10px, 1.1vw, 24px)
}

main .apply{
    width: 80%;
    margin: 7vw auto 0;
    border-radius: 40px;
    background-color: #fff;
    padding-bottom: 2vw;
    box-shadow: 5px 5px 0 #000;
    text-align: center;
    font-size:clamp(10px, 1.8vw, 32px); 
    line-height: 1.7;
    font-weight: bold;
    scroll-margin-top: 100px;
}

main .apply section .caption{
    width: 75%;
    margin: 1.5em auto 0;
    display:flex;
}

main .apply section div.caption{
    display: block;
}

main .apply section .caption dt,main .apply section .caption p{
    width: 20%;
}

main .apply section dd{
    text-align: left;
    margin-left: 1.5em;
}

main .apply section .caption .term-red{
    font-family: "Mochiy Pop One", sans-serif;
    font-size: clamp(16px, 2.1vw, 38px);
    font-weight: bolder;
    color: #e50012;
}

main .apply section .caption .term-red span{
    font-size: clamp(14px, 1.8vw, 28px);
}

main .apply section .caption .repu{
    line-height: 1.5;
}

main .apply section .caption .repu span{
    display: inline-block;
    line-height: 1.3;
    font-size:clamp(14px, 1.3vw, 24px); 
    font-weight: 400;
    margin-top: 0.5em;
}

main .apply section div.caption .movie{
    margin-top:2vw;
    display: flex;
    align-items: center;
    border: 5px solid #e60012;
    width: 49%;
    height: fit-content;
}

main .apply section div.caption .image{
    margin-top:2vw;
    display: flex;
    align-items: center;
    border: 5px solid #e95513;
    width: 49%;
    height: fit-content;
}

main .apply section div.caption div h3{
    writing-mode: vertical-rl;
    color: #fff;
    height: fit-content;
    }
    
main .apply section div.caption .movie h3{
    background-color: #e60012;
    padding: 2em 0.5em;
}

main .apply section div.caption .image h3{
    background-color: #e95513;
    padding: 1.5em 0.5em;
}
    
main .apply section div.caption div ul li{
    text-align: left;
    list-style-type: disc;
    font-size:clamp(14px, 1.15vw, 24px); 
    margin-left: 2em;
    margin-top: 0.5em;
    line-height: 1.3;
}

main .apply section>h3{
    font-family: "Mochiy Pop One", sans-serif;
    font-size:clamp(24px, 3.3vw, 50px);
    font-weight: bolder;
    margin: 3.2vw 0 1vw;
}

main .apply section .schedule{
    width: 80%;
    margin: 0 auto;
}

main .apply section .form{
    width: 60%;
    margin: 5vw auto 2vw;
    font-family: "Mochiy Pop One", sans-serif;
    padding: 0.5em 0;
    font-size:clamp(22px, 2.5vw, 48px);
    font-weight: bolder;
    color: #fff;
    border-radius: 20px;
    background-color: #e60012;
}

main .apply section .form a{
    display:block;
    width: 100%;
    height: 100%;
}

main .apply section .form a:hover{
    opacity: 0.8;
    background-color:rgba(230,0,18,0.8);/*上手くいかず*/
}

#sub{
    background-color: #000;
    background-image: url("../img/sub_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 5vw 0;
}

#sub .work{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size:clamp(10px, 1.8vw, 22px); 
    line-height: 1.7;
    font-weight: bold;
    border-radius: 40px;
    background-color: #fff;
    padding-bottom: 2em;
    box-shadow: 5px 5px 0 #fff000;
    scroll-margin-top: 100px;
}

#sub .work .work-h3{
    font-size:clamp(18px, 2.5vw, 48px); 
    width: 85%;
    margin: 0 auto;
    padding: 5vw 0 0;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: bolder;
    border-bottom: 7px solid yellow;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sub .work .work-h3+.work-img{
    margin-top: 3vw;
}

#sub .work .work-h3:last-child{
    margin-top: 4vw;
}

#sub .work .work-h3:nth-child(6) h3{
    opacity: 0;
}

#sub .work h3 .crown{
    display: inline-block;
    width: 1.2em;
    margin-right: 0.3em;
}

#sub .work h3 .crown img{
    vertical-align: middle;
}

#sub .work .work-h3 p{
    font-size:clamp(14px, 1.5vw, 30px); 
    background-color: #e60012;
    padding: 0.2em 1em;
    height: fit-content;
    color: #fff;
    vertical-align: middle;
}

#sub .work .work-img{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 5vw auto 0;
}


#sub .work .work-img .work-img-title,#sub .work .work-img>p{
    width: 48%;
}

#sub .work .work-img .work-img-title{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

#sub .work .work-img .work-img-title p{
    text-align: center;
    width: 85%;
    margin: 0 auto;
    font-size:clamp(14px, 1.8vw, 40px); 
    padding: 0.7em 0;
    line-height: 1.5;
}

#sub .work .work-img .work-img-title p:first-child{
    width: 75%;
}

#sub .work .work-img>p{
    border: 2px solid #000;
    height: fit-content;
}

#sub .work .work-img>p video{
    width:100%;
}

#sub .work .work-img .video_work{
     display: flex;
     align-items: center;
}

#movie_about{
    background-image: url("../img/movie_bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 7vw 0 5vw;
}

#movie_about .line{
    width: 90%;
    margin: 0 auto;
    height: 0.5vw;
    background-color: #000;
}

#movie_about .movie_aboutin{
    width: 80%;
    margin: 0 auto;
    border-radius: 40px;
    background-color: #fff;
    box-shadow: 5px 5px 0 #000;
    text-align: center;
    font-weight: bold;
    scroll-margin-top: 100px;
    padding: 3vw 0;
}

#movie_about .movie_aboutin .movie_aboutin_in{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vw 0;
}

#movie_about .movie_aboutin .movie_aboutin_in video{
    width: 100%;
}

#movie_about .movie_aboutin .movie_aboutin_in .movie_aboutin_in_left{
    width: 45%;
    text-align: center;
}

#movie_about .movie_aboutin .movie_aboutin_in .movie_aboutin_in_left h2{
    font-size:clamp(22px, 4vw, 48px); 
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: bolder;
}

#movie_about .movie_aboutin .movie_aboutin_in .movie_aboutin_in_left p:nth-of-type(1){
    font-size:clamp(14px, 2.2vw, 24px); 
    margin: 2vw 0;
}

#movie_about .movie_aboutin .movie_aboutin_in .movie_aboutin_in_left p:nth-of-type(2){
    width: 20%;
    margin: 0 auto;
}

#movie_about .movie_aboutin .movie_aboutin_in .movie{
    width: 50%;
}

footer{
    background-color: #fff;
}

footer .foot{
    display: flex;
    width: 65%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

footer .foot .rogo-foot{
    width: 35%;
    text-align: center;
}

footer .foot .rogo-foot .link{
    font-size:clamp(14px, 1.15vw, 24px); 
    margin-top: 0.5em;
    display: inline-block;
    color: #0079c3;
}

footer .foot .contact{
    width: 30%;
    font-size: 18px;
    padding: 0 1em;
    font-weight: bold;
    text-align: right;
}

footer .foot ul{
    font-size: 14px;
}

footer .foot ul li:first-child{
    font-size: 14px;
    font-weight: bold;
}