/* reset include */
@import url("reset.css");
body {
	background-color: #fff;
	font-size: 14px;
    color: #111;
}
a:link, a:visited{
	color: #111;
}
a:hover, a:active{
	color: #;
}

img{
	vertical-align: bottom;
}
.dosp{
	display: none;
}
#wrapper{
	width: 100%;

}
small{
    font-size: 80%
}
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 500ms;
	}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}


header {
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.15s ease;
}
header.mini{
    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: 15px;
    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;
}
#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: 185px;
}


section{
	width: 100%;
	overflow: hidden;
}
article{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.main{
    background: url(/img/bg_top_01.png);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff986
	}

.caption{
    padding: 15px 10px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #424242;
    letter-spacing: 0.1em;
}
.conInner{
	width: 1080px;
	margin: 0 auto;
	overflow: hidden;
}
.conTitle {
    display: flex;
    align-items: center;
}
.conTitle span{
    font-family: 'Russo One', sans-serif;
    font-size: 27px;
    padding: 10px 0 0;
}
.conTitle:before,
.conTitle:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}

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

.conTitle:after {
    margin-left: 1rem;
}


.nameTitle{
    font-weight: 800
}
.conStyle1{
	margin: 0 auto;
	color: #333;
	overflow: hidden;
    margin-bottom: 50px;
}
.conStyle1 p{
	font-size: 18px;
	line-height: 50px;
}
.conStyle1 p span.head{
	margin-bottom: 10px;
	font-size: 30px;
}
.conStyle1 p span.bottom{
	float: right;
}
.conTitle2{
	margin: 0 0 20px 220px;
	padding-left: .5em;
	font-size: 32px;
	letter-spacing: -1px;
	position: relative;
	overflow: hidden;
}
.conTitle2::after {
	width: 5px;
	height: 1em;
	content: '';
	background-color: #777;
	position: absolute;
	top: .24em;
	left: 0;
}
.conStyle3 table{
	width: 480px;
	margin: 0 auto 20px auto;
	font-size: 16px;
}
.conStyle3 tr{
	display: table;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}
.conStyle3 tr:last-child{
	border-bottom: unset;
}
.conStyle3 th, .conStyle3 td {
	padding: 10px;
	box-sizing: border-box;
	display: table-cell;
	vertical-align: middle;
}
.conStyle3 th{
	width: 220px;
	font-weight: bold;
	text-align: left;
}
.conStyle3 td{
	width: 260px;
	text-align: right;
	box-sizing: border-box;
}
.conStyle3 p{
	margin-left: 20px;
	font-size: 14px;
	line-height: 20px;
}
.conStyle3 .moreBtn{
	margin: 0 120px 0 0;
	font-size: 18px;
	text-align: center;
	box-sizing: border-box;
	border: solid #777 1px;
	float: right;
}
.conStyle3 .moreBtn a{
	width: 200px;
	padding: 8px 5px 5px 5px;
	color: #111;
	background-color: rgba(16,16,16,0.6);
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	display: block;
}
.conStyle3 .moreBtn a:hover{
	color: #101010;
	background: rgba(255, 255, 255, 0.6);
}
/*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: 480px;
	margin: 0 auto;
	text-align: center;
}
.index #indexInner p{
	color: #111;
	margin-bottom: 50px;
}
.index #indexInner a{
	color: #111;
	display: block;
}
.index #indexInner #indexLogo{
	width: 380px;
	margin: 0 auto 100px auto;
}
.index #indexInner #enterBtn {
	width: 280px;
	margin: 0 auto 50px auto;
	border: solid #111 3px;
	color: #111;
	font-size: 40px;
	box-sizing: border-box;
	transition: all .5s;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
.index #indexInner #leaveBtn{
	width: 100px;
	margin: 0 auto;
	font-size: 20px;
}
.index .cr{
	width: 100%;
	color: #111;
	text-align: center;
	background: rgba(255,255,255, 0.6);
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2px 0 3px 0;
}

/*top*/
#top{
    margin-bottom: 20px;
}
#top .slickTopInner {
	
}
#top .slickTopInner img{
	width: 100%;
}

