html,body{
	margin: 0;
	padding: 0;
	min-height: 100%;
	width: 100%;
}
body{
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-size-adjust:100%;
	font-size-adjust:100%;
	font-display: swap;
	background: url("../img/BG.png") top right;
	background-size: cover;
}

button, input, select, textarea {
	font-family : inherit;
	font-size   : 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


body, .border, .animsition-overlay-slide{
	/*background-color: #e9eceb!important;*/
	background-color: white!important;
}
#menu-modal .inner.flex ul li a:hover{
	color: #e9eceb!important;
}

body.contents-index{
	height: 100%;
}

*,*:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

a:hover,
.page-asset a:hover{
	color: #ffff6d;
}
.animated{
	opacity: 0;
}
.animated.on{
	opacity: 1;
}
main {
	display: block;
	overflow: hidden;
}

.contents-index main{
	margin-top: 6.5rem;
}
article{

}

section{

}
.inner{
	padding: 1rem;
}


.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	-o-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content:center;
	-moz-justify-content:center;
	-ms-justify-content:center;
	-o-justify-content:center;
	justify-content:center;
	-webkit-align-items:center;
	-moz-align-items:center;
	-ms-align-items:center;
	-o-align-items:center;
	align-items:center;
}
.flex.column{
	-webkit-flex-flow: column;
	-moz-flex-flow: column;
	-ms-flex-flow: column;
	-o-flex-flow: column;
	flex-flow: column;
}
.flex.align-start{
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items:flex-start;
	align-items: flex-start;
}
img[src$=".svg"]{
	width: 100%;
	height: 100%;
}

.divider{
	width: 6rem;
	height: 6rem;
	margin: 10rem auto 7rem auto;
	position: relative;
}
.main-index .divider{
	margin: 7rem auto 7rem auto;
}

.divider.footer{
	margin: 6rem auto 7rem auto;
}

.divider:before{
	content: "";
	position: absolute;
	border-bottom: 3px solid black;
	top: 0;
	left: 0;
	height: 3px;
	width: 100%;
	bottom: 0;
	right: 0;
	margin: auto;
	transform: rotate(-320deg);
	-webkit-transition: all 500ms 0.25s ease-in-out;
	transition: all 500ms 0.25s ease-in-out;

}
.divider.on:before{
	transform: rotate(-45deg);
}



/*header*/
nav{
	background: white;
}
#header{
	text-align: center;
	position: relative;
	z-index: 10;
}
#header.fixed{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}
#header.flex{
	justify-content:flex-end;
}
#header-logo{
	position: absolute;
	left: 2rem;
	top: 2rem;
	width: 100px;
	height: auto;
}

#header ul{
	padding-left: 0;
}
#header ul li{
	display: inline;
}
#menu{
	padding: 0 2rem;
}
#menu ul{

}
#menu ul li{
	margin: 0 0.5rem;
}
#menu ul li a{
	text-decoration: none;
	color: black;
}
#menu ul li a:hover{
	color: silver;
}
#menu ul li.lang{

}
#menu ul li.lang a:last-child,
#menu-modal ul li.lang a:last-child{
	margin-left: 0.5rem;
}
#menu ul li.lang a:last-child::before,
#menu-modal ul li.lang a:last-child::before{
	content: '|';
	margin-right: 0.5rem;
}


li#menu-btn,
li#modal-menu{
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
}
li#menu-btn{
	display: none;
}
#menu-box,
#modal-menu-box{
	width: 1.8rem;
	height: 1.2rem;
	cursor: pointer;
	-webkit-transition: all 250ms 0s ease-in-out;
	transition: all 250ms 0s ease-in-out;
}

#menu-box.on:hover,
#modal-menu-box.on:hover{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

#modal-menu-box{
	width: 100%;
	height: 1.2rem;
}

#menu-box .line,
#modal-menu-box .line{
	border-bottom: 1px solid black;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	-webkit-transition: all 500ms 0s ease-in-out;
	transition: all 500ms 0s ease-in-out;
}
#menu-box .line.top,
#modal-menu-box .line.top{
	top: 0;
}
#menu-box .line.middle,
#modal-menu-box .line.middle{
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	opacity: 1;
}
#menu-box .line.bottom,
#modal-menu-box .line.bottom{
	bottom: 0;
	right: 0;
	left: inherit;
}

