/* reset include */
@import url("reset.css");
@import url('https://fonts.googleapis.com/css?family=Armata&display=swap');
body {
	font-size: 14px;
	color: #111;
}
a:link, a:visited{
	color: #111;
}
a:hover, a:active{
	color: #111;
}
img{
	vertical-align: bottom;
}
input[type="text"],input[type="button"],input[type="submit"] {
	-webkit-appearance: none !important;
}
.dopc{
	display: none;
}
small {
    font-size: 80%;
}
#wrapper{
	width: 100%;
}
.bgPatterns1{
}
header {
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.15s ease;
    background-color: #ffea43;
}


#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    padding-top: 8px;
    padding-left: 15px;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*メニューの中身*/
.navInnerContent{
    padding: 30px;
}
.navInnerContent img{
    width: 80%
}
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;/*最大幅（お好みで調整を）*/
  height: 100%;
  background: #ffea43;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
.navInnerContent ul{
    padding-top: 30px;
    text-align: center
}
.navInnerContent li{
    font-size: 15px;
    line-height: 50px;
}
.navInnerContent li a {
  position: relative;
  display: inline-block;
  transition: .3s;
}
.navInnerContent li a::after {
  position: absolute;
  bottom: .3em;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #0588ff;
  opacity: 0;
  transition: .3s;
}
.navInnerContent li a:hover::after {
  bottom: 0;
  opacity: 1;
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.header-logo-menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-area{
    text-align: center;
    margin: auto;
    padding-right: 15px;
    width: 120px;
}
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 500ms;
	}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}
.caption{
   width: 100%;
   padding-bottom: 20px;
}
nav{
	background: rgba(255,255,255, 0.9);
}
nav .navInner{
	width: 100%;
	margin: 0 auto;
}
nav .navInner #navLogo{
	width: 260px;
}
nav .navInner #navLogo img{
	width: 100%;
}
nav .navInner ul{
	width: 800px;
	padding: 20px 10px 10px 10px;
	overflow: hidden;
}
nav .navInner li{
	width: calc(97%/7);
	margin-right: 0.5%;
	font-size: 18px;
	text-align: center;
}
nav .navInner li:last-child{
	margin-right: 0;
}
nav .navInner li a{
	color: #111;
}
.headNav {
	width: 100%;
	height: 70px;
	padding: 10px 0;
	position: fixed;
	top: -90px;
	left: 0;
	z-index: 1000;
}
.slide-down {
	animation-name: slideDown;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-delay: 0s;
	transform-origin: 50% 50% 0;
	animation-duration: .5s;
	top: 0;
}
@keyframes slideDown {
	0% {
		top: -90px;
	}
	100% {
		top: 0;
	}
}
.slide-up {
	animation-name: slideUp;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-delay: 0s;
	transform-origin: 50% 50%  0;
	animation-duration: .5s;
	top: -90px;
}
@keyframes slideUp {
	0% {
		top: 0;
	}
	100% {
		top: -90px;
	}
}

.main{
	margin-top: 53px;
    background: url(/img/bg_top_01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
section{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
article{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
/*header*/
#headerInner{
	margin: 0 auto;
	overflow: hidden;
}
#headerInner a{
	display: block;
}
#headerInner img{
    width: 45%;
    padding-top: 3px;
    padding-right: 15px;
}
#headerInner #headerLogo{
    width: 87%;
    float: right;
    text-align: center;
    margin: auto;
}
#headerInner #telBtn{
	width: 15%;
	margin: 3px 2% 0 2%;
	float: left;
}
#headerInner #headerMenu{
	width: 13%;
	float: left;
    background-color: #0571ff;
    height: 53px;
    padding: 0;
    z-index: 0;
}
#headerInner .dataBox{
	font-size: 13px;
	text-align: right;
	overflow: hidden;
	float: right;
}
#headerInner .dataBox .tel{
	float: left;
}
#headerInner .dataBox .time{
	float: left;
}
header .memberHead {
	color: #111;
	font-size: 16px;
	text-align: center;
}
/*  swingMenu  */
.swingMenu {
	height: 100%;
    background: rgb(243 245 150);
    z-index: 1000;
    position: fixed;
    top: 50px;
    display: none;
    overflow: hidden;
    padding-top: 30px;
}
.swingMenu #swingMenuInner{
	overflow: hidden;
}
.swingMenu #swingMenuInner ul{
	width: 100%;
    text-align: center;
    height: 100%;
    position: absolute;
    top: 15%;
}
.swingMenu #swingMenuInner li{
	padding: 10px 0;
	font-size: 20px;
	box-sizing: border-box;
	position: relative;
}
.swingMenu #swingMenuInner li:last-child{
	border-bottom: none;
}
.swingMenu #swingMenuInner li .arrow {
	position: absolute;
	top: -8px;
	right: 2%;
	width: 30px;
	height: 30px;
	display: inline-block;
	text-align: center;
}
.swingMenu #swingMenuInner li .arrow img{
	width: 100%;
}
.swingMenu #swingMenuInner li .navBottom{
	font-size: 12px;
}
.swingMenu #swingMenuInner li a{
	color: #0a71ff;
	display: block;
    font-weight: 800;
}

