html {
}
body {
	color: #666;
	vertical-align: baseline;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	height: 100%;
	line-height:150%;
	overflow-x: hidden;
}
@font-face {
	font-family: 'Aozora-L';
	src:url('../fonts/AozoraMinchoLight.woff') format('woff'),
	url('../fonts/AozoraMinchoLight.ttf') format('truetype');
}
@font-face {
	font-family: 'Aozora-R';
	src:url('../fonts/AozoraMinchoRegular.woff') format('woff'),
	url('../fonts/AozoraMinchoRegular.ttf') format('truetype');
}
@font-face {
	font-family: 'Aozora-M';
	src:url('../fonts/AozoraMinchoMedium.woff') format('woff'),
	url('../fonts/AozoraMinchoMedium.ttf') format('truetype');
}
a{
	text-decoration:none;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
a:link{
	text-decoration:none;
}
a:visited{
	text-decoration:none;
}
a:active,
a:hover {
	opacity: 0.5 ;
	text-decoration:none;
}
a:hover img {
	opacity: 0.7 ;
}
/* phone-menu *************************/
.hm_menu_check {
	display: none;
}
.hm_wrap {
	display: inline-block;
	position :fixed;
	top :0;
	left :0;
	width :100%;
}
.hm_btn {
	position: relative;
	width: 50px;
	height: 15px;
	cursor: pointer;
	display: block;
	z-index: 2;
	margin :25px 0 0 50px;
}
.hm_btn span{
	font-size:13px;
	font-family: 'Crimson Text', serif;
	letter-spacing:2px;
	color:#FFF;
	padding-left:30px;
    display: inline-block;
}
.hm_btn::before {
	-webkit-box-shadow: #fff 0 6px 0;
	box-shadow: #fff 0 6px 0;
}
.hm_btn::after {
	bottom: 0;
}
.hm_btn::before,
.hm_btn::after {
	width: 24px;
	height: 2px;
	background: #fff;
	display: block;
	content: '';
	position: absolute;
	-webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
	transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
}
.hm_menu_wrap {
	width :100%;
	height :auto;
	background: rgba(180,32,51,0.7);
	position: absolute;
	left: -100%;
	top: 100px;
	-webkit-transition: left 0.4s;
	transition: left 0.4s;
}
.hm_menu_check:checked ~ .hm_title {
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.hm_menu_check:checked ~ .hm_btn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(3px, 6px, 0);
	transform: rotate(45deg) translate3d(3px, 6px, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(3px, -6px, 0);
	transform: rotate(-45deg) translate3d(3px, -6px, 0);
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	left: 0;
}
.accordion ul {
	width:100%;
	padding:0 15px;
	margin: 30px 0;
}
.accordion li {
	position:relative;
	list-style:none;
	font-size:18px;
	letter-spacing:2px;
	font-family: 'Crimson Text', serif;
	color:#B42033;
}
.accordion > ul > li > a {
	display: block;
	text-decoration: none;
	cursor: pointer;
	padding: 1.5em 1em;
	position: relative;
	color:#FFF;
}
.accordion > ul > li > div {
	display: none;
	text-align:left;
	padding:0 .8em 1.4em 1em;
	line-height:1.8;
	width:100%;
}
.accordion ol {
	list-style:none;
	margin:0;
	padding:0;
	width:100%;
	overflow:hidden;
}
.accordion ol li{
	border:none;
	width:50%;
	padding:5px 5px 15px 5px;
	float:left;
	letter-spacing:1px;
	font-size:13px;
	line-height:130%;
}
.accordion ol li.list-group-ph{
	width:100%;
	background-color:#f7f7f7;
	padding:10px;
}
.accordion ol li.list-group-ph strong{
	display:block;
}
.accordion li .accordion_icon,
.accordion li .accordion_icon span {
	display: inline-block;
	transition: all .3s;
	box-sizing: border-box;
}
.accordion li .accordion_icon {
	position: absolute;
	width: 15px;
	height: 15px;
	top:30px;
	right:10px;
}
.accordion li .accordion_icon span {
	position: absolute;
    width: 100%;
	height: 1px;
    background-color: #000;
}
.accordion li .accordion_icon span:nth-of-type(1) {
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion li .accordion_icon span:nth-of-type(2) {
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.accordion li .accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion li .accordion_icon.active span:nth-of-type(2) {
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* header *******************************************************/
#header {
	position:fixed !important;
	width:100%;
	height:100px;
	opacity: 0.95;
	top:0;
	z-index:999;
	position:relative;
	text-decoration:none;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#header h1{
	padding:0;
	left: 0;
	right: 0;
	margin:0 auto;
	position:absolute;
	width:102px;
	height:86px;
	top:15px;
}
#header #sns {
	position:absolute;
	right:50px;
	top:25px;
}
/* header-bg ***************************/
.header-bg {
	position:fixed !important;
	width:100%;

	opacity: 0.95;
	top:0;
	z-index:999;
	position:relative;
	background-color:#B42033;
}
.header-bg h1{
	padding:0;
	left: 0;
	right: 0;
	margin:0 auto;
	position:absolute;
	width:80px;
	height:67px;
	top:15px;
}
.header-bg h1 img{
	width:80px;
	height:67px;
}
.header-bg #sns {
	position:absolute;
	right:50px;
	top:25px;
}
#sns ul{
	margin:0;
	padding:0;
	list-style:none;
}
#sns li{
	float:left;
	padding-left:10px;
}
#sns li.song{
	font-size:12px;
	color:#FFF;
	font-family: 'Aozora-M';
	border-left:1px solid #fff;
	line-height:110%;
	margin-left:10px;
}
#sns li.song a{
	color:#FFF;
}
#sns li.song span{
	display:block;
}
#sns p{
	position:absolute;
	right:0;
	color:#FFF;
	font-size:13px;
	padding:0;
	margin:0;
	top:40px;
}
#sns p a{
	color:#FFF;
	border:1px solid #fff;
	padding:1px 5px;
}
/* stage ***************************************************/
#stage{
	position:relative;
	z-index:0;
}
#stage .stage-inner{
	position:absolute;
	z-index:1;
	bottom:10px;
	left: 0;
	right: 0;
	margin:0 auto;
	padding:0 20px;
	text-align:center;
}
#stage .stage-inner h2{
	margin:0 0 15px 0;
	padding:0;
}
#stage .stage-inner h2 img{
	max-width:666px;
	width:100%;
	height:auto;
}
#stage .stage-inner p{
	margin:5px 0 0 0;
	padding:15px 0;
	text-align:center;
	font-family: 'Aozora-M';
	color:#FFF;
	font-size:15px;
}
#stage .stage-inner p span{
	display:block;
}
#stage .stage-inner a.ticket{
	font-family: 'Aozora-M';
	text-align:center;
	font-size:36px;
	border:1px solid #fff;
	padding:10px 20px;
	background-color:#B42033;
	color:#FFF;
	white-space:nowrap;
}
.arrow{
	width: 30px;
	height: 30px;
	border: 1px solid;
	border-color:  transparent transparent #fff #fff;
	transform: rotate(-45deg);
	margin:15px 0;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

#stage ul {
	margin:0;
	padding:0;
	list-style:none;
}
#stage li {
  height: 100vh;
  background: center/cover no-repeat;
}
/* about ***************************************************/
#about{
	width:100%;
	padding-top: 100px;
    margin-top: -100px;
}
#about ul{
	margin:0;
	padding:0;
	list-style:none;
	display: flex;
}
#about ul li{
	margin:0;
	padding:0;
	list-style:none;
	width:33.333333%
}
#about ul li img{
	width:100%;
	height:auto;
    vertical-align: bottom;
}
.about-content {
	background:url(../images/top/world.png) no-repeat;
	background-repeat: no-repeat;
	background-position: calc(50% - 40%) 0;
}
#about .about-inner{
	width:90%;
	max-width:820px;
	margin:0 auto;
	padding:50px 20px;
}
#about h3{
	color:#000;
}
h3 {
	text-align:center;
	font-size:24px;
	font-family: 'Crimson Text', serif;
	letter-spacing:5px;
    font-weight: normal;
	margin:0;
	padding:0 0 40px 0;
}
#about .about-inner p{
	margin:0;
	padding:0;
	font-family: 'Aozora-R';
	font-size:16px;
}
.more {
	text-align:center;
	margin:0;
	line-height:100%;
	padding:0;
}
.more a {
    position: relative;
    display: inline-block;
	padding-left:30px;
	color:#666;
	margin-top:30px;
}
.more a:after {
    display: inline-block;
    position: absolute;
	left:0;
    content: "";
	width: 15px;
	height: 15px;
	border: 1px solid;
	border-color: #666 #666 transparent transparent;
	transform: rotate(45deg);
}
table td a{
    text-decoration: none;
    color:#fff;  
    display: block;
} 

