@charset "utf-8";

html {
	width: 100%;
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	font-family:  "游明朝体",YuGothic,"游明朝",Yu Mincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝", serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	background-color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	font-family: "隷書101","游明朝体",YuGothic,"游明朝",Yu Mincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝", serif;
	font-weight: 700;
	line-height: 1.2;
}
blockquote {
	font-family: Georgia, arial, sans-serif;
	font-size: 20px;
}
p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.6;
}
p.lead {
	font-weight: 600;
}
p.caption {
	font-size: 12px;
}
a {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
a:link,
a:visited,
a:active,
a:hover,
a:focus {
	outline: none;
	text-decoration: none;
}
.light {
	font-weight: 400;
}
.img-responsive {
	margin: 0 auto 20px;
}
.gothic {
	font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo, sans-serif;
}

/* --- position --- */
.relative {
	position: relative;
}

/* --- loader --- */
#preloader {
	background-color: #fff;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}
#loaderInner {
	background: #fff url(../img/spinner.gif) no-repeat center center;
	height: 60px;
	left: 50%;
	margin: -50px 0 0 -50px;
	position: absolute;
	top: 50%;
	width: 60px;
}
@keyframes boxSpin{
	0%{
		transform: translate(-10px, 0px);
	}
	25%{
		transform: translate(10px, 10px);
	}
	50%{
		transform: translate(10px, -10px);
	}
	75%{
		transform: translate(-10px, -10px);
	}
	100%{
		transform: translate(-10px, 10px);
	}
}
@keyframes shadowSpin{
	0%{
		box-shadow: 10px -10px #000, -10px 10px #000;
	}
	25%{
		box-shadow: 10px 10px #000, -10px -10px #000;
	}
	50%{
		box-shadow: -10px 10px #000, 10px -10px #000;
	}
	75%{
		box-shadow: -10px -10px #000, 10px 10px #000;
	}
	100%{
		box-shadow: 10px -10px #000, -10px 10px #000;
	}
}
#load {
	z-index: 2;
	background-color: #d61518;
	opacity: 0.75;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	margin: -5px auto 0 auto;
	left: 0;
	right: 0;
	border-radius: 0px;
	border: 5px solid #d61518;
	box-shadow: 10px 0px #000, 10px 0px #000;
	animation: shadowSpin 1s ease-in-out infinite;
}

/* --- misc --- */
hr {
	margin-top: 10px;
}

/* --- margins --- */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* --- icon --- */
.glyphicon,
.fa {
	margin-right: 0.3em;
}

/* --- column same height --- */
.row-height {
	display: table;
}
.col-height {
	display: table-cell;
	float: none;
	height: 100%;
}
.col-top {
	vertical-align: top;
}
.col-middle {
	vertical-align: middle;
}
.col-bottom {
	vertical-align: bottom;
}

/* --- background --- */
.bg-white {
	background-color: #fff;
}
.bg-gray {
	background-color: #666;
}
.bg-dark {
	background-color: #202020;
}
.bg-pattern01 {
	background: #202020 url(../img/bg_pattern01.png) repeat center top;
}

/* =================================================================
* Common
================================================================= */
section {
	position:relative;
	z-index:1;
}

/* --- col 5equal parts --- */
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}   
.col-xs-1-5 {
    width: 20%;
    float: left;
}
.col-xs-2-5 {
    width: 40%;
    float: left;
}

.col-xs-3-5 {
    width: 60%;
    float: left;
}