/*content*/
.conInner{
	width: 96%;
	margin: 0 auto;
	padding: 0px 2%;
	overflow: hidden;
}
#concept p{
	line-height: 30px;
}
.conStyle1{
	width: 100%;
	margin: 0 auto;
	color: #333;
	overflow: hidden;
}
.conStyle1 p{
	line-height: 30px;
}
.conStyle1 p span.head{
	font-size: 24px;
	display: block;
}
.conStyle1 p span.bottom{
	float: right;
}
.conStyle2{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.conStyle2 p{
	line-height: 30px;
}
.conStyle2 p span{
	font-size: 16px;
}
.conStyle3 p{
	margin-left: 20px;
	font-size: 14px;
	line-height: 20px;
}
.conStyle4{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.conStyle4 .conTitle{

}
.conTitle {
    display: flex;
    align-items: center;
}
.conTitle span{
    font-family: 'Russo One', sans-serif;
    font-size: 27px;
    padding: 10px 0 0;
    font-weight: 700;
}
.conTitle:before,
.conTitle:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}

.conTitle:before {
    margin-right: 1rem;
}

.conTitle:after {
    margin-left: 1rem;
}
.conTitle2{
	font-family: 'Armata', sans-serif;
	margin-bottom: 10px;
	padding-left: .5em;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -1px;
	position: relative;
	overflow: hidden;
}
.conTitle2::after {
	width: 3px;
	height: 80%;
	content: '';
	background-color: #989898;
	position: absolute;
	top: 10%;
	left: 0;
}
.moreBtn{
	width: 50%;
	margin: 20px auto 0 auto;
	font-size: 18px;
	text-align: center;
	border: solid #777 1px;
	box-sizing: border-box;
}
.moreBtn a{
	padding: 8px 5px 5px 5px;
	color: #111;
	background: rgba(255,255,255, 0.6);
	display: block;
}
.backBtn{
	width: 40%;
	padding: 5px;
	text-align: center;
	border: solid #111 3px;
	box-sizing: border-box;
	transition: all .3s;
}
/*index*/
.index{
	background-image: url(../img/index_bg_pattern.png);
	background-repeat: repeat, no-repeat;
	background-blend-mode: overlay;
	background-size: auto, cover;
	position: relative;
}
.index .bg-slider {
	width: 100vw;
	height: 100vh;
	background-position:center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index #indexInner{
	width:100%;
	margin: 0 auto;
	text-align: center;
}
.index #indexInner p{
	color: #111;
	margin-bottom: 30px;
}
.index #indexInner a{
	color: #111;
	display: block;
}
.index #indexInner #indexLogo{
	width: 90%;
	margin: 0 auto 80px auto;
}
.index #indexInner #indexLogo img{
	width: 100%;
}
.index #indexInner #enterBtn {
	width: 50%;
	margin: 0 auto 30px auto;
	border: solid #111 3px;
	color: #111;
	font-size: 32px;
	box-sizing: border-box;
	transition: all .3s;
}
.index #indexInner #leaveBtn{
	width: 100px;
	margin: 0 auto;
	font-size: 20px;
}
.index .cr{
	width: 100%;
	color: #111;
	font-size: 12px;
	text-align: center;
	background: rgba(255,255,255, 0.6);
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2px 0 3px 0;
}
/*top*/
#top{
	height: 100%;
}
#top .slickTopInner {
	height: 100%;
}
#top .slickTopInner img{
	width: 100%;
}
.slick_img{
    height: auto;
    position: relative;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 20%;
    left: -5%;
    width: 58%;
}
.slick_img2{
    height: auto;
    position: relative;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 30%;
    right: 30%;
}
.slide-dots{
  text-align: center;
  li{
    display: inline-block;
    margin: 0 15px;
    button{
      position: relative;
      text-indent: -9999px;
      &:before{
        content: '☆';
        font-size: 20px;
        text-indent: 0px;
        position: absolute;
        top: 0;
        left: 0;
      }
    }
    &.slick-active{
      button:before{
        content: '★';
      }
    }
  }
}
.slickTopInner .slick-dots li.slick-active button:before {
    color: #0878fc;}
.slickTopInner .slick-dots li button:before{
    color: #ffea00;}
hr{
    width: 90%;
    border: 1px dotted #000;
    margin: 20px auto;
}
h4{
    color: #ffea43;
    font-size: 30px;
    text-align: center;
    font-family: 'Russo One', sans-serif;
    width: 90%;
    margin: auto;
    font-weight: 900;
}


.has-lines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.has-lines:before,
.has-lines:after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #ffea43;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
}
.has-lines:before {
  margin-right: 20px;
}
.has-lines:after {
  margin-left: 20px;
}
.eventDetail h4 , .eventDetail .center{
    color: #0588ff
}
.eventDetail .has-lines:before, .eventDetail .has-lines:after{
    background: #0588ff
}
h2{
    text-align: center;
    background: #fff;
    width: 60%;
    margin: auto;
    border-radius: 15px;
    padding: 5px 0;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}
h2.long{
    width: 90%;
}
.center{
    text-align: center;
    color: #ffea43;
    font-weight: 500;
    padding-bottom: 10px;
}

.genre{
    text-align: center;
    padding: 5px 0 0;
    color: #000000;
    border-bottom: dotted 1px #616161;
    width: 74%;
    margin: auto;
    line-height: 26px;
}
.more_btn {
    display: grid;
    width: 72px;
    padding: 4px 0px;
    font-size: 15px;
    margin: 10px auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #ffffff;
    border: 2px solid;
    box-shadow: 3px 3px #000000;
    font-weight: 500;
}
.join_btn {
    display: grid;
    width: 25%;
    padding: 3px;
    border-radius: 20px;
    font-size: 14px;
    margin: 10px auto 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #ffea43;
    border: 2px solid;
    font-weight: 500;
}

.more_btn:hover  {
	 cursor: pointer;
	 text-decoration: none;
	 background:#fff;
	 transform: translate3d(0, 4px, 0);
	 border-bottom: none;
}

.posts{
    background-color: white;
    border-radius: 35px;
    padding: 30px;
    border: 2px solid;
    margin-bottom: 20px;
}
#creators li.posts_block{
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-bottom: dotted 2px;
    margin-bottom: 10px;
}