#menu-box:hover .line.middle,
#modal-menu-box:hover .line.middle{
	width: 50%;
}

#menu-box.on .line.middle,
#modal-menu-box.on .line.middle{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	opacity: 0;
}

#menu-box.on .line.top,
#modal-menu-box.on .line.top{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
}
#menu-box.on .line.bottom,
#modal-menu-box.on .line.bottom{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: 50%;
}
#menu-modal{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index:-10;
	opacity: 0;
	background: rgba(254,255,255,0.9);
	-webkit-transition: all 500ms 0s ease-in-out;
	transition: all 500ms 0s ease-in-out;
}
#menu-modal.on{
	opacity: 1;
	z-index: 9;

}
#menu-modal .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

#menu-modal .inner.flex{
	height: 100%;
}

#menu-modal .inner.flex ul{
	padding: 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

#menu-modal .inner.flex ul li{
	list-style: none;
	margin: 1rem auto;
}

#menu-modal .inner.flex ul li a{
	text-decoration: none;
	color: black;
}
#menu-modal .inner.flex ul li a:hover{

}

#menu ul li.lang a.disable,
#menu-modal .inner.flex ul li.lang a.disable{
	color: silver;
}

/*footer*/
#footer{
	font-display: swap;
	background: #FFDBDB;
	color: #767676;
}
#footer .inner{
	text-align: center;
}
#footer-menu{
	margin-bottom: 1rem;
	font-size: 0.9rem;
}
#footer-menu a{
	text-decoration: none;
	margin: 0 1rem;
	color: #767676;
}
#copyright{
	font-family: brandon-grotesque, sans-serif;
	font-size: 0.8rem;
	line-height: 1;
	display: inline-block;
	margin: auto;
	letter-spacing: 0.2rem;
}

/*contents-main*/
#fv{
	width: 100%;
	max-width: 1680px;
	margin: auto;
	height: 100vh;
	position: relative;
}

#fv-bg-dot{
	position: absolute;
	left: 0;
	top: 0;
	width: 40vw;
}
#fv-dot{
	position: absolute;
	right: 10rem;
	top: -5rem;
}
#fv-kv-container{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: auto;
	width: 65vw;
}
.announcement #fv-kv-container{
	width: 100%;
}
.kv-container{
	position: relative;
}
#fv-img{
	width: 100%;
	height:auto;
}
#fv .fv-date{
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #e2e665;
	position: absolute;
	bottom: -1.5rem;
	letter-spacing: 0.4rem;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
}
#fv .fv-date::before,
#fv .fv-date::after{
	content: '';
	position: absolute;
	width: 6rem;
	height: 3px;
	background: #e2e665;
}
#fv .fv-date::before{
	transform: rotate(-45deg);
	left: -5rem;
	top: 1.5rem;
}
#fv .fv-date::after{
	transform: rotate(-45deg);
	right: -5rem;
	bottom: 1.5rem;
}


#title-1,#title-2,#title-3{

}
#title-1{

}

#catch{
	width: 60%;
}


#title-2{
	left: 4rem;
	bottom: 0;
	width: auto;
	height: 6rem;
}
#title-3{
	position: relative;
	height: 3.5rem;
	top: 3rem;
}

section.top{
	margin-top: 10rem;
}
#lede,
#guideline{
}
#award .flex.list{
	margin-top: 2.5rem;
	position: relative;
}

#lede h1, #lede h2, #spec .flex{
	font-family: 'Kosugi Maru', sans-serif;
}
#fv h1{
	position: absolute;
	margin: auto;
	bottom: 1rem;
	height: auto;
	width: 200px;
	left: 2%;
}
#line-1,#line-2{
	position: absolute;
	width: 40%;
	height: 40%;
	z-index: -1;
}
#line-1{
	left: -30px;
	top: -25px;
}
#line-2{
	right: -30px;
	bottom: -25px;
}