.col-xs-4-5 {
    width: 80%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-1-5 {
        width: 20%;
        float: left;
    }
    .col-sm-2-5 {
        width: 40%;
        float: left;
    }
    .col-sm-3-5 {
        width: 60%;
        float: left;
    }
    .col-sm-4-5 {
        width: 80%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-1-5 {
        width: 20%;
        float: left;
    }
    .col-md-2-5 {
        width: 40%;
        float: left;
    }
    .col-md-3-5 {
        width: 60%;
        float: left;
    }
    .col-md-4-5 {
        width: 80%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-1-5 {
        width: 20%;
        float: left;
    }
    .col-lg-2-5 {
        width: 40%;
        float: left;
    }
    .col-lg-3-5 {
        width: 60%;
        float: left;
    }
    .col-lg-4-5 {
        width: 80%;
        float: left;
    }
}   
/* -----------------------------------------------------------------
* Footer
----------------------------------------------------------------- */
footer {
	text-align: center;
	padding: 50px 0 30px;
	width: 100%;
	position: relative;
	background: url(../img/bg_footer.jpg) no-repeat center center;
	background-size: cover;
}
footer #footerBnr .img-responsive {
	margin-bottom: 0.5em;
}
.visible-g-page {
	display: none;
}
#youtube-channel {
	max-width: 500px;
	min-height: 380px;
	margin: 0 auto;
	background-color: #1d1d1d;
}
#youtube-channel .img-responsive {
	margin-bottom: 0;
}
#youtube-head {
	padding: 20px 0;
	font-size: 18px;
	line-height: 1.3;
	text-align: left;
}
#youtube-head > .col-xs-3 {
	padding-right: 5px
}
#youtube-head > .col-xs-9 {
	padding-left: 5px
}
#youtube-head img {
	background-color: #fff;
}
#youtube-link {
	padding: 0 15px 20px;
}
.youtube{
position: relative;
padding-bottom: 56.25%;
padding-top: 60px;
height: 0;
overflow: hidden;
}
.youtube iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

/* =================================================================
* Home
================================================================= */
/* -----------------------------------------------------------------
* Header Intro
----------------------------------------------------------------- */
.intro {
	padding: 40px 0;
	width: 100%;
	position: relative;
	background: url(../img/bg_intro.jpg) no-repeat top center;
	background-size: cover;
}
.intro .slogan {
	background: url(../img/bg_slogan.png) no-repeat top center;
	background-size: auto 100%;
}
.intro p,
.intro .img-responsive {
	margin-bottom: 0;
}
.intro #busho-aichi {
	position: relative;
	top: 0;
	left: 0;
	width: 20%;
	height: auto;
	margin-left: 50px;
}
.intro #ninjyatai {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	margin-top: -120px;
}
.intro .slogan .row-height {
	margin-top: 20%;
}
.intro .slogan h1,
.intro #catchcopy {
	margin: 0;
}
.intro .page-scroll {
	text-align: center;
}
.intro .page-scroll a .fa {
	margin-right: 0;
}

/* -----------------------------------------------------------------
* Navigation
----------------------------------------------------------------- */
#navigation {
	background-color: #222;/*if lt IE 8*/
	background-color: rgba(34,34,34,.95);
	z-index: 2;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid #222;
	box-shadow: 0px 0px 20px rgba(0,0,0,.6);
	text-align: center;
	margin: 0 auto;
}
.navbar {
	margin-bottom: 0;
}
.navbar-brand {
	font-weight: 700;
}
.navbar-brand:focus {
	outline: 0;
}
#menu .nav.navbar-bar {
	text-align: center;
	float: none;
	margin: 0 auto;
}
.navbar-custom ul.nav {
	text-align: center;
	float: none;
	margin: 0 auto;
}
.navbar-custom ul.nav li {
	float: none;
	display: inline-block;
	text-align: center;
}
.navbar-custom ul.nav li a {
	font-size: 14px;
	letter-spacing: 1px;
	color: #777;
	text-transform: uppercase;
	font-weight: 700;
	-webkit-transition: background .3s ease-in-out;
	-moz-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
	cursor: pointer;
}
.navbar-custom ul.nav li a:hover,
.navbar-custom ul.nav li a:focus,
.navbar-custom ul.nav li.active {
	outline: 0;
	background: none;
}
.navbar-toggle {
	padding: 4px 6px;
	font-size: 14px;
	color: #fff;
}
.navbar-toggle:focus,
.navbar-toggle:active {
	outline: 0;
}

/* -----------------------------------------------------------------
* General sections
----------------------------------------------------------------- */
.home-section {
	padding-top: 120px;
	padding-bottom: 110px;
	display:block;
}
.home-section h2 {
	font-size: 40px;
	margin-bottom: 50px;
}