#creators li.posts_block:last-child{
    border: none;
    margin-bottom: 0
}
.post_date{
    width: 100%;
    color: #808080;
    font-size: 12px;
    font-size: 15px;
    line-height: 2.2em;
    padding-right: 30px;
}
.post_date span{
    background-color: #ffea43;
    color: #000;
    padding: 6px;
    margin-right: 10px;
}
.box_title {
    font-size: 14px;
    font-size: 15px;
    line-height: 2.2;
}
.main_posts{
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}
 .area_wrap {
    padding: 20px 15px 40px;
    position: relative;
    background: #ffffffab;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 2;}

.line {
    background-image: linear-gradient(to right, #333333, #333333 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, #333333, #333333 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, #333333, #333333 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, #333333, #333333 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
    background-size: 16px 3px, 16px 3px, 3px 16px, 3px 16px;
    background-position: left top, left bottom, left top, right top;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    z-index: 1;
    pointer-events: none;
}
.corner {
    background-image: url(/img/left_top01.png), url(/img/left_bottom01.png), url(/img/right_top01.png), url(/img/right_bottom01.png);
    background-size: 35px auto;
    background-position: left top, left bottom, right top, right bottom;
    background-repeat: no-repeat;
    padding: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;}
.subTop{
    margin: 20px 0 0px;
}
.subTitle{
    text-align: center;
    margin: 10px auto;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: justify;
    width: 90%;
}
.tubeBox iframe{
    width: 100%;
    margin-bottom: 20px;
}
.artist .area_wrap{margin-bottom: 20px;}

/*description*/
#description{
	text-align: center;
}
/*concept*/
.top #concept{
	color: #fff;
	height: 600px;
	background-image: url(../img/top_concept_bg.jpg);
	background-size: cover;
	background-position: center 20%;
	background-repeat: no-repeat;
}
.top #concept .conStyle3{
	height: 500px;
	position: relative;
}
#concept p{
	color: #202020;
	font-size: 18px;
	line-height: 40px;
}
.top #concept .conStyle3 .moreBtn{
	position: absolute;
	bottom: 0;
	right: 0
}
.top #concept.conStyle3 .moreBtn{
	width: 160px;
	height: 40px;
	font-size: 20px;
	text-align: center;
	line-height: 32px;
	border: solid #101010 3px;
	box-sizing: border-box;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	position: relative;
}
.top #concept.conStyle3 .moreBtn a{
	width: 100%;
	height: 100%;
	color: #202020;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}