#topBanner {
	margin-bottom: 20px;
	padding-bottom: 20px;
}
#topBanner .slideBanner{
	width: 94%;
	margin: 0 auto;
}
#topBanner .slideBanner img{
	width: 100%;
	margin: 0 auto;
	vertical-align: middle;
	display: block;
}
#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;
}


.slick_img{
    height: auto;
    position: relative;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 20%;
    left: 0%;
    width: 62%;
}
.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: 64%;
    border: 1px dotted #000;
    margin: 20px auto;
}
h4{
    color: #0588ff;
    font-size: 44px;
    text-align: center;
    font-family: 'Russo One', sans-serif;
    width: 46%;
    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: #0588ff;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
}
.has-lines:before {
  margin-right: 20px;
}
.has-lines:after {
  margin-left: 20px;
}
h2{
    text-align: center;
    background: #fff;
    width: 14%;
    margin: auto;
    border-radius: 20px;
    padding: 5px 10px;
    margin-bottom: 30px;
    
}
h2.long{
    width: 40%;
}
.center{
    text-align: center;
    color: #0588ff;
    font-weight: 500;
}
.prof{
    position: relative;
    z-index: 1;
    padding: 11px 0 20px 12px;
}
.prof:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: -2px;
    left: 0%;
    width: 100%;
    height: 100%;
    background: url(/img/yellow_bg.png) 0 0 no-repeat;
    background-size: 100% 100%;
}

.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: 100px;
    padding: 7px;
    font-size: 17px;
    margin: 30px 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: 100px;
    padding: 6px;
    border-radius: 12px;
    font-size: 17px;
    margin: 15px auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #ffea43;
    border: 2px solid;
    box-shadow: 3px 3px #000000;
    font-weight: 500;
}

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

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

#creators li.posts_block:last-child{
    border: none;
    margin-bottom: 0
}

.post_date{
    float: left;
    width: 180px;
    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: 21px;
}
.box_title {
    margin-left: 100px;
    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 50px 40px;
    position: relative;
    background: #ffffff5c;
    margin-top: 1em;
    overflow: hidden;
    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: 40px 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: 130px 0 50px;
}
.subTitle{
    text-align: center;
    margin: 24px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.tubeBox iframe{
    width: 100%;
    margin-bottom: 20px;
}
.artist .area_wrap{margin-bottom: 100px;}

/*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;
}
/*system*/
#system{

}
#system .systemBox{
	overflow: hidden;
}
#system table{
	width: 560px;
	margin: 0 auto 50px auto;
}
#system th{
	width: 300px
}
#system td{

}
#system .systemBox span{
	padding-left: 20px;
	font-size: 12px;
}
#system .card{
	width: 560px;
	margin: 0 auto;
	display: block;
}
/*terms*/
#terms p{
	padding: 10px;
	font-size: 18px;
}
/*contact*/
#contact{

}