#fv h2{
	color: #5FAACB;
	font-family: fot-tsukubrdgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	position: absolute;
	font-size: 18px;
	background: white;
	padding: 2rem;
	left: -18rem;
	top: 9rem;
	line-height: 2;
}
#fv h2::before,#fv h2::after{
	content: '';
	position: absolute;
	width: 8rem;
	height: 3px;
	background: #5FAACB;
}
#fv h2::before{
	transform: rotate(-45deg);
	left: -50px;
	top: 15px;
}
#fv h2::after{
	transform: rotate(-45deg);
	right: -50px;
	bottom: 15px;
}


#lede h2 span{
	background: linear-gradient(transparent 60%, #FFEB3B 60%);
}
.intro-txt{
	font-weight: normal;
	font-size: 1rem;
	margin: 0.125rem 0;
}

#fv .fv-presen{
	position: absolute;
	right: 15%;
	bottom: 15%;
	background: rgb(255 255 255 / 63%);
	padding: 3rem;
}
.announcement #fv .fv-presen{
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 0;
}

#fv .fv-presen h2{
	position: static;
	background: none;
	padding: 0;
	text-align: center;
	font-size: 3rem;
	color: red;
	margin: 0;
	line-height: 1;
}
.announcement #fv .fv-presen h2{
	font-size: 4rem;
	letter-spacing: 2rem;
	text-indent: 3rem;
}
.announcement #fv .fv-presen p .sp{
	display: none;
}
.announcement #fv .fv-presen p{
	font-size: 1.75rem;
}
#fv .fv-presen h2::before{
	background: #FF0000;
}
#fv .fv-presen h2::after{
	background: #FF0000;
}
#fv .fv-presen h3{
	text-align: center;
	font-weight: 500;
}
#fv .fv-presen .entry.btn{
	font-size: 1rem;
	padding: 0.5rem 1rem;
	width: 100%;
	margin: 1rem auto;
	display: block;
}

#lede .flex{
	/*	-webkit-flex-flow: column;
	-moz-flex-flow: column;
	-ms-flex-flow: column;
	-o-flex-flow: column;
	flex-flow: column;
	overflow: hidden;*/
}

#spec .flex{
	max-width: 625px;
	width: 100%;
	font-size: 0.8rem;
	line-height: 1.75;
	margin: auto;
	box-sizing: border-box;
}

.spec-title, .spec-body{
	border-bottom: 1px solid black;
	padding: 0.25rem 0;
}

.spec-title{
	width: 30%;
	border-right: 1px solid black;
}
.spec-body{
	width: 70%;
	padding-left: 1rem;
}
.spec-body.w100{
	width: 100%;
	font-size: 0.8rem;
	padding: 1rem 0;
}