#top .flame{
	width: 100%;
	min-height: 200px;
	background-image: url(../img/index_bg_pattern.png);
	background-repeat: repeat, no-repeat;
	background-blend-mode: overlay;
	background-size: auto, cover;
	z-index: 500;
	position: absolute;
}
#topBanner {
	margin-bottom: 10px;
}
#topBanner .slideBanner{
}
#topBanner .slideBanner img{
	width: 100%;
	margin: 0 auto
}
#topBanner .slick-slide {
	transition: .3s ease;
	transform: scale(.85);
}
#topBanner .slick-current {
	transform: scale(1);
}
#topBanner .slick-initialized .slick-slide{
	opacity: 0.6;
}
#topBanner .slick-initialized .slick-slide.slick-active{
	opacity: 1;
}

/*profile*/
#profile .profileInner .head{
	width: 1080px;
	height: 50px;
	margin-bottom: 10px;
	overflow: hidden;
	position: relative;
}
#profile .profileInner .head .name{
	height: 50px;
	margin-right: 20px;
	padding: 0 0 0 .5em;
	font-size: 50px;
	line-height: 42px;
	text-transform: capitalize;
	float: left;
	position: relative;
}
#profile .profileInner .head .name::after{
	width: 5px;
	height: .7em;
	content: '';
	background-color: #989898;
	position: absolute;
	top: .08em;
	left: 0;
}
#profile .profileInner .head .age{
	padding-top: 10px;
	font-size: 30px;
	float: left;
}
#profile .profileInner .head .backBtn{
	position: absolute;
	top: 8px;
	right: 0;
}
#profile .profileInner .head .backBtn a{
	width: 100%;
	height: 100%;
	color: #111;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}
#profile .profileInner .tmbBox{
	width: 380px;
	margin: 0 20px 20px 0;
	float: left;
}
#profile .profileInner .tmbBox ul#profileSlider{
	height: 350px;
	margin-bottom: 5px;
	overflow: hidden;
}
#profile .profileInner .tmbBox ul#profileSlider img{
	width: 100%;
}
ul#profileSliderList {
	width: 380px;
	margin: 0 auto;
	display: flex;
	/**justify-content: space-between;**/
	flex-wrap: wrap;
}
#profileSliderList li.thumbnail-item {
	width: calc(96%/5);
	margin-right: 1%;
	float: left;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