/* -----------------------------------------------------------------
* About
----------------------------------------------------------------- */
#about .list-inline>li {
	padding-left: 0;
	padding-right: 10px;
}

/* -----------------------------------------------------------------
* Profile
----------------------------------------------------------------- */
#profile {
	background-color: #141414;
}
.item {
	margin: 10px;
}
.videoArea {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.videoArea video {
	position: absolute;
	top: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	background: transparent;
}
.videoLayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(20,20,20,.7);
	background-size: cover;
	z-index: -99;
}

/* -----------------------------------------------------------------
* Recruitment
----------------------------------------------------------------- */
#recruitment table>tbody>tr>th {
	font-weight: 700;
	white-space: nowrap;
}

/* -----------------------------------------------------------------
* Schedule
----------------------------------------------------------------- */
#ul-schedule > li {
	border-bottom: 1px dotted #333;
	padding: 8px;
}
#ul-schedule > li:nth-child(odd) {
	background-color: rgba(34,34,34,.8);
}
#ul-schedule > li:first-child {
	border-top: 1px dotted #333;
}
#ul-schedule > li > a {
	display: block;
	cursor: pointer;
}
#ul-schedule time {
	margin-right: 1em;
	font-weight: 700;
}
#ul-schedule .title {
	margin-right: 1em;
}
.ico {
	display: inline-block;
	position: relative;
	top: 0.2em;
	background-image: url(../img/ico_event.png);
	background-repeat: no-repeat;
}
#ul-schedule .ico {
	width: 20px;
	height: 20px;
	margin-right: 0.5em;
	background-size: 20px auto;
}
#ul-schedule .ico-costume {
	background-position: 0 0;
}
#ul-schedule .ico-shuriken {
	background-position: 0 -30px;
}
#ul-schedule .ico-photo {
	background-position: 0 -60px;
}
#ul-schedule .ico-ninja-demo {
	background-position: 0 -90px;
}
#experience .ico {
	width: 30px;
	height: 30px;
	margin-right: 0.3em;
	background-size: 30px auto;
}
#experience .ico-costume {
	background-position: 0 0;
}
#experience .ico-shuriken {
	background-position: 0 -45px;
}
#experience .ico-photo {
	background-position: 0 -90px;
}
#experience .ico-ninja-demo {
	background-position: 0 -135px;
}

/* -----------------------------------------------------------------
* Modal
----------------------------------------------------------------- */
.modal-header h1 {
	font-size: 24px;
}
.modal h2 {
	font-size: 20px;
}
.modal h3 {
	font-size: 18px;
}
.modal table>tbody>tr>th {
	font-weight: 700;
	white-space: nowrap;
}

/* -----------------------------------------------------------------
* Elements
----------------------------------------------------------------- */
.btn {
	font-weight: 700;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.page-scroll a i.animated {
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: 1s;
	-moz-transition-property: -moz-transform;
	-moz-transition-duration: 1s;
}
.page-scroll a:hover i.animated {
	-webkit-animation-name: pulse;
	-moz-animation-name: pulse;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
	0 {
	-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
	-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
	-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-moz-keyframes pulse {
	0 {
	-moz-transform: scale(1);
		transform: scale(1);
	}
	50% {
	-moz-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
	-moz-transform: scale(1);
		transform: scale(1);
	}
}

/* Media queries */
@media only screen and (max-width: 767px) {
	.intro {
		padding: 50px 0 0;
	}
	.intro .slogan {
		background-size: 130% auto;
	}
	.intro #busho-aichi {
		margin-top: -30px;
		margin-left: 20px;
	}
	.intro #ninjatai {
		margin-top: -80px;
	}
	.intro .slogan .row-height {
		margin-top: -100%;
	}
	.intro #catchcopy img {
		height: auto;
		width: 50px;
	}
	.page-scroll a {
		width: 36px;
		height: 36px;
		margin-top: 0;
		font-size: 18px;
		line-height: 1;
	}
	.navbar-header .fa {
		margin-right: 0;
	}
	.navbar-collapse {
		border-top: 1px solid #333;
		box-shadow: none;
	}
	.col-xs-6 {
	margin-bottom: 30px;
	}
	.item p {
		font-size: 14px;
		line-height: 1.6;
	}
	#experience h3 {
		font-size: 22px;
	}
	
	#ul-schedule .glyphicon {
	display: inline-block;
	}
	
	#ul-schedule .title {
		display: block;
		margin-right: 0;
	}
	.ico {
		background-image: url(../img/ico_event@2x.png);
	}
}
@media screen and (max-width:480px) {
	.intro #ninjatai {
		margin-top: -20%;
	}
	.navbar.navbar-custom.navbar-fixed-top {
	margin-bottom: 30px;
	}
	#schedule .modal {
	padding-top: 52px;
	}
}
@media screen and (max-width: 389px) {
	.hidden-g-page {
		display: none;
	}
	.visible-g-page {
		display: block;
	}
}
@media screen and (max-width: 360px) {
	#experience > div {
		float: none;
		width: auto;
	}
}

