@charset "utf-8";

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(16, 16, 16, 0);
}

body {
	margin: 0;
	font-family: 'Noto Sans', Arial, "Hiragino Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	color: #181818;
	text-align: left;
	letter-spacing: 0.015rem;
	background: #ffffff;
}

ol, ul, dl {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

h1, h2, h3{
	margin: 0;
	padding: 0;
	line-height: 1;
}

p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 26px;
	color: #181818;
}

a{
	text-decoration: none;
	transition: 0.5s ease-in-out;
}

a:hover{
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.5s ease-in-out;
}

h2{
	font-size: 42px;
	font-weight: 800;
	text-align: center;
}

h2 span{
	display: block;
	margin-bottom: 15px;
    line-height: 0;
}

.for_pc{
	display: initial;
}

.for_tb{
	display: none;
}

.for_sp{
	display: none;
}

/* ------------------------

header

------------------------ */

header{
	position: relative;
	z-index: 100;
}

.header_logo{
	position: absolute;
	top: 0;
	left: 0;
	background: #ffffff;
	width: 290px;
	height: 290px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header_logo img{
	width: 225px;
}

.header_btn{
	position: absolute;
	right: 0;
}

.header_btn ul{
	display: flex;
}

.header_btn ul li a{
	background: linear-gradient(to right, #c43f3e, #cd6f55); 
	color: #ffffff;
	display: flex;
	align-items: center;
	padding: 10px 25px 10px;
}

.header_btn ul li a img{
	width: 20px;
	margin-right: 10px;
}

.header_btn ul li a p{
	font-weight: 600;
	font-size: 15px;
	color: #ffffff;
}

.header_btn ul li:last-child{
	margin-left: 1px;
}

.header_btn ul li:last-child a{
	background: linear-gradient(to right, #272a50, #2f4664); 
	padding: 10px 25px 10px;
}

.header_btn ul li:last-child a img{
	width: 20px;
	margin-right: 10px;
}
nav{
	position: absolute;
	right: 0;
	top: 70px;
}
nav ul{
	display: flex;
}

nav ul li{
	width: 150px;
}

nav ul li a{
	display: block;
	padding: 2px 0;
	font-size: 15px;
	font-weight: 600;
	color: #181818;
	border-left: 1px solid #cccccc;
	text-align: center;
	position: relative;
	overflow: hidden;
}

nav ul li a p{
	font-size: 15px;
	font-weight: 600;
	color: #181818;
}

nav ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #e5e7fa;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}

nav ul li a:hover:before {
  transform: translate3d(0, 0, 0);
}

nav ul li a span{
	display: block;
}

nav ul li a span img{
	height: 10px;
}

nav ul li a:hover p{
	z-index: 2;
	position: inherit;
}


nav ul li a:hover span{
	z-index: 2;
	position: inherit;
}

#nav-toggle, #gloval-nav {
	display: none;
}

/* ------------------------

main_visual

------------------------ */
.main_visual{
	position: relative;
    height: 705px;
}	

.main_visual_image{	
    position: absolute;
    top: 145px;
    width: 100%;
    height: 560px;
	background: url("../img/main.jpg") no-repeat 0 0;	
	background-size: cover;
}

.main_date{
    position: absolute;
    bottom: 5%;
    left: 5%;	
}

.main_date img{
    width: 406px;
    filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.5));
}

.news{
	position: absolute;
	right: 0;
	bottom: 0;
	background: #ffffff;
	display: flex;
	align-items: center;
	width: 350px;
	padding: 15px 10px 10px 20px;
}


.news h3 img{
	width: 20px;
}

.news_con{
	margin-left: 20px;
}

.news_con p{
	font-size: 15px;
}

.news_con p.news_date{
	font-size: 14px;
	font-weight: 600;
	color: #26294f;
}

.news_con p a{
    color: #26294f;
}

/* ------------------------

about

------------------------ */