#profileSliderList li:last-child{
	margin-right: 0;
}
#profileSliderList li.thumbnail-item:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 109px;%;
	opacity: 1;
	transition: .5s opacity linear;
}
#profileSliderList .thumbnail-item.thumbnail-current:after {
	opacity: 0;
}
#profileSliderList .thumbnail-item img {
	width: 100%;
	margin: 0 auto;
}
#profile .profileInner .dataBox{
	width: 680px;
	margin-bottom: 20px;
	float: left;
}
#profile .profileInner .dataBox table.data{
	margin-bottom: 10px;
}
#profile .profileInner .dataBox table.data tr{
	font-size: 18px;
	border-bottom: 1px solid #989898;
	box-sizing: border-box;
}
#profile .profileInner .dataBox table.data th{
	font-family: 'Armata', sans-serif;
	width: 240px;
	padding: 10px 10px 0 10px;
	text-align: left;
	position: relative;
}
#profile .profileInner .dataBox table.data th::after{
	width: 3px;
	height: 1em;
	content: '';
	background-color: #989898;
	position: absolute;
	top: .8em;
	left: 0;
}
#profile .profileInner .dataBox table.data td{
	font-family: 'Armata', sans-serif;
	width: 400px;
	padding: 10px 10px 0 10px;
}
#profile .profileInner .dataBox .option{
	width: 675px;
	overflow: hidden;
}
#profile .profileInner .dataBox .option .title{
	padding-left: 10px;
	font-size: 18px;
	position: relative;
}
#profile .profileInner .dataBox .option .title::after{
	width: 3px;
	height: 1em;
	content: '';
	background-color: #989898;
	position: absolute;
	top: .2em;
	left: 0;
}
#profile .profileInner .dataBox ul{
}
#profile .profileInner .dataBox li{

}
#profile .profileInner .dataBox li:nth-child(5n) {
	margin-right: 0;
}
#profile .profileInner .dataBox .comBox{
	margin-top: 20px;
	width: 675px;
	margin-bottom: 10px;
	font-size: 18px;
}
#profile .profileInner .dataBox .comBox .title{
	font-family: 'Armata', sans-serif;
	padding-left: 10px;
	position: relative;
}
#profile .profileInner .dataBox .comBox .title::after{
	width: 3px;
	height: 1em;
	content: '';
	background-color: #989898;
	position: absolute;
	top: .2em;
	left: 0;
}
#profile .profileInner .dataBox .comBox .com{
	width: 670px;
	margin: 5px 0 0 10px;
	padding: 10px;
	border: 1px solid #989898;
	box-sizing: border-box;
}
#profile .profileInner table.schedule{
	width: 1080px;
	border: 1px solid #989898;
	box-sizing: border-box;
}
#profile .profileInner table.schedule tr{
	font-size: 20px;
	text-align: center;
}
#profile .profileInner table.schedule tr.date{
	color: #333;
	background-color: #111;
	border-bottom: 1px solid #989898;
	box-sizing: border-box;
}
#profile .profileInner table.schedule th{
	padding: 5px 0;
	border-right: 1px solid #989898;
	box-sizing: border-box;
}
#profile .profileInner table.schedule th:last-child{
	border-right: 0;
}
#profile .profileInner table.schedule th.sat{
	color: #60a0de;
}
#profile .profileInner table.schedule th.sun{
	color: #de6061;
}
#profile .profileInner table.schedule td{
	padding: 5px 0;
	border-right: 1px solid #989898;
	box-sizing: border-box;
}
#profile .profileInner table.schedule td:last-child{
	border-right: 0;
}
#profile h5 {
    position: relative;
    padding: 4px 14px calc(1px + 10px) 12px;
    background: #fff100;
    font-size: 17px;
    font-weight: 600;
}

#profile h5:before {
    position: absolute;
    top: -9px;
    left: -9px;
    width: 100%;
    height: 100%;
    content: '';
    border: 3px solid #000;
}
#profile .comBox{
    margin-bottom: 20px;
    line-height: 24px;
}
#profile .com{
    padding: 10px;
    text-align: justify;
}
#profile .profileInner .head{
	width: 100%;
	height: 50px;
	overflow: hidden;
	position: relative;
}
#profile .profileInner .head .name{
	margin-right: 10px;
	padding-left: .5em;
	font-size: 28px;
	font-weight: 700;
	text-transform: capitalize;
	position: relative;
	overflow: hidden;
	float: left;
}
#profile .profileInner .head .name::after{
	width: 5px;
	height: 80%;
	content: '';
	background-color: #989898;
	position: absolute;
	top: 10%;
	left: 0;
}
#profile .profileInner .head .age{
	padding-top: 10px;
	font-size: 20px;
	font-weight: 700;
	float: left;
}
#profile .profileInner .tmbBox{
	width: 100%;
	margin: 0 20px 20px 0;
}
#profile .profileInner .tmbBox ul#profileSlider{
	margin-bottom: 5px;
	overflow: hidden;
}
#profile .profileInner .tmbBox ul#profileSlider img{
	width: 100%;
}
ul#profileSliderList {
	width: 100%;
	margin: 0 auto;
	display: flex;
	/**justify-content: space-between;**/
	flex-wrap: wrap;
}
#profileSliderList li.thumbnail-item {
	width: calc(96%/5);
	margin-right: 1%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