.section-title{
	width: 25%;
	position: relative;
}
.section-title h3{
	font-size: 2.25rem;
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 0;
}
.rubi{
	font-size: 0.9rem;
}
.guideline .rubi{
	margin-left: 8.5rem;
}
.award .rubi{
	margin-left: 7rem;
}
.judge .rubi{
	margin-left: 4.5rem;
}
.entry .rubi{
	font-size: 1.25rem;
}
.section-title span.icon{
	width: 45px;
	display: block;
}
.section-title span.icon img{
	width: 100%;
	height: auto;
}
.section-title.about h3{
	color: #F573A5;
}
.section-title.guideline{
	margin-left: auto;
	margin-right: 10%;
}
.section-title.guideline h3{
	color: #00891A;
}
.section-title.guideline,
.section-title.announce,
.section-title.judge{
	width: 880px;
	margin-left: auto;
	margin-right: auto;
}
.section-title.guideline{
	text-align: right;
}
.section-title.judge{
	width: 687px;
}
.section-title.announce h3{
	color: #840095;
}
.section-title.judge h3{
	color: #5FAACB;
}
.section-title.award,
.section-title.entry,
.section-title.faq{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.section-title.entry{
	width: 200px;
}
.section-title.faq{
	width: 100px;
}

.section-title.guideline{
	width: 768px;
}
.section-title.award h3{
	text-align: center;
	color: #969615;
}
.section-title.entry h3{
	color: #FF0000;
}
.section-title.faq h3{
	color: #767676;
}

.section-title span.icon{
	position: absolute;
}

.section-title span.icon.about{
	top: 0;
	left: 5.5rem;
}
.section-title span.icon.guideline{
	top: -2.5rem;
	right: 6.5rem;
	width: 35px;
}
.section-title span.icon.announce{
	left: 16rem;
	top: -2rem;
}
.section-title span.icon.award{
	left: 0;
	bottom: -2.5rem;
	right: 0;
	margin: auto;
}
.section-title span.icon.entry{
	bottom: -1rem;
	left: -3.5rem;
}
.section-title span.icon.faq{
	right: 0;
	top: -1.5rem;
	width: 30px;
}
.entry.btn{
	background: #FF0000;
	color: white;
	text-decoration: none;
	font-family: brandon-grotesque, sans-serif;
	width: 687px;
	text-align: center;
	padding: 1rem;
	font-size: 2rem;
	border-radius: 0.25rem;
}
.entry.btn:hover{
	background: silver;
}
.entry.btn.disable{
	background: silver;
}

.icon.circle{
	width: 100px;
	position: absolute;
	bottom: -34px;
	right: 6rem;
	height: auto;
	z-index: -1;
}
.icon.circle img{

}

.about-footer.flex{
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}
.about-footer.flex img{
	width: 160px;
	margin: 0 45px;
}
.about-footer.flex img:last-child{
	margin-right: 0;
}

.contents{
	position: relative;
	font-display: swap;
	font-weight: 400;
	font-style: normal;
	-webkit-transition: all 500ms 0s ease-in-out;
	transition: all 500ms 0s ease-in-out;
}

.thumb{
	position: relative;
	background-color: #ffff6d;
	background-image: url('https://kodomophoto.jp/assets/img/loader/tail-spin.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size:19px 19px;
}

.thumb img{
	width: 100%;
	-webkit-transition: all 500ms 0s ease-in-out;
	transition: all 500ms 0s ease-in-out;
}
.thumb img[src$=".svg"]{

}
.thumb img.loaded{

}
.thumb img.loader{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 2rem;
	height: 2rem;
}
.thumb img.loader.loaded{
	display: none;
}

.contents .thumb img.loading{

}
.contents .thumb img.progress{

}

.thumb.footer{
	min-height: 40vh;
	background: transparent;
	width: 100%;
	background-image: none;
}


.txt, .title, .cat, .date{
	-webkit-transition: all 900ms 0s ease-in-out;
	transition: all 300ms 0s ease-in-out;
}

/*共通*/

.divider{
	width: 2px;
	background: black;
	position: absolute;
}
#lede .divider{
	top: -20rem;
	left: 4rem;
	height: 15rem;
}
#guideline .divider{
	top: -30rem;
	right: 2.25rem;
	height: 23rem;
}
#announce .divider{
	top: -19.5rem;
	left: 15rem;
	height: 12rem;
}
#award .divider{
	top: -12rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 12rem;
}
#award .divide{
	width: 100%;
	position: relative;
}
#award .divide .divider{
	left: 6rem;
	top: 0;
	margin: inherit;
	height: 120%;
}
#entry .divider,
#faq .divider{
	top: -12rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 12rem;
}
#faq .divider {
	height: 10rem;
}