/* guide ***************************************************/
#ct-guide{
	padding-top: 100px;
    margin-top: -100px;
}
#guide {
	width:100%;
	background:url(../images/top/bg-1.jpg) no-repeat;
	background-position: center top 10%;
	background-size:cover;
	min-height:520px;
}
#guide .guide-inner{
	width:90%;
	max-width:940px;
	margin:0 auto;
	padding:50px 0;
}
#guide h3 {
	color:#FFF;
}
.guide-inner {
	color:#FFF;
}
.guide-inner p{
	font-family: 'Aozora-M';
	font-size:14px;
	text-align:center;
}
.guide-inner article{
	display: flex;
	justify-content: space-between;
	width:100%;
}
.guide-inner section{
	width:32%;
    padding: 20px;
	border:1px solid #fff;
	font-family: 'Aozora-M';
    box-sizing: border-box;
}
#guide h4 {
	font-size:21px;
	text-align:center;
	margin-bottom:30px;
    font-weight: 500;
}
#guide h5 {
	font-size:44px;
	text-align:center;
	margin:0;
	padding:0;
}
#guide h5 span{
	font-size:24px;
}
.guide-inner section p{
	text-align:left;
	margin-bottom:0;
	padding-bottom:0;
}
.guide-inner ul{
	margin:0;
	padding:0;
	font-size:14px;
}
.guide-inner li {
	list-style:none;
	padding-left:5px;
}
.guide-inner li:before {
	content: '';
	width: 5px;
	height: 5px;
	display: inline-block;
	border-radius: 100%;
	background: #fff;
	position: relative;
	left: -5px;
	top: -3px;
}
/* schedule ***************************************************/
#ct-schedule{
	padding-top: 100px;
    margin-top: -100px;
}
#schedule {
	width:100%;
	background:url(../images/top/bg-2.jpg) no-repeat;
	background-position: center center;
	background-size:cover;
	min-height:520px;

}
#schedule .sch-inner{
	width:90%;
	max-width:980px;
	margin:0 auto;
	padding:50px 0;
}
#schedule h3 {
	color:#FFF;
}
.sch-inner {
	font-family: 'Aozora-M';
	font-size:14px;
	color:#FFF;
	text-align:center;
}
.sch-inner article.pre{
	display: flex;
	justify-content: space-between;
	width:100%;
}
.sch-inner section {
	width:31%;
	font-family: 'Aozora-M';
	text-align:center;
}
#schedule h4 {
	font-size:24px;
	text-align:center;
	margin:0 0 .7em 0;
    font-weight: normal;
}
#schedule h4 span{
	border:1px solid #fff;
	padding:5px 5px;
}
#schedule h5 {
	font-size:50px;
	text-align:center;
	margin:0 0 .5em 0;
	padding:5px 0 0 0;
    font-weight: normal;
}
#schedule h5 p{
	text-align:center;
	font-size:18px;
    margin: 0 0 1em 0;
}
#schedule h5 span{
	font-size:18px;
}
.sch-inner section p{
	margin:0;
	padding:5px 0;
	line-height:130%;
}
.sch-inner article.finals{
	display: flex;
	justify-content: space-around;
	width:100%;
}
.sch-inner section {
	width:31%;
	font-family: 'Aozora-M';
	text-align:center;
}
.sch-inner section p a{
	font-size:16px;
    color: #fff;
    display: inline-block;
    margin: .5em 0 0 0;
    text-decoration: underline !important;
}
.alert{
	margin-top:30px;
}
/* mission ***************************************************/
#ct-mission{
	padding-top: 100px;
    margin-top: -100px;
}
#mission {
	width:100%;
	background:url(../images/top/bg-3.jpg) no-repeat;
	background-position: center center;
	background-size:cover;
	min-height:520px;

}
#mission .mission-inner{
	width:90%;
	max-width:940px;
	margin:0 auto;
	padding:50px 0;
}
#mission h3 {
	color:#FFF;
}
.mission-inner {
	font-family: 'Aozora-M';
	font-size:14px;
	color:#FFF;
	text-align:center;
}
.mission-inner ul{
	margin:0;
	padding:50px 0 0 0;
	font-size:21px;
	text-align:center;
}
.mission-inner li {
	list-style:none;
	padding-left:5px;
	line-height:180%;
}
.mission-inner li:before {
	content: '';
	width: 5px;
	height: 5px;
	display: inline-block;
	border-radius: 100%;
	background: #fff;
	position: relative;
	left: -5px;
	top: -3px;
}
/* entry ***************************************************/
#entry {
	width:100%;
	padding-top: 100px;
    margin-top: -100px;
}
.read {
	color:#B42033;
	text-align:center;
	font-size:16px!important;
	font-family: 'Aozora-M';
	margin-bottom:30px;
}
#entry h3 {
	color:#000;
}
#entry .entry-inner{
	width:90%;
	max-width:1200px;
	margin:0 auto;
	padding:50px 0;
}
.entry-inner article{
	display: flex;
	justify-content: space-between;
	width:100%;
}
.entry-inner section{
	width:31%;
}
#entry h4 {
	font-size:26px;
	font-family: 'Aozora-M';
	text-align:center;
	margin-bottom:30px;
	color:#B42033;
    font-weight: normal;
}
.entry-inner p{
	font-size:14px;
}
#entry h5{
	font-size:16px;
	text-align:center;
	display:block;
	margin:30px 0 !important;
}
#entry h5 span{
	background-color:#B42033;
	color:#FFF;
	border-radius: 30px;
	padding:7px 30px;
}
.frm {
	border:3px solid #B42033;
	padding:10px;
	margin:25px 0 5px 0;
	font-size:14px;
	line-height:130%;
}
.frm h6{
	text-align:center;
	font-size:14px;
	color:#B42033;
    margin: 0 0 .5em 0;
    padding: 0;
}
.caption {
	font-size:13px !important;
	line-height:130%;
}
.guideline {
	text-align:center;
	display:block;
	margin:40px 0;
}
.guideline span{
	border:2px solid #B42033;
	color:#B42033;
	border-radius: 30px;
	padding:10px 40px;
}
#entry ul{
	margin:0;
	padding:20px 20px;
	border:1px solid #ddd;
	width:100%;
    box-sizing: border-box;
}
#entry li{
	list-style:none;
	font-size:13px;
}
/* footer ***************************************************/
#footer {
	width:90%;
	max-width:1200px;
	margin:0 auto;
	padding:0 0;
}
#footer .footer-sponsor {
	width:100%;
	background-color:#F9EFF1;
	text-align:center;
	padding:15px 20px 35px 20px;
}
.footer-sponsor h3{
	font-family: 'Aozora-R';
	letter-spacing:1px;
	margin:30px 0 15px 0;
	padding:0;
}
.footer-sponsor h3 span{
	background-color:#B42033;
	color:#fff;
	font-size:16px;
	padding:5px 10px;
	margin-right:5px;
}
.footer-sponsor h4{
	font-size:21px;
	font-family: 'Aozora-R';
	color:#B42033;
	letter-spacing:0;
	margin:0 0 15px 0;
	padding:0;
}
#footer .footer-insta {
	width:100%;
	max-width:840px;
	margin:50px auto;
	text-align:center;
}
#footer .footer-insta p{
	font-size:16px;
	font-family: 'Aozora-R';
	padding:0;
	margin:0;
}
#footer .footer-contact {
	display:flex;
	justify-content: space-between;
	width:100%;
	margin-top:50px;
}
.footer-contact h3{
	font-size:21px;
	font-family: 'Aozora-R';
	color:#B42033;
	letter-spacing:1px;
	text-align:left;
	margin:0 0 15px 0;
	padding:0;
}
.footer-contact h3 span{
	background-color:#B42033;
	color:#fff;
	font-size:16px;
	padding:5px 10px;
	margin-right:5px;
}
.footer-contact p{
	margin:0;
	padding:0;
}
.footer-contact img{
	margin:0 15px 0 0;
}
.footer-contact .add{
	font-size:14px;
	line-height:130%;
}
.footer-contact .dial{
	font-size:22px;
	line-height:130%;
	font-family: 'Aozora-M';
	color:#B42033;
	margin:10px 0;
}
.footer-contact a{
	color:#666;
}
.img-border{
	border:1px solid #ddd;
}
.f13{
	font-size:13px;
}
.footer-navi {
	display:flex;
	justify-content: space-between;
	width:100%;
	margin-bottom:5px;
}
.footer-navi small{
	font-size:11px;
	color:#999;
}
.footer-navi ul{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-navi li{
	font-size:13px;
	line-height:90%;
}
.footer-navi li a {
    position: relative;
    display: inline-block;
	padding-left:20px;
	color:#666;
}
.footer-navi li a:after {
    display: inline-block;
    position: absolute;
    content: "";
	left:0;
	width: 10px;
	height: 10px;
	border: 1px solid;
	border-color: #666 #666 transparent transparent;
	transform: rotate(45deg);
}
.pageup {
	width:100%;
	height:50px;
	background-color:#B42033;
	position:relative;
    display: block;
}
.pageup span {
	position:absolute;
    content: "";
	top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    margin: auto;
	width: 20px;
	height: 20px;
	border: 1px solid;
	border-color: #fff #fff transparent transparent;
	transform: rotate(-45deg);
}
@media screen and (max-width: 980px) {
/* footer ***************************************************/
#footer .footer-contact {
	display:block;
}
#footer section {
	text-align:center;
}
.footer-contact h3{
	text-align:center;
}
.footer-contact .dial span{
	display:block;
}
}
@media screen and (max-width: 768px) {
/* phone-menu *************************/
.hm_btn {
	margin :25px 0 0 20px;
}
/* header *******************************************************/
#header #sns {
	right:20px;
}
/* guide *******************************************************/
.guide-inner p{
	text-align:left;
}
.guide-inner article{
	display: block;
}
.guide-inner section{
	width:100%;
	margin-bottom:2em;
}
/* schedule ****************************************************/
#schedule .sch-inner{
	padding:50px 20px;
}
.sch-inner article.pre{
	display: block;
}
/* schedule ****************************************************/
.sch-inner article.finals{
	display: block;
}
.sch-inner section {
	width:100%;
	padding-bottom:55px;
}
.sch-inner section.next {
	position:relative;
}
.sch-inner section.next:after {
    display: inline-block;
    position: absolute;
	left:0;
	right:0;
    content: "";
	width: 30px;
	height: 30px;
	border: 1px solid;
	border-color:  transparent transparent #fff #fff;
	transform: rotate(-45deg);
	margin:0 auto;
}
.sch-inner {
	text-align:left;
}
.alert{
	margin-top:0;
}
/* mission ****************************************************/
.mission-inner {
	text-align:left;
}
.mission-inner ul{
	text-align:left;
}
/* entry ****************************************************/
.entry-inner article{
	display: block;
}
.entry-inner section{
	width:100%;
	margin-bottom:70px;
}
/* footer ***************************************************/
.footer-navi {
	display: block;
	text-align:center;
}
.footer-navi ul{
	margin:1em 0 2em 0;
}
}
@media screen and (max-width: 640px) {
/* header *******************************************************/
#sns li.song{
	display:none;
}
#sns p{
	display:none;
}
#s
/* stage *******************************************************/
#stage .stage-inner p{
	text-align:left;
	padding:10px 0 0 0;
}
#stage .stage-inner p span{
	display:inline;
}
}
@media screen and (max-width: 460px) {
/* stage *******************************************************/
#stage .stage-inner p{
	padding:5px 0 0 0;
	font-size:15px;
	line-height:150%;
    text-align: left;
}
.arrow{
	display:none;
}
/* entry ****************************************************/
.guideline span{
	border:2px solid #B42033;
	color:#B42033;
	border-radius: 30px;
	padding:10px 5px;
}
/* footer ***************************************************/
.footer-sponsor h4{
	text-align:left;
}
.footer-contact h3{
	font-size:16px;
}
.footer-contact h3 span{
	font-size:16px;
}
.footer-contact .add{
	text-align:left;
}
}
@media screen and (max-width: 400px) {
}