#profileSliderList li:last-child{
	margin-right: 0;
}
#profileSliderList li.thumbnail-item:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: .3s opacity linear;
}
#profileSliderList .thumbnail-item.thumbnail-current:after {
	opacity: 0;
}
#profileSliderList .thumbnail-item img {
	width: 100%;
	margin: 0 auto;
}
#profile .profileInner .dataBox{
	width: 100%;
	margin-bottom: 20px;
}
#profile .profileInner .dataBox table.data{
	width: 100%;
	margin-bottom: 10px;
}
#profile .profileInner .dataBox table.data tr{
	font-size: 16px;
}
#profile .profileInner .dataBox table.data th{
	width: 100%;
	padding: 5px 3%;
	text-align: left;
	vertical-align: middle;
	position: relative;
	float: left;
}
#profile .profileInner .dataBox table.data th::after{
	width: 3px;
	height: 80%;
	content: '';
	background-color: #989898;
	position: absolute;
	top: 10%;
	left: 0;
}
#profile .profileInner .dataBox table.data td{
	width: 96%;
	margin: 0 2%;
	padding: 5px 2%;
	border: 1px solid #ccc;
	box-sizing: border-box;
	float: left;
}
#profile .profileInner .dataBox .option{
	width: 100%;
	overflow: hidden;
}
#profile .profileInner .dataBox .option .title{
	padding: 5px 3%;
	font-size: 16px;
	position: relative;
}
#profile .profileInner .dataBox .option .title::after{
	width: 3px;
	height: 80%;
	content: '';
	background-color: #989898;
	position: absolute;
	top: 10%;
	left: 0;
}
#profile .profileInner .dataBox ul{
	width: 96%;
	padding: 2%;
	overflow: hidden;
}
#profile .profileInner .dataBox li{
	width: calc(94%/3);
	margin: 3px 2% 3px 0;
	font-size: 12px;
	line-height: 28px;
	text-align: center;
	color: #111;
	float: left;
}
#profile .profileInner .dataBox li:nth-child(3n) {
	margin-right: 0;
}
#profile .profileInner .dataBox .comBox{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 10px;
}
#profile .profileInner .dataBox .comBox .title{
	padding: 5px 3%;
	font-size: 16px;
	position: relative;
}
#profile .profileInner .dataBox .comBox .title::after{
	width: 3px;
	height: 80%;
	content: '';
	background-color: #989898;
	position: absolute;
	top: 10%;
	left: 0;
}
#profile .profileInner .dataBox .comBox .com{
	width: 96%;
	margin: 0 auto;
	padding: 5px 3%;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
#profile .profileInner table.schedule{
	width: 96%;
	margin: 0 auto;
	padding: 5px 0;
	border: 1px solid #ccc;
	font-size: 16px;
	box-sizing: border-box;
}
#profile .profileInner table.schedule tr{
}
#profile .profileInner table.schedule th{
	width: 50%;
	padding: 5px 0;
	color: #111;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}
#profile .profileInner table.schedule tr:last-child th{
	border-bottom: none;
}
#profile .profileInner table.schedule td{
	width: 50%;
	padding: 5px 5%;
	text-align: center;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}