.flex.list{
	max-width: 880px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.flex.list ul.flex{
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	margin-bottom: 2rem;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

.list-title, .list-body{
	padding: 1rem;
	border: 2px solid black;
	list-style: none;
	background: white;
}
.announcement .list-title, .announcement .list-body{
	border: none;
}

.flex.list ul.flex.banner{

}

.announcement ul.banner.ad-info{
	border: 1px solid black;
	background: white;
	padding: 2rem;
	list-style: none;
}
.announcement ul.banner.ad-info li{
	text-align: center;
}
.announcement ul.banner.ad-info li:last-child{
	margin-top: 1rem;
}

.flex.list ul.flex.banner .list-title{
	border: none;
	background: transparent;
}
.flex.list ul.flex.banner .list-body{
	padding: 0;
	display: block;
	position: relative;
	border: 1px solid black;
}
.flex.list ul.flex.banner .list-body.no-border{
	border: none;
}
.flex.list ul.flex.banner a img:hover{
	opacity: 0.8;
}


#award .graph{
	margin-bottom: 2.5rem;
}
#award .list-title{
	width: 25%;
	padding-left: 2.2rem;
	position: relative;
}
.announcement #award .list-title{
	width: 100%;
	padding-left: 0;
	font-size: 2rem;
}
.announcement #award .list-body ul li{
	list-style: none;
	text-align: center;
	margin-bottom: 0.25rem;
	font-size: 1.25rem;
}
#award .list-body{
	width: 75%;
}
.announcement #award .list-body{
	position: static;
	width: 100%;
}
#award .list-title.gold{
	color: #969615;
	border-color: #969615;
}
#award .list-title.silver{
	color: #767676;
	border-color: #767676;
}
#award .list-title.brondz{
	color: #836000;
	border-color: #836000;
}
img.award-list-icon{
	position: absolute;
	width: 25px;
	left: 6px;
	margin: auto;
	top: 0;
	bottom: 0;
}
.announcement img.award-list-icon{
	position: static;
	margin: 0 1rem 0 0;
}
.announcement #award .list-body.photo{
	padding: 0;
	background: none;
}
.announcement .judge-photo{
width: 100%;
margin-top: 2rem;
}
.announcement .judge-photo img{
	width: 33.333%;
}
.announcement #award .list-body.photo ul.flex{
	margin-bottom: 4rem;
}
.announcement #award .list-body.photo img{
	width: 100%;
}
.announcement #award .list-body.photo img.small{
	width: 75%;
}
.announcement #award .list-body.photo .title,
.announcement #award .list-body.photo .name,
.announcement #award .list-body.photo .comment{
	text-align: center;
	width: 100%;
	font-size: 2rem;
}
.announcement #award .list-body.photo .title{
	font-weight: 500;
}
.announcement #award .list-body.photo .name{
	font-size: 1.25rem;
}
.announcement #award .list-body.photo .comment{
	font-size: 1rem;
	text-align: left;
	margin-top: 2rem;
	border-top: 1px dotted black;
	border-bottom: 1px dotted black;
	padding: 1rem 0;
	position: relative;
	background: white;
}
.comment-catch{
	position: absolute;
	width: 10rem;
	height: 2.5rem;
	left: 0;
	top: -1.5rem;
	justify-content: flex-start;
	background: white;
}
.comment-catch .icon.judge{
width: 2rem;
}
.comment-catch .icon.judge img{
width: 100%;
}
.comment-catch .rubi{
margin-left: 1rem;
}
.announcement #award #prize .list-body.photo ul.flex{
	width: 50%;
    margin: 2rem auto;
}
.announcement #award #prize .list-body.photo .title{
	    font-size: 1.35rem;
}


#judge .flex.list ul.flex.banner .list-body{
	border: none;
	background: transparent;
}

.flex.list ul.flex.banner .list-body img{
	width:100%;
}
.flex.list ul.flex.banner .list-body .caption{
	font-size: 0.8rem;
	position: absolute;
	top: -1.4rem;
	left: 0;
}
.announcement .flex.list ul.flex.banner .list-body .caption{
	top: 0;
}
.flex.list ul.flex.banner .list-body .caption.bottom{
	position: static;
	font-size: 0.6rem;
}
.flex.list ul.flex.banner .list-body .caption.bottom br{
	display: none;
}
.list-title{
	width: 20%;
	position: relative;
	z-index: 1;
	text-align: center;
}
.list-title.red{
	color: #FF003B;
	border-color: #FF003B;
}
.list-body{
	width: 80%;
	position: relative;
	left: -1.5rem;
	top: 1.5rem;
	padding-left: 2rem;
	padding-right: 2rem;
	text-align: justify;
	word-break: break-all;
}
.list-body.large{
	font-size: 1.4rem;
}

.list-body ul{
	padding-left: 1.5rem;
}
.list-body ul li{
	list-style: disc;
	margin-bottom: 1rem;
}
.list-body ul li:last-child{
	margin-bottom: 0;
}
#judge .flex.list{
	max-width: 687px;
}
#judge .flex.list ul.flex{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items:center;
	align-items: center;
}
#judge .flex.list ul.flex.reverse{
	-webkit-flex-flow: row-reverse wrap;
	-moz-flex-flow: row-reverse wrap;
	-ms-flex-flow: row-reverse wrap;
	-o-flex-flow: row-reverse wrap;
	flex-flow: row-reverse wrap;
}