/*access top*/
.top #access .conTitle{
	margin-top: 50px;
}
.top #access .accessinner{
	width: 560px;
	margin: 0 auto;
	padding: 20px;
	overflow: hidden;
}
.top #access .name{
	width: 200px;
	height: 110px;
	font-size: 24px;
	text-align: center;
	vertical-align: middle;
	display: table-cell;
	border-right: solid #101010 1px;
	box-sizing: border-box;
}
.top #access .address{
	width: 310px;
	height: 110px;
	padding-left: 50px;
	display: table-cell;
}
.top #access table{
	width: 310px;
	margin: 0 auto;
}
.top #access tr{
	font-size: 16px;
}
.top #access th{
	width: 100px;
	text-align: left;
}
.top #access td{
	width: 260px;
	text-align: right;
}
/*access top*/
.access #access .conTitle{
	margin-top: 50px;
}
.access #access .accessinner{
	width: 560px;
	margin: 0 auto;
	padding: 20px;
	overflow: hidden;
}
.access #access .name{
	width: 200px;
	height: 110px;
	font-size: 24px;
	text-align: center;
	vertical-align: middle;
	display: table-cell;
	border-right: solid #101010 1px;
	box-sizing: border-box;
}
.access #access .address{

}
.access #access table{

	margin: 0 auto;
}
.access #access tr{
	font-size: 16px;
}
.access #access th{

}
.access #access td{

}
/*girlsBox*/
ul.girlsBox{

}
.girlsBox li.girlsSet{
	width: calc(96%/3);
	margin-right: 2%;
	float: left;
	position: relative;
}
.girlsBox li:nth-child(3n){
	margin-right: 0;
}
.girlsSet .time{
	width: 100%;
	font-size: 24px;
	text-align: center;
}
.girlsSet .tmbBox{
	height: 422px;
	overflow: hidden;
}
.girlsSet .tmbBox .tmb{
	overflow: hidden;
}
.girlsSet .tmbBox .tmb img{
	width: 100%;
}
.girlsSet .tmbBox .tmb img {
	-moz-transition: -moz-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
}
.girlsSet .tmbBox .tmb img:hover{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.girlsSet .tmbBox .dataBox{
	width: 90%;
	height: 40px;
	padding: 0 5%;
	line-height: 42px;
	color: #333;
	background-color: #111;
	position: absolute;
	bottom: 0;
}
.girlsSet .tmbBox .dataBox .head{
	width: 100%;
	font-size: 30px;
	overflow: hidden;
}
.girlsSet .tmbBox .dataBox .head .name{
	text-transform: capitalize;
	float: left;
}
.girlsSet .tmbBox .dataBox .head p{
	padding: 0 0.1em;
	float: left;
}
.girlsSet .tmbBox .dataBox .head .age{
	float: left;
}
.girlsSet .tmbBox .dataBox .size{
	width: 100%;
	font-size: 16px;
}
/*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: 450px;
	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: 30px;
    line-height: 24px;
}
#profile .com{
    padding: 10px
}
/*member*/
#member #wrapper{
	background-image: url(../img/member_bg.png);
	background-repeat: no-repeat;
}
#member #panel{
	background: rgba(255,255,255,0.6);
	width: 300px;
	margin: 150px auto;
	padding: 20px;
	box-shadow: 0 0 6px #333;
}
#panel table {
	width: 100%;
}
#panel table th,#panel table td {
	width: 50%;
	color: #333;
}
#panel table th img{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
}
.tal {
	text-align: left;
}
#panel input {
	width: 100%;
	border: solid 1px #e6e6e6;
}
#panel .btn{
	width: 160px;
	height: 40px;
	font-size: 20px;
	text-align: center;
	line-height: 16px;
	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;
}
#panel .btn 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;
}
/*footer*/
footer{
	width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 50px;
}
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;
}
.f_banner{
    width: 922px;
    margin: 0 auto 100px;
    overflow: hidden;
}
.f_banner a img{
    width: 80%
}
.left{
    float: left;
}
.right{
    float: right
}
/* creators list */
#creators ul {
	overflow: hidden;
}
#creators li{
	float: left;
	width: calc(100%/4);
}
#creators li .inner {
	margin: 0 10px;
    box-shadow: 0 0 1px;
    background-color: #fff;
    height: 250px;
    border: 7px solid #fff;
}

#creators li .profImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#creators li .name {
	text-align: center;
	font-weight: bold;
	font-family: 'Armata', sans-serif;
	font-size: 18px;
}
#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;
}
.dataBox .socialIco li {
	width: calc(100%/10);
    float: left;
}
.dataBox .socialIco li img {
	width: 60%;
	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: 10px;
    box-sizing: border-box;
    float: left;
    width: calc(100%/3);
}
#news li:last-child{
	margin-bottom: unset;
}
#news li .newsImg{
	width: 90%;
    margin-bottom: 10px;
    margin: 0 auto;
    height: 246px;
    text-align: center;
    display: block;
    border: 3px solid;
    object-fit: cover;
    object-position: top;
}
#news li .inner{
    background: #ffffff8a;
    padding-top: 12px;
    border: 2px solid;
    padding-bottom: 14px;
    position: relative;
}
.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;
}
.event .genreBox{
    top: -27px;
    bottom: 0;
}