#profile .profileInner table.schedule tr:last-child td{
	border-bottom: none;
}
#profile .profileInner table.schedule th.sat{
	color: #00c9ff;
}
#profile .profileInner table.schedule th.sun{
	color: #de6061;
}
#profile .profileInner .backBtn{
	margin: 20px 0 0 60%;
}
#profile .profileInner .backBtn a{
	color: #111;
}
/*footer*/
footer{
	width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px 0 40px;
}
footer #contact{
	height: 250px;
	color: #333;
	background-color: #fff;
}
footer #contact ul{
	width: 260px;
	margin: 0 auto
}
footer #contact li{
	width: 50px;
	margin-right: 20px;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	float: left;
}
footer #contact li:last-child{
	margin-right: 0;
}
footer #contact li img{
	width: 100%;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
footer #contact li a:hover{
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
#footerInner{
	width: 1080px;
	height: 100px;
	margin: 0 auto;
	padding: 20px;
	overflow: hidden;
	position: relative;
}
#footerInner #footerLogo{
	width: 240px;
	margin: 0 160px 0 0;
	float: left;
}
#footerInner #footerLogo img{
	width: 100%;
}
#footerInner #footerLogo a{
	display: block;
}
#footerInner #footerLogo .data{
	width: 240px;
	text-align: center;
	line-height: 20px;
}
#footerInner nav{
	width: 680px;
	margin-top: 40px;
	border-bottom: unset;
	float: left;
}
#footerInner ul{

}
#footerInner li{
	width: calc(100%/5);
	font-family: 'Armata', sans-serif;
	padding: 0 1%;
	border-right: 1px solid rgba(255,255,255,0.15);
	box-sizing: border-box;
	text-align: center;
	float: left;
}
#footerInner li:last-child{
	border-right: unset;
}
#footerInner li a{
	color: #111;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
#footerInner li a:hover{
	color: #989898;
}
footer .cr{
	padding: 2px 0;
	color: #111;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.15);
	box-sizing: border-box;
}
/* creators list */
#creators ul {
	overflow: hidden;
}
#creators li{
	float: left;
	width: calc(100%/2);
    padding-bottom: 10px;
}
#creators li .inner {
	margin: 0 10px;
    box-shadow: 0 0 1px;
    background-color: #fff;
    height: 155px;
    border: 7px solid #fff;
}

#creators li .profImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#creators li .name {
	text-align: center;
	font-weight: bold;
	font-size: 15px;
    line-height: 19px;
    padding: 5px 0;
}
#creators li .socialIco {
	width: 60%;
	margin: 0 auto;
}
#creators li .socialIco li {
	width: calc(100%/3);
}
#creators li .socialIco li img {
	width: 60%;
	margin: 0 20%;
}
.dataBox .socialIco {
	margin: 0 auto;
    padding: 0 10px;
}
.dataBox .socialIco li {
	width: calc(100%/5);
    float: left;
}
.dataBox .socialIco li img {
	width: 40%;
	margin: 0 20%;
}
#creators li a.more {
	font-family: 'Armata', sans-serif;
	background: #111;
	color: #efff00;
	padding: 5px 10px;
	box-sizing: border-box;
	width: 50%;
	display: block;
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
	letter-spacing: 4px;
}
/* news */
#news ul{    
    overflow: hidden;}
#news li{
    padding: 5px;
    box-sizing: border-box;
    float: left;
    width: 100%;
}
#news li:last-child{
	margin-bottom: 10px;
}
#news li .newsImg{
	width: 40%;
    margin-bottom: 10px;
    margin: 0 auto;
    height: 135px;
    text-align: center;
    display: block;
    border: 2px solid;
    object-fit: cover;
    object-position: top;
    float: left;
}
#news li .inner{
    background: #ffffff8a;
    padding: 6px;
    border: 2px solid;
    padding-bottom: 14px;
    position: relative;
    z-index: 100;
}
.genreBox{
    position: absolute;
    bottom: 33px;
    left: -10px;
    padding: 28px 11px;
    z-index: 3;
}
.genreBox2{
    position: absolute;
    top: -5px;
    left: -10px;
    padding: 0px 11px;
    z-index: 3;
}
.genreBox2 img{
    width: 70%;
}
.event .genreBox{
    top: -27px;
    bottom: 0;
}
.genreBox img{
    width: 80%
}
#profile .restaurantTop .nameTitle {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
}

#news .title {
    font-size: 18px;
    position: relative;
    padding: 0 0 3px 0;
    margin-bottom: 6px;
    text-align: center;
    font-weight: bold;
    color: #0571ff;
}