#judge .flex.list ul.flex.banner .list-title{
	width: 35%;
	position: relative;
}

#judge .flex.list ul.flex.banner .list-title::after{
	content: '';
	position: absolute;
	height: 2px;
	width: 90px;
	background: #5FAACB;
	right: 0;
	top: 0;
	transform: rotate(-45deg);
}
#judge .flex.list ul.flex.banner.reverse .list-title::after{
	transform: rotate(45deg);
	left: 0;
	right: inherit;
	top: 2.5rem;
	width: 80px;
}

#judge .flex.list ul.flex.banner .list-title img{
	width: 100%
}
#judge .flex.list ul.flex.banner .list-body{
	width: 65%;
	font-size: 0.8rem;
	position: static;
	font-weight: 300;
	line-height: 1.75;
}
#judge .flex.list ul.flex.banner .list-body h4{
	font-size: 1rem;
	font-weight: 500;
}
#judge .flex.list ul.flex.banner .list-body h4 span{
	font-weight: 300;
}
#judge .flex.list ul.flex.reverse .list-body h4{
	text-align: right;
}

#faq ul{
	width: 100%;
	line-height: 2;
}
#faq ul li{
	list-style: none;
}
#faq ul li.title{
	font-weight: 600;
}
#faq ul li.title::before{
	content: '■';
}
#faq ul li.q{
	color: #FF7B7B;
}
#faq ul li.a{
	color: #0057AD;
}

/**/


@-webkit-keyframes txt-motion-mask{
	34%{-webkit-transform:translateX(0);transform:translateX(0)}
	100%{-webkit-transform:translateX(105%);transform:translateX(110%)}
}
@keyframes textAnimation-mask{
	34%{-webkit-transform:translateX(0);transform:translateX(0)}
	100%{-webkit-transform:translateX(105%);transform:translateX(110%)}
}

@-webkit-keyframes txt-motion-txt{
	0%{color:transparent}
	33%{color:transparent}
	34%{color:#000}
	100%{color:#000}
}
@keyframes txt-motion-txt{
	0%{color:transparent}
	33%{color:transparent}
	34%{color:#000}
	100%{color:#000}
}



@media screen and (min-width: 481px) {

	#works.top .contents,
	#works-list.page .contents{
		width: calc(100% / 3);
	}
	.contents.left{
		padding: 0 2.5rem;
		z-index: 1;
	}
	li#menu{
		left: 2.5rem;
	}
	.contents.right .thumb{
		margin-bottom: 1px;
	}
	#lede h1{

	}

	#fv .fv-date{
		width: 325px;
		font-size: 1.3rem;
	}

}
@media screen and (min-width: 769px) {
	.inner{
		padding: 2rem;
	}

	#fv .fv-date{
		width: 325px;
		font-size: 1.3rem;
	}

	.contents.left{
		padding: 0 3rem;
	}
	#title-1{
	}
	#catch{
		width: 250px;
	}
	#fv h1{
		width: 250px;
	}

	#lede h1{
		/*-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;*/
		height: -moz-max-content;
		height: -webkit-max-content;
		height: -o-max-content;
		height: -ms-max-content;
		line-height: 3.5rem;
		font-size: 1.75rem;
		margin-top: 6rem;
		position: relative;
		background: white;
	}


	#lede h2{
		width: 75%;
		margin-top: 2.5rem;
		font-size: 1.2rem;
		line-height: 2;
		word-break: break-all;
		white-space: normal;
		position: relative;
	}
	#lede .about-footer.flex{
		position: relative;
		z-index: 1;
		margin-right: -2rem;
		max-width: 1280px;
	}
	#lede h2 span{
		background: linear-gradient(transparent 80%, #ffafcd 80%);
	}
	.intro-txt{
		font-weight: normal;
		font-size: 1rem;
		margin: 0.125rem 0;
	}

	#lede .flex{
		/*-webkit-flex-flow: column;
		-moz-flex-flow: column;
		-ms-flex-flow: column;
		-o-flex-flow: column;
		flex-flow: column;*/
		max-width: 1080px;
		width: 100%;
		box-sizing: border-box;
		margin-right: auto;
		margin-left: auto;
	}

	#spec .flex{
		max-width: 545px;
		width: 100%;
		font-size: 1.3rem;
		line-height: 1.75;
		margin: auto;
		box-sizing: content-box;
	}

	.spec-title, .spec-body{
		border-bottom: 1px solid black;
		padding: 0.25rem 0;
	}

	.spec-title{
		width: 30%;
		border-right: 1px solid black;
	}
	.spec-body{
		width: 70%;
		padding-left: 1rem;
	}
	.spec-body.w100{
		width: 100%;
		font-size: 0.8rem;
		padding: 1rem 0;
	}


}