#news .title {
    font-size: 30px;
    font-size: 3rem;
    position: relative;
    text-align: center;
    padding-bottom: 12px;
}

#news .title span {
  font-size: 25px;
  display: block;
  font-weight: bold;
  color: #0571ff;
}

#news .title:before {
    position: absolute;
    bottom: 11px;
    left: calc(50% - 18px);
    width: 40px;
    height: 2px;
    content: '';
    border-radius: 3px;
    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;
    padding: 10px;
}
/*form*/
#form table.style01{
	width: 860px;
    margin: 40px auto 0px auto;
    border-collapse: separate;
    border-spacing: 0px 10px;
    box-sizing: border-box;
}
#form .style01 th{
	width: 300px;
    font-weight: 400;
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #0aaaff;
    font-size: 15px;
}
#form .style01 tr:last-child th{
	padding-top: 20px;
	vertical-align: top;
}
#form .style01 th span{
	background-color: #0588ff;
    padding: 6px;
    margin-right: 9px;
    color: #ffffff;
    font-size: 12px;
}
#form .style01 td{
	box-sizing: border-box;
    padding: 30px 0;
    border-top: 1px solid #c8d818;
}
#form .style01 input[type="text"],input[type="submit"] {
	-webkit-appearance: none;
}
#form .style01 input[type="text"]{
	width: 100%;
	height: 50px;
	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: 15%;
    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: 25%;
}
/* recruit */
#recruit{

}
#recruit .head .title{
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
#recruit .head p{
	margin-bottom: 50px;
	text-align: center;
}
/* contact */
#contact .head p{
	margin-bottom: 50px;
	text-align: center;
}

/* about */
.about{
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 150px 0 100px;
}
.about img{width: 30%;}
.about_txt{
    margin-top: 40px;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    line-height: 31px;
    color: #464646;
}
.marker_yellow {
    background: linear-gradient(transparent 17%, #ffff669e 60%);
}
.point{
    width: 55%;
    margin: auto;
}
.pointInner{
    float: left;
    width: calc(100%/2);
}
.pointInner .pointTxt{
    padding-top: 60px;
    padding-right: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 23px;
}
.profile .point{
    width: 90%;
}
.profile .pointInner .pointTxt{
    padding-top: 0px;
}
.restaurantTop .nameTitle {
    font-size: 19px;
    text-align: center;
    padding: 10px 0;
}
.restaurant img{    
    width: 100%;
    height: 100%;
    object-fit: cover;}

.restaurantTop{margin: 0px 0 100px;}
.category{
    margin: 60px 0;
    overflow: hidden;
}
.categoryInner{
    float: left;
    width: calc(100%/5);
    transition: all 0.6s ease 0s;
}
.categoryInner a img{
    width: 100%
}
.categoryInner:hover{
    cursor: pointer;
  transform: scale(1.1, 1.1);
}
.restaurantImg img{
    position: relative;
    top: -9px;
    height: 256px;
    text-align: center;
    display: block;
    border: 3px solid;
    object-fit: cover;
}
.event .restaurantImg img{
    height: 100%;
    width: 90%;
}
.eventImg{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.quad{
    width: 45%;
    margin-right: 1%;
    float: left;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 131px;
    border: 3px solid;
}
.quad img{
    width: 100%;
    margin: 0 auto;
}
.eventForm{
    background-color: #f3f5968f;
    padding: 20px;
    margin-bottom: 100px
}
.subTop .eventForm{
    background-color: #0000
}
.eventForm p{
    text-align: center;
    margin: 33px;
}