#news .title span {
    font-size: 18px;
    display: block;
}

#news .title:before {
    position: absolute;
    bottom: 2px;
    left: calc(67% - 0px);
    width: 20px;
    height: 2px;
    content: '';
    background: #0a71ff;
}
#news .date{
	margin-bottom: 5px;
	padding: 0 10px;
	font-weight: bold;
}
#news .text{
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
}
#news .box{text-align: center;}
/*form*/
#form table.style01{
	width: 100%;
	margin: 0 auto 20px auto;
	border-collapse: separate;
	border-spacing: 0px 10px;
	box-sizing: border-box;
}
#form .style01 th,#form .style01 td{
	width: 100%;
	display: block;
}
#form .style01 th{
	padding: 10px;
	text-align: left;
}
#form .style01 th span{
	background-color: #0588ff;
    padding: 6px;
    margin-right: 9px;
    color: #ffffff;
    font-size: 12px;
}
#form .style01 td{
	box-sizing: border-box;
}
#form .style01 input[type="text"],input[type="submit"] {
	-webkit-appearance: none;
}
#form .style01 input[type="text"]{
	width: 100%;
	height: 40px;
	padding: 0 10px;
	border: none;
	background-color: #eee;
	box-sizing: border-box;
}
#form .style01 textarea{
	width: 100%;
	height: 200px;
	padding: 20px 10px;
	border: none;
	background-color: #eee;
	box-sizing: border-box;
}
#form .formBtn{
	width: 30%;
    margin: 20px auto 30px auto;
    padding: 15px 0;
    color: #ffffff;
    font-size: 16px;
    background-color: #0588ff;
    border: unset;
    border-radius: 5px;
    display: block;
    text-align: center;
}
#form .formBtn:hover{
	color: #000;
	background: #fff700;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
.eventDetail #form .formBtn{width: 65%;}
/* recruit */
#recruit{

}
#recruit .head .title{
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
#recruit .head p{
	margin-bottom: 20px;
}
/* contact */
#contact .head p{
	margin-bottom: 20px;
}
.f_banner{
    text-align: center;
    margin-top: 20px;
}
.f_banner img{
    width: 32.5%;
    margin-bottom: 10px;
    float: left;
    padding: 1px;
}
/* about */
.about{
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 30px 0 40px;
}
.about img{
    width: 80%
}
.about_txt{
    padding: 0 30px;
    text-align: justify;
    margin-top: 30px;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 14px;
    line-height: 22px;
}
.marker_yellow {
    background: linear-gradient(transparent 60%, #ffff669e 60%);
}
.point{
    width: 90%;
    margin: auto;
}
.pointInner{
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}
.pointInner .pointTxt{
    padding-bottom: 20px;
    padding-right: 10px;
    padding-top: 10px;
    font-weight: 600;
    line-height: 23px;
    text-align: justify
}
.profile .point{
    width: 90%;
}
.profile .pointInner .pointTxt{
    padding-top: 0px;
}
.pointInner img{
    width: 80%;
}
.restaurantTop{margin: 0px 0 20px;}
.category{
    margin: 20px auto;
    overflow: hidden;
    width: 90%;
}
.categoryInner{
    float: left;
    width: calc(100%/2);
    transition: all 0.6s ease 0s;
}
.categoryInner:hover{
    cursor: pointer;
  transform: scale(1.1, 1.1);
}
.categoryInner img{
    width: 100%
}
.nameTitle{
    font-size: 20px;
}
#profile .nameTitle{
    font-size: 30px
}
.restaurant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.restaurantImg img{
    border: 3px solid;
    object-fit: cover;
    margin: 0 auto 20px;
    padding: 0;
}
.event .restaurantImg img{
    height: 100%;
    width: 90%;
}
.eventImg{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 84%;
}
.quad{
    width: 45%;
    margin: 0 6px;
    float: left;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 131px;
    border: 3px solid;
}
.quad img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.eventForm{
    background-color: #f3f5968f;
    padding: 20px;
}
.subTop .eventForm{
    background-color: #0000
}
.eventForm p{
    text-align: center;
    margin: 33px;
}