@media screen and (min-width: 897px) {
	#fv h1{
		left: 4%;
	}
	.inner{
		padding: 3rem;
		box-sizing: border-box;
	}

	#fv{
		height: 100vh;
	}

	#fv .fv-date{
		width: 325px;
		font-size: 1.3rem;
	}
	#fv .fv-date::before, #fv .fv-date::after {
		content: '';
		position: absolute;
		width: 6rem;
		height: 3px;
		background: #e2e665;
	}

	#fv .fv-date::before {
		transform: rotate(-45deg);
		left: -5rem;
		top: 1.5rem;
	}

	#fv .fv-date::after {
		transform: rotate(-45deg);
		right: -5rem;
		bottom: 1.5rem;
	}

	#lede h1{

	}
	#line-1,#line-2{
		position: absolute;
		width: 50%;
		height: 50%;
		z-index: -1;
	}
	#line-1{
		left: -90px;
		top: -50px;
	}
	#line-2{
		right: -90px;
		bottom: -50px;
	}

}

@media screen and (min-width: 1025px) {
	#fv h1{
		left: 9%;
		z-index: 1;
	}
	#lede h1{
		font-family: 'Kosugi Maru', sans-serif;
		/*-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;*/
		height: -moz-max-content;
		height: -webkit-max-content;
		height: -o-max-content;
		height: -ms-max-content;
		line-height: 3.5rem;
		font-size: 1.75rem;
		width: 100%;
		max-width: 540px;
		text-align: center;
	}
	#fv .fv-date{
		width: 475px;
		font-size: 1.6rem;
	}
	#fv .fv-date::before, #fv .fv-date::after {
		content: '';
		position: absolute;
		width: 6rem;
		height: 3px;
		background: #e2e665;
	}

	#fv .fv-date::before {
		transform: rotate(-45deg);
		left: -5rem;
		top: 1.5rem;
	}

	#fv .fv-date::after {
		transform: rotate(-45deg);
		right: -5rem;
		bottom: 1.5rem;
	}

	#title-1{

	}
	#title-3{
		position: absolute;
		width: auto;
		height: 3.3rem;
		bottom: 11%;
		right: 8%;
		top: inherit;

	}
	#catch{
		width: 300px;
	}


}