/* =================================================================
* Bosyu
================================================================= */




/* -----------------------------------------------------------------
* MainImg
----------------------------------------------------------------- */
#mainImg .row {
	position: relative;
}
#mainImg h1,
#mainImg p,
#mainImg .img-responsive {
	margin-bottom: 0;
}
#logoHoj {
	position: absolute;
	top: 16px;
	right: 0;
	text-align: right;
}
#logoHoj img {
	max-width: 100%;
	height: auto;
}
#mainImg #catchcopy {
	position: absolute;
	top: 60px;
	left: 0;
}

#mainImg #logoTit {
	margin-top: -100px;
	margin-bottom: 0;
}

/* -----------------------------------------------------------------
* Work
----------------------------------------------------------------- */
#work {
	padding: 50px 0;
}
#work p {
	font-size: 20px;
}
#work p.caption {
	font-size: 14px;
}
#work h2 {
	font-size: 40px;
}
#work h3 {
	font-size: 18px;
	margin-bottom: 15px;
}
#work figcaption {
	font-size: 15px;
	text-align: center;
}
#work figure .img-responsive {
	margin-bottom: 10px;
}
#work .notes {
	display: inline-block;
	margin: 0 auto;
	font-size: 12px;
	text-align: left;
}

/* --- character --- */
#hidecchi1 {
	position: absolute;
	bottom: 40px;
	right: 20px;
}
#hidecchi2 {
	position: absolute;
	top: 0;
	left: 74px;
}
#nekoninja1 {
	position: absolute;
	top: 0;
	left: 20px;
	margin-top: -60px;
	animation: moveY 2s infinite alternate linear;
	-ms-animation: moveY 2s infinite alternate linear;
	-webkit-animation: moveY 2s infinite alternate linear;
	-moz-animation: moveY 2s infinite alternate linear;
}
#nekoninja2 {
	position: absolute;
	top: 0;
	left: 215px;
	margin-top: -30px;
	animation: moveY 2s infinite alternate linear 1s;
	-ms-animation: moveY 2s infinite alternate linear 1s;
	-webkit-animation: moveY 2s infinite alternate linear 1s;
	-moz-animation: moveY 2s infinite alternate linear 1s;
}
#nekoninja3 {
	margin-right: -41px;
	margin-bottom: -1px;
}
#nekoninja4 {
	margin-bottom: -7px;
}
#hidecchi-and-nekoninja1 {
	width: 100%;
	height: 60px;
}
#hidecchi-and-nekoninja2 img {
	vertical-align: bottom;
}
#hidecchi-and-nekoninja2 {
	margin-bottom: 10px;
}

/* Y direction */
@keyframes moveY {
	0% {
		top: 0px;
	}
	50% {
		top: 20px;
	}
	100% {
		top: 0px;
	}
}
@-ms-keyframes moveY {
	0% {
		top: 0px;
	}
	50% {
		top: 20px;
	}
	100% {
		top: 0px;
	}
}
@-webkit-keyframes moveY
{
	0% {
		top: 0px;
	}
	50% {
		top: 20px;
	}
	100% {
		top: 0px;
	}
}
@-moz-keyframes moveY
{
	0% {
		top: 0px;
	}
	50% {
		top: 20px;
	}
	100% {
		top: 0px;
	}
}