.about{
	background: linear-gradient(to bottom, #f8ddad, #f4bdcd); 
	padding: 80px 0 170px 0;
}

.about_wrap{
	width: 1000px;
	margin: 0 auto;
	display: flex;
}

.about_wrap h2{
	text-align: left;
}

.about_wrap h2 span img{
	width: 60px;
}

.about_wrap p.about_sub_txt{
	font-size: 20px;
	line-height: 32px;
	font-weight: 600;
	margin-top: 30px;
}

.about_wrap p{
	font-size: 16px;
	line-height: 36px;
	font-weight: 400;
	margin-top: 30px;
}

.about_wrap a{
	color: #26294f;
	border-bottom: 1px solid #181818;
    padding-bottom: 3px;
}

.about_con{
	width: 55%;
	margin-right: 60px;
}

.about_wrap img{
	width: 380px;
	height: 100%;
}


/* ------------------------

information

------------------------ */

.information{
	background: #f4f4f4;
	position: relative;
}

.information_img{
	position: absolute;
	top: -105px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.information_img img{
	width: 160px;
}

.information h2 span img{
	width: 130px;
}

.information_wrap{
	width: 1000px;
	margin: 0 auto;
	padding: 115px 0 80px 0;
}

.tbl_information{
	width: 100%;
    border-collapse: collapse;
	border: none;
	margin-top: 50px;
	border-bottom: 2px solid #181818;
}

.tbl_information th{
	padding: 15px 20px 15px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
    width: 120px;
	border-top: 2px solid #181818;
}

.tbl_information td{
    border-left: none;
	padding: 15px 20px 15px 20px;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
	border-top: 2px solid #181818;
	position:relative;
}

.tbl_information td:before{
	content:"";
	display: inline-block;
	width: 2px;
	height: 60%;
	background-color: #181818;
	position: absolute;
    top: 20%;
    left: -5px;
}

.tbl_information td p{
    line-height: 24px;
    font-size: 14px;
	margin-top: 10px;
}

.tbl_information td span {
    margin-left: 10px;
    display: inline-block;
}

.tbl_information td span a{
	background: linear-gradient(to right, #272a50, #2f4664); 
	color: #ffffff;
	padding: 4px 15px;
	font-size: 15px;
}

.tbl_information td a{
	color: #26294f;
    border-bottom: 1px solid #181818;
    padding-bottom: 3px;
}

.btn_contact{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.btn_contact a{
	background: linear-gradient(to right, #272a50, #2f4664); 
	color: #ffffff;
	display: flex;
	align-items: center;
	padding: 18px 90px 18px 50px;
	position: relative;
}


.btn_contact a p{
	font-weight: 600;
	font-size: 22px;
	color: #ffffff;
	margin-top: 5px;
}

.btn_contact a:after{
    display: inline-block;
    width: 30px;
    height: 7px;
    margin-left: 10px;
    content: "";
    background: url("../img/arr.svg") no-repeat center;
    background-size: 100% auto;
    position: absolute;
	right: 45px;
	top: 45%;
}


/* ------------------------

films

------------------------ */

.films{
	background: linear-gradient(to bottom, #319787, #2b69a3); 	
	position: relative;
}

.films h2{
	color: #ffffff;
}

.films h2 span img{
	width: 55px;
}

.films_wrap{
	width: 1000px;
	margin: 0 auto;
	padding: 75px 0 100px 0;
}

.films_wrap p{
	color: #ffffff;
}

.films_wrap p.films_subtxt{
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	margin-top: 45px;
	    margin-bottom: 45px;
}

.films_wrap p.coming{
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 30px;
}

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

.films_wrap ul li{
	max-width: 31%;
	margin-bottom: 60px;
}

.films_wrap ul::after {
	display: block;
	content:"";
	width:30%;
}

.films_wrap ul li img{
	width: 100%;
}

.films_wrap ul li p{
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-top: 10px;
}

.films_wrap ul li p.films_ttl{
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	margin-top: 20px;
}

.films_wrap ul li p.films_detail{
	font-size: 13px;
	font-weight: 400;
	margin-top: 10px;
}

.films_wrap ul li p.films_date{
	font-size: 14px;
	font-weight: 400;
	margin-top: 10px;
}

.films_wrap ul li p.films_date span{
	display: inline-block;
	border: 1px solid #ffffff;
	padding: 4px 10px;
	line-height: 1;
	font-size: 14px;
	font-weight: 400;
	margin-top: 13px;
	margin-right: 15px;
}

.films_winning{
	background: #ffffff;
	padding: 40px;
	position: relative;
}


.films_winning h3{
	font-size: 24px;
	text-align: center;
	margin-bottom: 10px;
}


.films_winning p.films_date{
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 30px;
	text-align: center;
}

.films_winning p.films_date span{
	display: inline-block;
	border: 1px solid #181818;
	padding: 4px 10px;
	line-height: 1;
	font-size: 14px;
	font-weight: 400;
	margin-top: 13px;
	margin-right: 15px;
}

.films_winning_img img{
	width: 100%;
	heught: auto;
	
}

.films_winning p{
	color: #181818 !important;
}

.films_winning ul{
	display: block;
}

.films_winning ul li{
	width: 100%;
	max-width: inherit;
	margin-bottom: 30px;
}

.films_winning ul li p.films_ttl{
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	margin-top: 20px;
}

.films_winning ul li p span.films_detail{
	font-size: 13px;
	font-weight: 400;
	margin-top: 10px;
	margin-left: 20px;
}

.films_winning ul li p.films_date{
	font-size: 14px;
	font-weight: 400;
	margin-top: 10px;
}



/* ------------------------

competition

------------------------ */

.competition{
	position: relative;
}

.competition_img{
	position: absolute;
	top: -60px;
	left: 0;
	z-index: 1;
}

.competition_img img{
	width: 450px;
}

.competition_detail{
	width: 1000px;
	margin: 0 auto;	
	padding: 60px 0 40px 0;
	position: inherit;
	z-index: 10;
}

.competition_detail h2 img{
	width: 95px;
}

.sub_competition{
	text-align: center;
	margin-top: 45px;
}

.sub_competition p{
	background: linear-gradient(to right, #d07c18, #cdad1a); 
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
	padding: 7px 5px;
    display: inline-block;
	color: #ffffff;
}

p.txt_competition{
	text-align: center;
	margin-bottom: 30px;
	margin-top: 50px;
}

.tbl_outline{
	width: 100%;
    border-collapse: collapse;
	border: none;
	margin-top: 60px;
}

.tbl_outline tr:nth-child(1) {
	border-bottom: 1px solid #181818;
}

.tbl_outline tr:nth-child(2) {
	border-bottom: 1px solid #181818;
}

.tbl_outline td{
    border-left: none;
	padding: 20px 20px 15px 20px;
    text-align: left;
    line-height: 26px;
    vertical-align: top;
    font-size: 16px;
	border: none;
}

.tbl_outline td span{
	display: block;
    line-height: 30px;
}

.tbl_outline td span.talk_guest{
	display: block;
    line-height: 24px;
    font-size: 13px;
	padding-left: 6.65em;
}

.tbl_outline td span.entry_line{
	margin-top: 10px;
	display: block;
    line-height: 24px;
    font-size: 13px;
}

.tbl_outline td a{
	color: #181818;
	font-weight: 600;
	border-bottom: 1px solid #181818;
	padding-bottom: 3px;
}

.tbl_outline td p{
    font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}


.tbl_prize{
	display: flex;
}

.img_prize img{
	width: 185px;
	margin-left: 35px;
}

.btn_entry{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.btn_entry a{
	background: linear-gradient(to right, #c43f3e, #cd6f55); 
	color: #ffffff;
	display: flex;
	align-items: center;
	padding: 30px 90px 30px 50px;
	position: relative;
}

.btn_entry a img{
	width: 35px;
	margin-right: 20px;
}

.btn_entry a p{
	font-weight: 600;
	font-size: 22px;
	color: #ffffff;
	margin-top: 5px;
}

.btn_entry a:after{
    display: inline-block;
    width: 30px;
    height: 7px;
    margin-left: 10px;
    content: "";
    background: url("../img/arr.svg") no-repeat center;
    background-size: 100% auto;
    position: absolute;
	right: 45px;
	top: 45%;
}

.ttl_ambassador{
	line-height: 0;
	margin-top: 60px;
}

.ttl_ambassador img{
	width: 220px;
}

.ttl_ambassador span{
	font-size: 18px;
	font-weight: 500;
	margin-left: 15px;
}

.ambassador{
	border-top: 2px dotted #181818;
	border-bottom: 2px dotted #181818;
	padding: 20px 0;
	display: flex;
}

.ambassador img{
	width: 300px;
}

.ambassador_txt{
	margin-left: 40px;
}

.ambassador_txt p{
	font-size: 14px;
	line-height: 25px;
}

.ambassador_txt p.ambassador_name{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}


.ttl_guest_talk{
	line-height: 0;
	margin-top: 100px;
}

.ttl_guest_talk img{
	width: 180px;
}

.ttl_guest_talk span{
	font-size: 18px;
	font-weight: 500;
	margin-left: 15px;
}

.guest_talk{
	border-top: 2px dotted #181818;
	border-bottom: 2px dotted #181818;
	padding: 20px 0 0 0;
}

.guest_talk ul li{
	display: flex;
}


.guest_talk img{
	width: 300px;
	height: 100%;
}

.guest_talk_txt{
	margin-left: 40px;
}

.guest_talk_txt p{
	font-size: 13px;
	line-height: 24px;
	margin-bottom: 40px;
}

.guest_talk_txt p.guest_talk_name{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
}

/* ------------------------

judges

------------------------ */
.judges{
	background: linear-gradient(to bottom, #f4f7ce, #f0e2b1); 	
	position: relative;
	margin-top: 90px;
}

.judges h2{
	position: absolute;
	top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.judges h2 span img{
	width: 130px;
}

.sub_judges{
	text-align: center;
	margin-top: 45px;
}

.sub_judges p{
	background: linear-gradient(to right, #d07c18, #cdad1a); 
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
	padding: 7px 5px;
    display: inline-block;
	color: #ffffff;
	margin-top: 70px;
}

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

.judges_wrap{
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0 100px 0;
}

.sub_judges_ttl {
    display: flex;
    align-items: center;
	margin-bottom: 30px;
}
 
.sub_judges_ttl:before,
.sub_judges_ttl:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #181818;
}
 
.sub_judges_ttl:before {
    margin-right: 1rem;
}
 
.sub_judges_ttl:after {
    margin-left: 1rem;
}

.judges_wrap p{
	text-align: center;
	font-size: 24px;
	font-weight: 600;
}

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

.judges_wrap ul li{
	text-align: center;
	max-width: 220px;
}

.judges_wrap ul li img{
	width: 200px;
	height: 200px;
	border-radius: 50%;
}

.judges_wrap ul li p.judges_name{
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

.judges_wrap ul li p.judges_name span{
	font-size: 12px;
	font-weight: 500;
	color: #26294f;
	display: block;
	margin-top: 10px;
}

.judges_wrap ul li p{
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-top: 15px;
}


/* ------------------------

movie

------------------------ */
.movie{
		
}

.movie_wrap{
	width: 1000px;
	margin: 0 auto;
	padding: 75px 0!important;
}

.movie h2 span img{
	width: 60px;
}

.movie_con{
	margin-top: 40px;
}

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

.movie_con ul li{
	width: 48%!important;
	max-width: none!important;
	margin-bottom: 0!important;
}

.movie_con ul li img{
	width: 100%;
}

.movie_con ul li p{
	font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
	margin-bottom: 20px;
}

.movie_con ul li a{
	display: block;
}

.movie_con ul li p.movie_btn{
	margin-bottom: 0;
	margin-top: 30px;
}

.movie_con ul li p.movie_btn a{
	display: inline-block;
    background: #ffffff;
    padding: 18px 50px 18px 50px;
	color: #181818;
    text-align: center;
}


.youtube{
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}
 
.youtube iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}



/* ------------------------

profile

------------------------ */
.profile{
	background: linear-gradient(to right, #678eb3, #58a8c6); 	
}

.profile_wrap{
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0;
}

.profile h2{
	text-align: left;
	margin-bottom: 30px;
}

.profile h2 img{
	width: 130px;
}

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

.profile_wrap img{
	width: 170px;
	height: 100%;
}

.profile_txt{
	margin-left: 30px;
}

.profile_txt p{
	color: #ffffff;
	font-size: 15px;
	line-height: 25px;
}

.profile_txt p.profile_label{
	background: #ffffff;
	display: inline-block;
	color: #181818;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 18px;
	line-height: 1;
	padding: 4px;
}


.profile_txt p.profile_name{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 15px;
}



/* ------------------------

footer

------------------------ */

footer{
	wdith: 100%;
}


.footer_contact{
	background: #ffffff;
	padding: 35px 0;
}

.footer_contact_wrap{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer_contact_logo{
	width: 310px;
}

.footer_contact_logo img{
	width: 100%;
}

.footer_contact_con{
	display: flex;
	align-items: start;
}

.footer_contact_ttl{
	background: #26294f;
	color: #ffffff;
	font-size: 14px;
	line-height: 1;
	padding: 4px;
	margin-right: 20px;
	margin-top: 5px;
}

.footer_contact_txt{
	font-size: 14px;
	line-height: 1.8;
}

.footer_contact_txt a{
	color: #26294f;
}


.footer_sub{
	background: #ececec;
	padding: 45px 0;
}

.footer_sub_wrap{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}


.footer_sub_con p{
	margin-bottom: 20px;
	line-height: 1;
}

.footer_sub_con p:last-child{
	margin-bottom: 0;
}

.footer_sub_con p span{
	font-weight: 500;
	position: relative;
	margin-right: 30px;
	display: inline-block;
}

.footer_sub_con p span:after {
	margin: 0 15px;
	content: "";
	width: 1px;
	height: 100%;
	background-color: #151515;
	position: absolute;
}

.footer_sub_con a{
    color: #26294f;
}

.footer_sub_wrap ul{
	display: flex;
}

.footer_sub_wrap ul li{
	margin-right: 10px;
}

.footer_sub_wrap ul li:last-child{
	margin-right: 0;
}

.footer_sub_wrap ul li a{
    background: #ffffff;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    padding: 8px;
	display: flex;
}

.footer_sub_wrap ul li a img{
	width: 100%;
}



.copyright{
	background: #151515;
	width: 100%;
	padding: 15px 0;
}

.copyright p{
	color: #ffffff;
	text-align: center;
	font-size: 12px;
}



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



	.for_tb{
		display: inherit;
	}

	
	/* ------------------------

	header

	------------------------ */


	.header_logo{
		width: 200px;
		height: 200px;
		padding: 20px;
	}

	.header_logo img{
		width: 100%;
	}

	nav{
		position: absolute;
		right: 0;
		top: 70px;
	}


	/* ------------------------

	main_visual

	------------------------ */

	.main_visual_image{	
		background: url("../img/main_tb.jpg") no-repeat right 0;	
		background-size: cover;
	}

	/* ------------------------

	about

	------------------------ */

	.about{
		padding: 80px 20px 170px 20px;
	}

	.about_wrap{
		width: auto;
	}


	/* ------------------------

	information

	------------------------ */

	.information_wrap{
		width: auto;
		padding: 115px 20px 80px 20px;
	}


	/* ------------------------

	films

	------------------------ */

	.films_wrap{
		width: auto;
		padding: 75px 20px 80px 20px;
	}



	/* ------------------------

	competition

	------------------------ */

	.competition_detail{
		width: auto;
		padding: 60px 20px 40px 20px;
	}


	/* ------------------------

	judges

	------------------------ */

	.judges_wrap{
		width: auto;
		padding: 65px 20px 100px 20px;
	}

	.judges_wrap ul li{
		width: 24%;
	}

	.judges_wrap ul li img{
		width: 80%;;
		height: auto;
	}


	/* ------------------------

	movie

	------------------------ */

	.movie_wrap{
		width: auto;
		padding: 75px 20px;
	}


	
	/* ------------------------

	profile

	------------------------ */

	.profile_wrap{
		width: auto;
		padding: 65px 20px 50px 20px;
	}

	.profile h2{
		left: 20px;
	}

	/* ------------------------

	footer

	------------------------ */

	.footer_contact{
		padding: 35px 20px;
	}

	.footer_contact_wrap{
		width: auto;
	}

	.footer_contact_con {
   		margin-left: 20px;
	}
	
	.footer_sub{
		padding: 45px 20px;
	}

	.footer_sub_wrap{
		width: auto;
	}

	.copyright{
		width: auto;
		padding: 15px 20px;
	}

}




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


	/* ------------------------

	header

	------------------------ */


	nav ul li{
		width: auto;
	}

	nav ul li a{
		display: block;
		padding: 2px 14px;
	}

	/* ------------------------

	main_visual

	------------------------ */




}

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


	p{
		font-size: 15px;
		line-height: 25px;
	}
	
	.for_pc{
		display: none;
	}
	
	.for_sp{
		display: initial;
	}

	.for_tb{
		display: none;
	}

	
	/* ------------------------

	mv_area

	------------------------ */

	.date{
		width: auto;
		padding-top: 20px;
		padding-right: 20px;
	}

	.date img{
		width: 70%;
	}

	.img_mv{
		text-align: center;
		padding: 50px 20px 70px 20px;
	}

	.img_mv img{
		max-width: 100%;
	}

	/* ------------------------

	event

	------------------------ */

	.event_wrap{
		width: auto;
		padding: 40px 20px;
	}

	.txt_event{
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 30px;
	}

	.price_event{
		font-size: 18px;
		padding: 15px 30px;
	}


	/* ------------------------

	competition_detail

	------------------------ */

	.competition_detail{
		width: auto;
		padding: 30px 20px;
	}

	h2{
		font-size: 40px;
		margin-bottom: 40px;
	}

	.sub_competition p{
		font-size: 20px;
		line-height: 28px;
	}

	.sub_competition p span{
		font-size: 12px;
	}

	p.cap_sub_competition{
		font-size: 12px!important;
		line-height: 22px;
	}

	p.txt_competition{
		margin-bottom: 40px;
	}


	/* ------------------------

	header

	------------------------ */

	header{
		position: fixed;
		height: 70px;
		width: 100%;
		background:rgba(255,255,255,0.9);
	}
	
	.header_logo{
		position: fixed;
		top: 0;
		left: 0;
		background: none;
		width: 60vw;
		height: 70px;
		padding: 0;
	}
	
	.header_logo a{
		padding: 20px;
		line-height: initial;
	}

	.header_logo img{
		width: 100%;
	}
	
	.header_btn ul {
		display: none;
	}

	nav{
		display: none;
	}
	

	#nav-toggle {
		display: inherit;
		position: fixed;
		top: 25px;
		right: 25px;
		height: 45px;
		cursor: pointer;
	}
	#nav-toggle > div {
		position: relative;
		width: 45px;
	}
	#nav-toggle span {
		width: 100%;
		height: 2px;
		left: 0;
		display: block;
		background: #181818;
		position: absolute;
		transition: top .3s ease, -webkit-transform .3s ease-in-out;
		transition: transform .3s ease-in-out, top .3s ease;
		transition: transform .3s ease-in-out, top .3s ease, -webkit-transform .3s ease-in-out;
	}
	body.hamburger #nav-toggle span {
		background: #181818;
	}
	body.hamburger.open #nav-toggle span {
		background: #181818;
	}
	#nav-toggle span:nth-child(1) {
		top: 0;
	}
	#nav-toggle span:nth-child(2) {
		top: 10px;
	}
	#nav-toggle span:nth-child(3) {
		top: 20px;
	}
	#nav-toggle:hover span:nth-child(1) {
		top: 0;
	}
	#nav-toggle:hover span:nth-child(3) {
		top: 20px;
	}
	.open #nav-toggle span {
		background: #181818;
	}
	.open #nav-toggle span:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.open #nav-toggle span:nth-child(2) {
		top: 10px;
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 10px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* z-index */
	#nav-toggle {
		z-index: 1000;
	}
	#container {
		z-index: 900;
	}
	/* open */
	.open {
		overflow: hidden;
	}
	.open #gloval-nav {
		display: flex;
		visibility: visible;
		opacity: 1;
	}
	.open #gloval-nav li {
		opacity: 1;
	}
	#gloval-nav {
		background-color: rgba(255,255,255,0.95);
		color: #fff;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 990;
		text-align: center;
		display: flex;
		visibility: hidden;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		transition: opacity .3s ease, visibility .3s ease;
		padding: 0 20px;
	}
	#gloval-nav a {
		display: block;
		color: #fff;
		font-size: 15px;
		text-decoration: none;
		padding: 20px 0;
	}
	#gloval-nav a:hover {
		color: #666;
	}
	#gloval-nav ul {
		list-style: none;
		width: 100%;
		padding: 0;
	}
	

	#gloval-nav ul li{
		margin-bottom: 20px;
	}
	
	#gloval-nav ul li a{
		display: block;
		padding: 2px 0;
		font-size: 15px;
		font-weight: 600;
		color: #181818;
		text-align: left;
		position: relative;
		overflow: hidden;
	}

	#gloval-nav ul li a p{
		font-size: 17px;
		font-weight: 600;
		color: #181818;
		text-align: left;
	}

	#gloval-nav ul li a span{
		display: block;
	}

	#gloval-nav ul li a span img{
		height: 10px;
	}

	
	#gloval-nav ul li.link_contact_hamberger {
		width: 100%;
		padding: 0;
		margin: 30px 0 20px 0;
		display: block;
	}
	#gloval-nav ul li.link_contact_hamberger a {
		display: inline-block;
    	width: 70%;
    	padding: 8px 0px;
		background: #39abd8;
		color: #ffffff;
		border-radius: 30px;
	}

	#gloval-nav {
		opacity: 0;
		display: none;
	}
	
	
	#gloval-nav .nav_btn{
		margin-top: 15px;
		width: 100%;
	}

	#gloval-nav .nav_btn ul{
		display: block;
	}
	
	#gloval-nav .nav_btn ul li{
		margin-bottom: 1px;
		width: 100%;
	}
	

	#gloval-nav .nav_btn ul li:first-child a{
		background: linear-gradient(to right, #c43f3e, #cd6f55); 
		color: #ffffff;
		display: flex;
		align-items: center;
		padding: 30px 15px;
	}
	
	#gloval-nav .nav_btn ul li a{
		background: linear-gradient(to right, #272a50, #2f4664); 
		color: #ffffff;
		display: flex;
		align-items: center;
		padding: 15px;
	}

	#gloval-nav .nav_btn ul li a img{
		width: 20px;
		margin-right: 10px;
	}

	#gloval-nav .nav_btn ul li a p{
		font-weight: 600;
		font-size: 15px;
		color: #ffffff;
	}

	
	#gloval-nav .nav_btn ul li:first-child a p{
		font-weight: 600;
		font-size: 18px;
		color: #ffffff;
	}

	

	/* ------------------------

	main_visual

	------------------------ */
	.main_visual{
		height: 80vh;
	}	

	.main_visual_image{	
		position: relative;
		top: 0;
		height: 80vh;
		margin     : auto;
		overflow   : hidden;
		background: #000000;
	}


	.main_visual_image .bgImg {
		position   : absolute;
		top        : 0;
		left       : 0;
		bottom     : 0;
		right      : 0;
		opacity    : 0;
		animation  : bgAnime 20s infinite; 
	}

	.main_visual_image .src1 {
	  	background: url("../img/main_sp01.jpg") no-repeat 0 0;
		background-size: cover;
	}
	.main_visual_image .src2 {
		background: url("../img/main_sp02.jpg") no-repeat 0 0;
		background-size: cover;
	  	animation-delay  : 5s;
	}
	.main_visual_image .src3 {
		background: url("../img/main_sp01.jpg") no-repeat 0 0;
		background-size: cover;
		animation-delay  : 10s;
	}
	.main_visual_image .src4 {
		background: url("../img/main_sp02.jpg") no-repeat 0 0;
		background-size: cover;
		animation-delay  : 15s;
	}

	@keyframes bgAnime {
	   0% { opacity: 0; }
	   8% { opacity: 1; }
	  25% { opacity: 1; }
	  33% { opacity: 0; }
	 100% { opacity: 0; }
	}
	
	.main_date{
		position: absolute;
		bottom: 120px;
		left: 0;
		padding: 0 15px;
	}

	.main_date img{
		width: 100%;
	}

	.news{
		right: 0;
		left: 0;
		width: auto;
		padding: 15px 10px 10px 15px;
	}



	/* ------------------------

	about

	------------------------ */

	.about{
		padding: 60px 15px 120px 15px;
	}

	.about_wrap{
		width: auto;
		display: block;
	}

	.about_wrap p{
		font-size: 16px;
		line-height: 30px;
		margin-top: 30px;
	}

	.about_con{
		width: 100%;
		margin-right: 0;
		margin-bottom: 40px;
	}

	.about_wrap img{
		width: 100%;
	}


	/* ------------------------

	information

	------------------------ */


	.information_img {
		top: -75px;
	}	

	.information_img img{
		width: 100px;
	}

	.information h2 span img{
		width: 130px;
	}

	.information_wrap{
		width: auto;
		margin: 0 auto;
		padding: 65px 15px;
	}

	.tbl_information th{
		display: block;
		padding: 15px 0 5px 0;
		width: auto;
		border-top: 2px solid #181818;
	}

	.tbl_information td{
		display: block;
		border-left: none;
		padding: 0 15px 15px 0;
		text-align: left;
		vertical-align: middle;
		font-size: 16px;
		border-top: none;
	}

	.tbl_information td:before{
		display: none;
	}

	.btn_contact a{
		width: 100%;
		justify-content: center;
		padding: 18px 0;
	}

	.btn_contact a:after{
		display: none;
	}


	/* ------------------------

	films

	------------------------ */

	.films_wrap{
		width: auto;
		padding: 75px 15px 80px 15px;
	}

	.films_wrap p.films_subtxt{
		text-align: left;
		margin-top: 35px;
		margin-bottom: 35px;
	}

	.films_wrap ul{
		flex-wrap: wrap;
	}

	.films_wrap ul li{
		max-width: 100%;
		margin-bottom: 60px;
	}

	.films_wrap ul li img{
		width: 100%;
	}
	
	
	.films_winning{
		padding: 20px;
	}

	.films_winning h3{
		font-size: 22px;
		line-height: 1.5;
	}



	/* ------------------------

	competition

	------------------------ */

	.competition_img img{
		width: 100%;
	}

	.competition_detail{
		padding: 100px 15px 40px 15px;
	}

	.sub_competition{
		text-align: center;
		margin-top: 35px;
	}

	.sub_competition p{
		font-size: 20px;
		line-height: 30px;
		text-align: left;
	}

	p.txt_competition{
		text-align: left;
		margin-bottom: 20px;
	}

	.tbl_outline{
		width: 100%;
		border-collapse: collapse;
		border: none;
		margin-top: 0;
	}


	.tbl_outline td{
		display: block;
		padding: 25px 0;
	}

	.tbl_outline td span{
		line-height: 28px;
		margin-bottom: 15px;
	}

	
	.tbl_outline td span.talk_guest{
		padding-left: 0;
	}


	.tbl_prize{
		display: block;
		margin-top: 20px;
	}

	.img_prize{
		margin-top: 20px;
	}
	
	.img_prize img{
		width: 185px;
		margin-left: 0;
	}

	.btn_entry{
		width: 100%;
	}

	.btn_entry a{
		width: 100%;
		padding: 30px 0;
		justify-content: center;
	}

	.btn_entry a p{
		font-weight: 600;
		font-size: 22px;
		color: #ffffff;
		margin-top: 5px;
	}

	.btn_entry a:after{
		display: none;
	}

	.ttl_ambassador{
		line-height: 1;
		margin-top: 60px;
	}

	.ttl_ambassador img{
		width: 220px;
	}

	.ttl_ambassador span{
		display: block;
		font-size: 18px;
		font-weight: 500;
		margin-left: 0;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.ambassador{
		display: block;
	}

	.ambassador img{
		width: 100%;
		height: auto;
	}

	.ambassador_txt{
		margin-left: 0;
	}
	
	.ambassador_txt p.ambassador_name{
		margin-top: 30px;
	}


	.ttl_guest_talk{
		line-height: 01;
		margin-top: 100px;
	}

	.ttl_guest_talk span{
		display: block;
		margin-left: 0;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.guest_talk ul li{
		display: block;
	}

	.guest_talk img{
		width: 100%;
		height: auto;
	}

	.guest_talk_txt{
		margin-left: 0;
	}

	.guest_talk_txt p.guest_talk_name{
		margin-top: 30px;
	}



	/* ------------------------

	movie

	------------------------ */

	.movie_wrap{
		width: auto;
		margin: 0 auto;
		padding: 55px 15px;
	}

	.movie_con ul{
		display: block;
	}

	.movie_con ul li{
		width: 100%!important;
		margin-top: 50px!important;
	}
	
	.movie_con ul li:first-child{
		margin-top: 0;
	}	

	.movie_con ul li img{
		width: 100%;
	}

	.movie_con ul li p.movie_btn{
		margin-top: 20px;
	}

	.movie_con ul li p.movie_btn a{
		display: block;
	}




	/* ------------------------

	judges

	------------------------ */
	.judges{
		margin-top: 90px;
	}

	.judges h2 span img{
		width: 72px;
	}
	
	.sub_judges{
		text-align: center;
		margin: 0 15px;
		margin-top: 35px;
	}

	.sub_judges p{
		font-size: 20px;
		line-height: 30px;
		text-align: left;
	}
	
	.sub_judges_text {
		margin-bottom: 15px;
		margin-top: 15px;
		font-size: 16px;
	}

	.judges_wrap{
		width: auto;
		margin: 0 auto;
		padding: 35px 15px 40px 15px;
	}


	.judges_wrap ul{
		flex-wrap: wrap;
	}

	.judges_wrap ul li{
		width: 48%;
		max-width: inherit;
	}

	.judges_wrap ul li img{
		width: 90%;
		height: auto;
	}


	/* ------------------------

	profile

	------------------------ */

	.profile_wrap{
		width: auto;
		padding: 50px 15px;
	}

	.profile_con{
		display: block;
	}

	.profile_wrap img{
		width: 150px;
	}

	.profile_txt{
		margin-left: 0;
	}
	
	.profile_txt p{
		font-size: 14px;
		line-height: 1.8;
	}

	.profile_txt p.profile_label{
		margin-top: 20px;
	}


	/* ------------------------

	footer

	------------------------ */

	footer{
		padding: 0;
	}

	.footer_contact{
		background: #ffffff;
		padding: 35px 15px;
	}

	.footer_contact_wrap{
		width: auto;
		display: block;
	}

	.footer_contact_logo{
		width: 260px;
	}

	.footer_contact_con{
		display: block;
		margin-top: 30px;
	}

	.footer_contact_ttl{
		display :inline-block;
		margin-right: 0;
		margin-top: 0;
	}

	.footer_contact_txt{
		margin-top: 10px;
		line-height: 1.5;
	}

	.footer_sub{
		padding: 35px 15px;
	}

	.footer_sub_wrap{
		width: auto;
		display: block;
	}

	.footer_sub_con p{
		margin-bottom: 20px;
		line-height: 1.5;
	}

	.footer_sub_con p span{
		margin-right: 0;
		display: block;
		margin-bottom: 20px;
	}

	.footer_sub_con p span:after {
		margin: 0 0 -10px 0;
		width: 100%;
		height: 1px;
		bottom: 0;
		left: 0;
	}

	.footer_sub_wrap ul{
		margin-top: 30px;
	}
	.footer_sub_wrap ul li a{
		background: #ffffff;
		width: 35px;
		height: 35px;
		border-radius: 50%;
		padding: 8px;
		display: flex;
	}

	.copyright{
		padding: 15px;
		width: auto;
	}

	.copyright p{
		font-size: 12px;
		line-height: 1.5;
	}	

	
}