@media screen and (min-width: 1367px) {

	#fv h1{
		left: 10%;
	}

	#fv .fv-date{
		font-size: 2.25rem;
		width:700px;
	}

}
@media screen and (min-width: 1409px) {
	#fv h1{
		left: 15%;
	}

}
@media screen and (min-width: 1537px) {
	#fv h1{
		left: 17%;
		width: 300px;
		z-index: 1;
	}

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

	li#menu-btn{
		display: block;
	}
	#fv-kv-container{
		width: 100%;
		position: static;
	}
	#fv h1{
		left: 0;
		right: 0;
		z-index: 1;
		position: relative;
		width: 40vw;
		bottom: -10vh;
	}
	#fv-dot{
		right: -2rem;
	}
	#fv h2{
		position: static;
		/* width: 100%; */
		margin-top: 2rem;
	}
	.kv-container{
		width: 100vw;
		height: 40vh;
	}
	#fv-img{
		height: 100%;
		object-fit: cover;
	}
	#fv .fv-date{
		width: 500px;
		text-align: left;
		font-size: 1rem;
		transform: rotate(90deg);
		animation-name: none;
		bottom: inherit;
		right: -13.2rem;
		top: 9.5rem;
		left: inherit;
		margin: inherit;
		z-index: 10;
	}
	#fv .fv-date::before, #fv .fv-date::after{
		content: inherit;
		background: transparent;
	}
	#lede .divider,
	#guideline .divider,
	#announce .divider,
	#award .divide .divider{
		right: 0;
		left: 0;
	}
	#lede .divider{
		top: -18rem;
		height: 13rem;
	}
	#award .divide .divider{
		margin: auto;
		height: 115%;
	}
	#lede .flex{
		flex-flow: column;
		align-items: center;
	}
	#lede .about-footer.flex{
		flex-flow: row wrap;
	}
	.about-footer.flex img{
		width: calc(100% /3);
		margin: 0;
	}
	#lede h2{
		width: 90%;
		line-height: 2;
	}
	.section-title.guideline{
		width: 100%;
		text-align: center;
	}
	#guideline .divider{
		top: -16rem;
		height: 8rem;
	}
	.flex.list ul.flex{
		flex-flow: column;
	}
	.list-title{
		width: 50%;
	}
	#award .list-title{
		width: 75%;
	}
	.list-body,
	#award .list-body{
		width: 100%;
		left: 0;
		top: -0.5rem;
	}
	.section-title.announce{
		width: 100%;
		text-align: center;
	}
	.list-body ul{
		padding-left: 0.2rem;
	}
	.flex.list ul.flex.banner .list-body .caption{
		background: white;
	}
	.section-title.judge{
		width: 100%;
		text-align: center;
	}
	.section-title span.icon{
		left: 35%;
	}
	#judge .flex.list ul.flex.banner .list-title{
		width: 70%;
	}
	#judge .flex.list ul.flex.banner .list-title::after,
	#judge .flex.list ul.flex.banner.reverse .list-title::after{
		left: 1rem;
		bottom: 1rem;
		top: inherit;
	}
	#judge .flex.list ul.flex.banner.reverse .list-title::after{
		transform: rotate(-45deg);
	}
	#judge .flex.list ul.flex.banner .list-body{
		width: 90%;
	}
	#judge .flex.list ul.flex.reverse .list-body h4{
		text-align: left;
	}
	.section-title span.icon.entry {
		bottom: -0.5rem;
		left: -2.5rem;
	}
	.entry.btn{
		width: 95%;
	}
	#faq .divider{
		height: 8rem;
		top: -10rem;
	}
	#faq ul{
		padding: 0 1rem;
	}
	#footer .inner{
		padding-bottom: 3rem;
	}
	.icon.circle{
		bottom: 0;
	}
	nav{

	}
	#header-logo{
		left: 1rem;
		top: 1rem;
	}
	#menu{
		display: none;
	}
	.flex.list ul.flex.banner .list-body .caption.bottom br{
		display: block;
	}
	.list-body ul li{
		text-align: left;
	}
	#header-logo{
		display: none;
	}
	#lede .divider{
		z-index: -1;
	}
	#fv-bg-dot{
		width: 80vw;
	}
	.announcement #fv{
		height: auto;
	}
	.announcement #fv .fv-presen h2{
		font-size: 2.5rem;
    letter-spacing: 0.5rem;
    margin-top: 3rem;
	}
	.announcement #fv .fv-presen p .sp{
		display: block;
	}
	.announcement #fv .fv-presen p{
		font-size: 1.25rem;
		text-align: center;
	}
	.announcement #lede .sp{
		display: none
	}
	section#lede.top{
		    margin-top: 3rem;
	}
	.announcement #lede .divider{
		top: -10rem;
    height: 4.5rem;
	}
	.announcement #award .divider{
		top: -10rem;
    height: 9rem;
	}
	.announcement #award #prize .list-body.photo ul.flex{
		width: 85%;
	}
	.announcement .judge-photo img{
		width: 100%;
	}
	#fv .fv-presen{
		position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background: rgb(255 255 255 / 63%);
    padding: 2rem;
    border-radius: 0;
    margin: auto;
    width: 100%;
    height: 100%;
	}
	#fv .fv-presen h3{
		margin-top: 3rem;
	}
}
@media screen and (max-width: 320px){
	#fv .fv-presen h2{
font-size: 2rem;
	}
	#fv .fv-presen h3{
		margin-top: 1.5rem;
	}
	#fv .fv-presen p{
		font-size: 0.75rem;
	}
}