/* --- countdown --- */
#countdownArea {
	margin-bottom: 25px;
	line-height: 1;
}
#countdown {
	display: inline-block;
	font-size: 96px;
	font-weight: 700;
}
#countdown .moji {
	font-size: 64px;
}
#timeLeft {
	display: inline-block;
	width: 1em;
	margin-right: 15px;
	font-size: 42px;
	font-weight: 400;
}

/* --- explanation --- */
#explanation {
	margin: 50px 0 0;
	border: 1px solid #fff;
	background: url(../img/bosyu/bg_explanation.png) no-repeat right bottom;
}
#explanation h2 {
	margin: 36px 0;
	font-size: 38px;
}
#explanation p {
	margin-left: 30px;
	margin-bottom: 40px;
	font-size: 16px;
}

/* -----------------------------------------------------------------
* Activity
----------------------------------------------------------------- */
#activity {
	padding: 50px 0;
}
#activity .table {
	font-size: 20px;
}
#activity .table + .table {
	margin-top: 50px;
}
#activity .table caption {
	margin-bottom: 15px;
	border-bottom: 1px solid #fff;
	font-size: 22px;
}
#activity .table th,
#activity .table td {
	padding: 10px 20px;
	text-align: left;
}
#activity .table th {
	font-weight: normal;
}

/* Media queries */
@media only screen and (max-width: 991px) {
	#mainImg #catchcopy {
		top: 40px;
	}
}
@media only screen and (max-width: 767px) {
	html {
		overflow-x: hidden;
	}
	#mainImg #logoTit {
		margin-top: -50px;
	}
	#mainImg #catchcopy {
		top: 30px;
	}
	#hidecchi1 {
		position: inherit;
		bottom: 40px;
		right: 20px;
		width: 147px;
		height: 158px;
		margin: 0 0 0 auto;
	}
	#hidecchi2 {
		top: 0;
		left: 62px;
	}
	#nekoninja1 {
		left: 0;
		margin-top: -45px;
	}
	#nekoninja2 {
		left: inherit;
		right: 0;
		margin-top: -10px;
	}
	#hidecchi-and-nekoninja1 {
		position: relative;
		width:300px;
		height: 158px;
		margin: 20px auto;
	}
	#timeLeft {
		margin-right: 5px;
		font-size: 21px;
	}
	#countdown {
		font-size: 48px;
	}
	#countdown .moji {
		font-size: 32px;
	}
	#explanation p {
		margin-left: 0;
		margin-bottom: 200px;
	}
	#activity .table th {
		display: block;
		padding: 10px;
	}
	#activity .table td {
		display: inline-block;
		padding: 0 10px 10px;
	}
}
@media screen and (max-width:480px) {
	#timeLeft {
		font-size: 18px;
	}
	#countdown {
		font-size: 46px;
	}
	#countdown .moji {
		font-size: 30px;
	}
}

/* =================================================================
* Youkou
================================================================= */
#youkou {
	background: #202020 url(../img/bg_pattern01.png) repeat center top;
}

/* -----------------------------------------------------------------
* Header
----------------------------------------------------------------- */
#youkou #header {
	padding-top: 60px;
}
#youkou #header h1 {
	margin-bottom: 0;
}


@media only screen and (max-width:767px){
  #youkou table tr{
      display: block;
      width: 100%;
    }
  #youkou thead{
      display: none;
    }
  #youkou tbody{
    display: block;
    width: 100%;
    overflow: hidden;
	}
  #youkou th{
        list-style:none;
      }
  #youkou td{
	  font-size: 90%;
        margin-left: 10px;
	    list-style:none;

      }
  #youkou th,td{
        width: 100%;
        display: list-item;
      }
}
    

/* -----------------------------------------------------------------
* Section
----------------------------------------------------------------- */
#youkou section {
	padding: 50px 0;
}
#youkou table th {
	white-space: nowrap;
}
/* =================================================================
* bnr_area
================================================================= */
section#bnr_area  {
	padding-bottom:20px;
}