<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@charset "UTF-8";



html {
	font-family: Verdana, "貂ｸ繧ｴ繧ｷ繝�け", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

*{
	box-sizing: border-box;
}

.sp{
	display: none;
}
#header{
	display: none;
}
#nav{
	display: none;
}
@media screen and (max-width: 896px){
	.pc{
		display: none;
	}
	.sp{
		display: inline-block;
	}
	img{
		max-width: 100%;
		height: auto;
	}

	#header{
		position: fixed;
		top: 0;
		height: 0;
		width: 100vw;
		height: 60px;
		z-index: 100000;
		display: block;
	}

	#header .menubtn {
		position: relative;
		width: 30px;
		height: 30px;
		margin-top: 15px;
		margin-left: 20px;
	}
	#header .bar{
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #fff;
		transition: .5s;
	}
	#header .bar:nth-child(1){
		top: 0;
		transition-delay: .1s
	}
	#header .bar:nth-child(2){
		top: 10px;
	}
	#header .bar:nth-child(3){
		top: 20px;
		transition-delay: .1s
	}

	#header .menubtn.on .bar:nth-child(1){
		transform: rotate(45deg);
		top: 10px;
	}
	#header .menubtn.on .bar:nth-child(2){
		left: -20px;
		opacity: 0;
	}
	#header .menubtn.on .bar:nth-child(3){
		transform: rotate(-45deg);
		top: 10px;
	}

	#nav{
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0,0,0,.8);
		z-index: -1;
		opacity: 0;
		visibility: hidden;
		height: 0;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: center;
		transition: .5s;
	}
	#nav.on{
		z-index: 99999;
		opacity: 1;
		visibility: inherit;
		height: 100%;
	}
	#nav ul{
		padding: 0 8%;
	}
	#nav ul li {
		margin: 20px 0;
	}
}
/* =========================================================
fullpage
========================================================= */


div#fullpage .txt {
	font-size: 0px;
}

.yes_Tablet div#fullpage p.scrollArrow,
.yes_ipad div#fullpage p.scrollArrow {
	background: url(imgs/00_scroll.png) no-repeat center bottom;
	width: 116px;
	height: 35px;
	position: absolute;
	bottom: 1%;
	left: 50%;
	margin-left: -58px;
}
@media screen and (max-width: 896px){
.yes_Tablet div#fullpage p.scrollArrow,
.yes_ipad div#fullpage p.scrollArrow {
		background: url(imgs/sp_00_scroll.png) no-repeat center bottom;
		background-size: contain;
		width: 65px;
		height: 32px;
		margin-left: -32px;
	}
}
.yes_Tablet div#fullpage p.scrollArrow,
.yes_ipad div#fullpage p.scrollArrow {
		background: url(imgs/00_click.png) no-repeat center;
    background-size: 100%;
    width: 180px;
    height: 100px;
    margin-left: -90px;
}

.yes_Tablet div#fullpage .scrollArrow_link,
.yes_ipad div#fullpage .scrollArrow_link {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100px;
}





/* timer */

#ms_timer {
	position: fixed;
	border: none;
	background: none;
	top: -100%;
	right: 1%;
	width: auto;
	font-size: 24px;
	font-family: 'Orbitron', sans-serif;
	text-shadow: 0 0 15px #fff;
	letter-spacing: .1em;
	opacity: .8;
	color: #ffe244;
}

#ms_timer:before {
	content: "time ";
	font-size: medium;	
}


/* scrollArrow hover */

.no_Tablet .sink,
.no_ipad .sink {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.no_Tablet .sink:hover, .no_Tablet .sink:focus, .no_Tablet .sink:active, .no_ipad .sink:hover, .no_ipad .sink:focus, .no_ipad .sink:active {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

/* Hover */
@-webkit-keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

.hover {
  display: inline-block;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hover:hover, .hover:focus, .hover:active {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-animation-name: hover;
  animation-name: hover;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* =========================================================
section0
========================================================= */
div#fullpage div#section1 {
	background: #111;
	background-size: cover;
	overflow: hidden;
}
div#fullpage div#section1 div.intro {
	width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: px){
	div#fullpage div#section1 div.intro {
		width: 100%;
		padding: 0 8%;
	}
}

div#fullpage div#section1 h1 {
	margin-bottom: 50px;
}

@media screen and (max-width: 896px){
	div#fullpage div#section1 h1 {
		margin-bottom: 20px;
	}
	div#fullpage div#section1 h1 img {
		width: 100%;
	}
}


/* =========================================================
section1
========================================================= */
div#fullpage div#section0 {
	background: #111;
	overflow: hidden;
}
@media screen and (max-width: 896px){
	div#fullpage div#section0 {
		/*padding: 0 8%;*/
	}
}

div#fullpage div#section0 div#op_black {
	background: url(imgs/op_black_2.png) no-repeat -2000px top;
	background-size: 1000px;
	width: auto;
	height: 600px;
	margin: 0 auto;
}
div#fullpage div#section0 div#op_black.opAfter {
	background: url(imgs/op_black_2.png) no-repeat center center;
	background-size: 1000px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section0 div#op_black.opAfter {
		background: url(imgs/sp/sp_op_black_2.png) no-repeat center center;
		background-size:  400px;
	}
}

@media screen and (max-width: 400px){
	div#fullpage div#section0 div#op_black.opAfter {
		background: url(imgs/sp/sp_op_black_2.png) no-repeat center center;
		background-size:  320px;
	}
}


#animateField p {
	width: 550px;
	height: 550px;
	padding: 0;
	margin: 0 auto;
	background: url(imgs/op_black_1.png) no-repeat left top;
	background-size: auto 100%;
}
@media screen and (max-width: 896px){
	#animateField p {
		background: url(imgs/op_black_1.png) no-repeat left top;
		background-size: auto 70%;
		width: 100%;
			height: 620px;
	}
}
.no_Tablet div#fullpage p.startArrow,
.no_ipad div#fullpage p.startArrow {
	background: url(imgs/00_start.png) no-repeat center bottom;
	width: 116px;
	height: 41px;
	position: absolute;
	bottom: 2%;
	left: 50%;
	margin-left: -58px;
	opacity: 0.5;
}
@media screen and (max-width: 896px){
.no_Tablet div#fullpage p.startArrow,
.no_ipad div#fullpage p.startArrow {
		background: url(imgs/sp_00_start.png) no-repeat center bottom;
		background-size: 100%;
		width: 100%;
		height: 75px;
		opacity: 1;
		bottom: 0;
		left: 0;
		margin-left: 0;
	}
}

.yes_Tablet div#fullpage p.startArrow,
.yes_ipad div#fullpage p.startArrow {
	background: url(imgs/00_click.png) no-repeat center bottom;
    background-size: 100%;
    width: 180px;
    height: 100px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -90px;
}

/* .yes_Tablet div#fullpage .scrollArrow_link.st p.startArrow,
.yes_ipad div#fullpage .scrollArrow_link.st p.startArrow {
    top: -30px!important;
} */


div#fullpage p.startArrow:hover {
	opacity: 1;
}
/* =========================================================
section2
========================================================= */
div#fullpage div#section2 {
	background: #111;
	background-size: cover;
}

div#fullpage div#section2 div.intro {
   background: url(imgs/01_nishizaki.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section2 div.intro{
	background: url(imgs/sp/sp-01_nishizaki.png) no-repeat right;
	}
	div#fullpage div#section2 div.intro .figureImg{
		padding-top: 60px;
	}
}

div#fullpage div#section2 div.intro h1{
	margin: 0 auto;
}

div#fullpage div#section2 div.intro p.message01 {
	float: left;
	background: url(imgs/message_01.png) no-repeat;
	position: relative;
	top: 50%;
	margin-top: -293px;
	left: 200%;
	width: 463px;
	height: 525px;
}

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


	div#fullpage div#section2 div.intro p.message01 {
		background: url(imgs/sp/sp_message_01.png) no-repeat;
    position: relative;
    margin-top: 100px;
    left: 0%;
    width: 75%;
    height: 100%;
    left: 20px!important;
    background-size: 100%;
    top: auto;
	}


	div#fullpage div#section2 div.intro p.message02.sp {
		width: 100%;
    	display: block;
    	background: none;
	}
}

@media screen and (max-width: 400px){
		div#fullpage div#section2 div.intro p.message01{
			    margin-top: 100px;
		}
}

/* =========================================================
section3
========================================================= */
div#fullpage div#section3 {
	background: #111;
	height: 100%;
	position: relative;
	background-image: url("imgs/b_bg.jpg");
	background-position: 11.5% middle;
	background-repeat: repeat-x;
	background-size: 500% auto;
	-webkit-animation: slider 15s infinite;
	-moz-animation: slider 15s infinite;
	animation: slider 15s infinite;
}

@media screen and (max-width: 896px){
	div#fullpage div#section3{
		background: black;
	}

}

@keyframes slider {
	0% {
	background-position: 0% top; }

	15% {
	background-position: 0% top; }

	20% {
	background-position: 25% top; }

	35% {
	background-position: 25% top; }

	40% {
	background-position: 50% top; }

	55% {
	background-position: 50% top; }

	60% {
	background-position: 75% top; }

	75% {
	background-position: 75% top; }

	80% {
	background-position: 100% top; }

	95% {
	background-position: 100% top; }
}
    
div#fullpage div#section3 div.intro {
	margin: 0 auto;
	max-width: 1000px;
	width: 95%;
	position: relative;
}

@media screen and (max-width: 896px){
	div#fullpage div#section3 div.intro {
		width: 100%;
		padding: 0%;
	}
}


div#fullpage div#section3 div.intro h1 {
	text-indent: -9999px;
	background: url(imgs/h1_episode.png);
	width: 543px;
	height: 90px;
	margin: 0 auto 50px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section3 div.intro h1 {
		background: url(imgs/sp_h1_episode.png) center top no-repeat;
		background-size: 80%;
		width: 100%;
		height: 17vh;
		margin: 0 auto 15px;
	}
}
div#fullpage div ul {
	margin: 0 auto;
	width: 553px;
}
@media screen and (max-width: 896px){
	div#fullpage div  ul {
		width: 100%;
	}
}


div#fullpage div#section3 ul li a {
	width: 553px;
	height: 48px;
	display: block;
}
@media screen and (max-width: 896px){
	div#fullpage div#section3 ul li a {
		width: 100%;
		height: auto;
	}
}
div#fullpage div#section3 #li_1 {
	text-indent: -9999px;
	background: url(imgs/staff_01.png);
	width: 49px;
	height: 11px;
	margin: 0 auto 20px;;
}

div#fullpage div#section3 #li_2 {
	text-indent: -9999px;
	background: url(imgs/episode_02.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section3 #li_3 {
	text-indent: -9999px;
	background: url(imgs/episode_03.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section3 #li_4 {
	text-indent: -9999px;
	background: url(imgs/episode_04.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section3 #li_2:hover {
	text-indent: -9999px;
	background: url(imgs/episode_02_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section3 #li_3:hover {
	text-indent: -9999px;
	background: url(imgs/episode_03_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section3 #li_4:hover {
	text-indent: -9999px;
	background: url(imgs/episode_04_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}

div#fullpage div#section3 ul li.list_style {
	margin-bottom: 24px;
}



/* =========================================================
section4,5,6
========================================================= */
div#fullpage div#section4,
div#fullpage div#section5,
div#fullpage div#section6 {
	margin: 0 auto;
	background: #111;
	position: relative;
}

div#fullpage div#section4 #tabs,
div#fullpage div#section5 #tabs,
div#fullpage div#section6 #tabs {
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #tabs,
	div#fullpage div#section5 #tabs,
	div#fullpage div#section6 #tabs {
		width: 100%;
	}	
}


div#fullpage div#section4 #panel1 {
	background: url(imgs/03_black1.png) no-repeat center top;
	margin: 0px auto 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1 {
		background: none;
	}
}


div#fullpage div#section5 #panel2 {
	background: url(imgs/03_black2.png) no-repeat center top;
	margin: 0px auto 0px;
}
div#fullpage div#section6 #panel3 {
	background: url(imgs/03_black3.png) no-repeat center top;
	margin: 0px auto 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1 {
		background: url(imgs/sp_03_black1.png) no-repeat center top;
		background-size: 100%;
		width: 100%;
		margin: auto;
	}
	div#fullpage div#section5 #panel2 {
		background: url(imgs/sp_03_black2.png) no-repeat center top;
		background-size: 100%;
		width: 100%;
		margin: auto;
	}
	div#fullpage div#section6 #panel3 {
		background: url(imgs/sp_03_black3.png) no-repeat center top;
		background-size: 100%;
		width:100%;
		margin: auto;
	}
}


div#fullpage div#section4 #panel1 h1 {	
	max-width: 600px;
	width: 95%;
	margin: 0 auto;
	padding-top: 112px;
}
div#fullpage div#section5 #panel2 h1 {
	max-width: 600px;
	width: 95%;
	margin: 0 auto;
	padding-top: 112px;
}
div#fullpage div#section6 #panel3 h1 {
	max-width: 600px;
	margin: 0 auto;
	padding-top: 112px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1 h1 ,
	div#fullpage div#section5 #panel2 h1 ,
	div#fullpage div#section6 #panel3 h1 {
		width: 88%;
		margin: auto;
		padding-top: 0px;
	}
}

div#fullpage div#section4 #panel1 p.txt {
	background: url(imgs/03_black1_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 	
}
div#fullpage div#section5 #panel2 p.txt {
	background: url(imgs/03_black2_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 	
}
@media screen and (max-width: 896px){
	div#fullpage div#section5 #panel2 p.txt {
		padding: 0 8%;
	}
}
div#fullpage div#section6 #panel3 p.txt {
	background: url(imgs/03_black3_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1 p.txt ,
	div#fullpage div#section5 #panel2 p.txt ,
	div#fullpage div#section6 #panel3 p.txt {
		width: 100%;
		height: auto;
		background: none;
	}
}


div#fullpage div#section4 div.change,
div#fullpage div#section5 div.change,
div#fullpage div#section6 div.change {
	width: 368px;
	height: 68px;
	margin: 0 auto;
}

@media screen and (max-width: 896px){
	div#fullpage div#section4 div.change,
	div#fullpage div#section5 div.change,
	div#fullpage div#section6 div.change {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		height: auto!important;
	}
}

div#fullpage div#section4 div.change a,
div#fullpage div#section5 div.change a,
div#fullpage div#section6 div.change a {
	width: 368px;
	height: 68px;
	margin: 10px auto 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 div.change a,
	div#fullpage div#section5 div.change a,
	div#fullpage div#section6 div.change a {
		width: 100%;
		height: 50px;
	}
}

div#fullpage div.white {
	background: url(imgs/button_bw.png) no-repeat left top;
	width: 296px;
	height: 50px;
	cursor: pointer;
	margin: 50px auto 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div.white {
		background: url(imgs/sp_button_bw.png) no-repeat left top;
		background-size: 100%;
		width: 100%;
		height: 50px;
		margin-top: 0;
	}
}


div#fullpage div.white:hover {
	background: url(imgs/button_bw.png) no-repeat left -50px;
}

/* =========================================================
section4,5,6 panel1_2
========================================================= */

@media screen and (max-width: 896px){
	div#fullpage div#section4 .tableCell , div#fullpage div#section5 .tableCell , div#fullpage div#section6 .tableCell {
		/*vertical-align: top;*/
	}
}

div#fullpage div#section4 #panel1_1 {
	background: url(imgs/03_black1_1.png) no-repeat center top;
	margin: 0px auto 0px;
}
div#fullpage div#section5 #panel2_1 {
	background: url(imgs/03_black2_1.png) no-repeat center top;
	margin: 0px auto 0px;
}
div#fullpage div#section6 #panel3_1 {
	background: url(imgs/03_black3_1.png) no-repeat center top;
	margin: 0px auto 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1_1 {
		background: url(imgs/sp_03_black1_1.png) no-repeat center top;
		background-size: 100%;
		margin-top: -60px;
	}
	div#fullpage div#section5 #panel2_1 {
		background: url(imgs/sp_03_black2_1.png) no-repeat center top;
		background-size: 100%;
		margin-top: -60px;
	}
	div#fullpage div#section6 #panel3_1 {
		background: url(imgs/sp_03_black3_1.png) no-repeat center top;
		background-size: 100%;
		margin-top: -60px;
	}
}

div#fullpage div#section4 #panel1_1 h1 {
	/* background: url(imgs/03_black1_1.png) no-repeat center top; */
	width: 615px;
	margin: 0px auto 0px;
	padding: 172px 0px 0px 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1_1 h1 {
		width: 84%;
	}
}

div#fullpage div#section4 #panel1_1 p{
	background: url(imgs/03_black1_1_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1_1 p{
		background: none;
		width: 88%;
		height: auto;
	}
}

div#fullpage div#section5 #panel2_1 h1 {
	/* background: url(imgs/03_black2_1.png) no-repeat center top; */
	width: 615px;
	margin: 0px auto 0px;
	padding: 174px 0px 0px 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section5 #panel2_1 h1 {
		width: 84%;
	}
}

div#fullpage div#section5 #panel2_1 p{
	background: url(imgs/03_black2_1_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 
}
@media screen and (max-width: 896px){
	div#fullpage div#section5 #panel2_1 p{
		background: none;
		width: 84%;
		height: auto;
	}
}

div#fullpage div#section6 #panel3_1 h1 {
/* 	background: url(imgs/03_black3_1.png) no-repeat center top; */
	width: 615px;
	margin: 0px auto 0px;
	padding: 174px 0px 0px 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section6 #panel3_1 h1 {
		width: 84%;
	}
}

div#fullpage div#section6 #panel3_1 p{
	background: url(imgs/03_black3_1_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 
}
@media screen and (max-width: 896px){
	div#fullpage div#section6 #panel3_1 p{
		background: none;
		width: 84%;
		height: auto;
	}
}

div#fullpage div#section5 #panel2_1 p{}

div#fullpage div#section6 #panel3_1 p {}

div#fullpage div#section4 #panel1 p.txt {
	background: url(imgs/03_black1_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 	
}
@media screen and (max-width: 896px){
	div#fullpage div#section4 #panel1 p.txt {
		background: none;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section5 #panel2 p.txt {
	background: url(imgs/03_black2_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 	
}
@media screen and (max-width: 896px){
	div#fullpage div#section5 #panel2 p.txt {
		background: none;
		width: 100%;
		height: auto;
	}
}
div#fullpage div#section6 #panel3 p.txt {
	background: url(imgs/03_black3_txt.png) no-repeat center top;
	width: 800px;
	height: 151px;
	margin: 0 auto; 
}
@media screen and (max-width: 896px){
	div#fullpage div#section6 #panel3 p.txt {
		background: none;
		width: 100%;
		height: auto;
	}
}


div#fullpage div.black {
	background: url(imgs/button_bw.png) no-repeat -297px top;
	width: 296px;
	height: 49px;
	cursor: pointer;
	margin: 30px auto 0px;
}
@media screen and (max-width: 896px){
	div#fullpage div.black {
		background: none;
		background-size: auto;
		width: 100%;
		height: 100%!important;
		margin: 0 auto;
	}
}

div#fullpage div.black:hover {
	background: url(imgs/button_bw.png) no-repeat -297px -50px;
}

div#fullpage div#section4 #panel1_1 p.scrollArrow
div#fullpage div#section5 #panel2_1 p.scrollArrow
div#fullpage div#section6 #panel3_1 p.scrollArrow {
	background: url(imgs/button_bw.png) no-repeat center top;
}

div#fullpage div.fullPage-slidesNav {
	display: none;
}



/* =========================================================
section7
========================================================= */
div#fullpage div#section7 {
	height: 100%;
	position: relative;
	background: #111;
	background-image: url("imgs/b_bg.jpg");
	background-position: 11.5% middle;
	background-repeat: repeat-x;
	background-size: 500% auto;
	height: 100%;
	-webkit-animation: slider 15s infinite;
	-moz-animation: slider 15s infinite;
	animation: slider 15s infinite;
}

@keyframes slider {
	0% {
	background-position: 0% top; }

	15% {
	background-position: 0% top; }

	20% {
	background-position: 25% top; }

	35% {
	background-position: 25% top; }

	40% {
	background-position: 50% top; }

	55% {
	background-position: 50% top; }

	60% {
	background-position: 75% top; }

	75% {
	background-position: 75% top; }

	80% {
	background-position: 100% top; }

	95% {
	background-position: 100% top; }
}
    
div#fullpage div#section7 div.intro {
	margin: 0 auto;
	max-width: 1000px;
	width: 95%;
	position: relative;
}
@media screen and (max-width: 896px){
	div#fullpage div#section7 div.intro{
		width: 95%;
		padding: 0;
	}
}

div#fullpage div#section7 div.intro h1 {
	text-indent: -9999px;
	background: url(imgs/h1_staff.png);
	width: 543px;
	height: 90px;
}

div#fullpage div#section7 div.intro h1 {
	text-indent: -9999px;
	background: url(imgs/h1_staff.png);
	width: 543px;
	height: 90px;
	margin: 0 auto 50px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section7 div.intro h1 {
		width: 100%;
		height: auto;
		background: none;
		text-indent: inherit;
		margin: 0 auto 10px;
		padding: 0 12%;
	}
}

div#fullpage div#section7 ul {
	margin: 0 auto;
	width: 553px;
}
div#fullpage div#section7 ul.sp {
	display: none;
}
@media screen and (max-width: 896px){
	div#fullpage div#section7 ul.pc{
		display: none;
	}
	div#fullpage div#section7 ul.sp {
		width: 100%;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}
@media screen and (max-width: 896px){
	div#fullpage div#section7 ul li {
		width: 43.8%;
	} 
}
div#fullpage div#section7 ul li a {
	width: 553px;
	height: 48px;
	display: block;
}
@media screen and (max-width: 896px){
	div#fullpage div#section7 ul li a {
		width: 100%;
		height: auto;
	}
}
div#fullpage div#section7 #li_1 {
	text-indent: -9999px;
	background: url(imgs/staff_01.png);
	width: 49px;
	height: 11px;
	margin: 0 auto 20px;;
}

div#fullpage div#section7 #li_2 {
	text-indent: -9999px;
	background: url(imgs/staff_02.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_3 {
	text-indent: -9999px;
	background: url(imgs/staff_03.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_4 {
	text-indent: -9999px;
	background: url(imgs/staff_04.png) no-repeat center center;
	width: 553px;
	height: 48px;
	
	}
div#fullpage div#section7 #li_5 {
	text-indent: -9999px;
	background: url(imgs/staff_05.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_6 {
	text-indent: -9999px;
	background: url(imgs/staff_06.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_2:hover {
	text-indent: -9999px;
	background: url(imgs/staff_02_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_3:hover {
	text-indent: -9999px;
	background: url(imgs/staff_03_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_4:hover {
	text-indent: -9999px;
	background: url(imgs/staff_04_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_5:hover {
	text-indent: -9999px;
	background: url(imgs/staff_05_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section7 #li_6:hover {
	text-indent: -9999px;
	background: url(imgs/staff_06_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}


div#fullpage div#section7 ul li.list_style {
	margin-bottom: 18px;
}


div#fullpage div#section8 div#slide1.active div.intro a ,
div#fullpage div#section8 div#slide2.active div.intro a ,
div#fullpage div#section9 div#slide1.active div.intro a ,
div#fullpage div#section9 div#slide2.active div.intro a ,
div#fullpage div#section10 div#slide1.active div.intro a ,
div#fullpage div#section10 div#slide2.active div.intro a ,
div#fullpage div#section11 div#slide1.active div.intro a ,
div#fullpage div#section11 div#slide2.active div.intro a ,
div#fullpage div#section12 div#slide1.active div.intro a ,
div#fullpage div#section12 div#slide2.active div.intro a {
	z-index: 11;
}

/* =========================================================
section8
========================================================= */
div#fullpage div#section8 {
	background: #111;
}

/* =========================================================
slide1縲縺溘°縺�
========================================================= */
div#fullpage div#section8 div#slide1 {
	background: url(imgs/staff01.png) no-repeat 69% center;
	background-size: 65%;
	margin: 0 auto;
}



div#fullpage div#section8 div#slide1 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section8 div#slide1 div.intro {
		padding-right: 0;
		position: static;
	}

	div#fullpage div#section8 div#slide1 div.intro a{
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}
}

div#fullpage div#section8 div#slide1 div.intro h1#block1 {
	background: url(imgs/staff01-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}



div#fullpage div#section8 div#slide1 div.intro p#block2 {
	background: url(imgs/staff-name01.png) no-repeat center center;
	width: 433px;
	height: 36px;
	margin: 0px 0px 25px auto;
}


div#fullpage div#section8 div#slide1 div.intro p#block3 {
	background: url(imgs/takada_txt3.png) no-repeat center center;
	width: 433px;
	height: 105px;
	margin: 0px 0px 20px auto;
}


div#fullpage div#section8 div#slide1 div.intro p#block4 {
	background: url(imgs/takada_txt4.png) no-repeat center center;
	width: 433px;
	height: 145px;
	margin: 0px 0px 20px auto;
}

#fullpage .intro .memberBtn{
	width: 100%;
		margin: 0 0 0 auto;
}
#fullpage .intro .memberBtn a{
	width: 215px;
	height: 28px;
	margin: 0px;
	display: block;
	background: url(imgs/brain_button.png) no-repeat left top;
}

@media screen and (max-width: 896px){
	#fullpage .intro .memberBtn a{
display: none;
}
}

#fullpage #slide2 .intro .memberBtn a{
	margin-left: auto;
	background: url(imgs/brain_button.png) no-repeat right top;
}


/* staff 02縲邏�鬘� */
#fullpage #section9 .memberBtn a{
	margin-left: auto;
	background-position: left -27px;
}

/* staff 02 讎りｦ� */
#fullpage #section9 #slide2 .memberBtn a{
	margin-left: auto;
  background-position: right -27px;
}


/* staff 03縲邏�鬘� */
#fullpage #section10 .memberBtn a{
	background-position: left -53px;
}

/* staff 03 讎りｦ� */
#fullpage #section10 #slide2 .memberBtn a{
  background-position: right -53px;
}


/* staff 04縲邏�鬘� */
#fullpage #section11 .memberBtn a{
		margin-left: auto;
	background-position: left -79px;
}

/* staff 04 讎りｦ� */
#fullpage #section11 #slide2 .memberBtn a{
		margin-left: auto;
  background-position: right -79px;
}


/* staff 05縲邏�鬘� */
#fullpage #section12 .memberBtn a{
	background-position: left -106px;
}

/* staff 05 讎りｦ� */
#fullpage #section12 #slide2 .memberBtn a{
  background-position: right -106px;
}





/* =========================================================
slide2縲縺溘°縺�閼ｳ
========================================================= */
div#fullpage div#section8 div#slide2 {
	background: url(imgs/staff01-smile.png) no-repeat 0% center #111;
    background-size: 67%;
    margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section8 div#slide2 {
		padding: 0 5%;
	}
}

div#fullpage div#section8 div#slide2 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section8 div#slide2 div.intro {
		padding: 0;
		position: static;
	}
	div#fullpage div#section8 div#slide2 div.intro a {
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}

}

div#fullpage div#section8 div#slide2 div.intro h1#block1 {
	background: url(imgs/staff01-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section8 div#slide2 div.intro h1#block1 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		margin-bottom: 30vh;
	}
	div#fullpage div#section8 div#slide2 div.intro h1#block1 img {
		width: 70px;
	}
}

div#fullpage div#section8 div#slide2 div.intro p#block2 {
	background: url(imgs/takada_txt2_2.png) no-repeat center center;
	width: 433px;
	height: 103px;
	margin: 0px 0px 15px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section8 div#slide2 div.intro p#block2 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section8 div#slide2 div.intro p#block3 {
	background: url(imgs/takada_txt3_2.png) no-repeat center center;
	width: 433px;
	height: 197px;
	margin: 0px 0px 25px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section8 div#slide2 div.intro p#block3 {
		width: 100%;
		height: auto;
		background: none;
		background-size: 100%;
	}
}


/* =========================================================
section9
========================================================= */
div#fullpage div#section9 {
	background: #111;
}

/* =========================================================
section9 slide1 縺�￠縺�
========================================================= */
div#fullpage div#section9 div#slide1 {
	background: url(imgs/staff02.png) no-repeat 35% center;
	background-size: 60%;
	margin: 0 auto;
}



div#fullpage div#section9 div#slide1 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section9 div#slide1 div.intro {
		padding-right: 0;
		position: static;
	}
	div#fullpage div#section9 div#slide1 div.intro a {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		z-index: 10;
	}
}

div#fullpage div#section9 div#slide1 div.intro h1#block1 {
	background: url(imgs/staff02-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section9 div#slide1 div.intro h1#block1 {
		width: 100%;
		height: auto;
		background: none;
		background-size: 100%;
		text-align: right;
	}
	div#fullpage div#section9 div#slide1 div.intro h1#block1 img {
		width: 64.3%;
	}
}

div#fullpage div#section9 div#slide1 div.intro p#block2 {
	background: url(imgs/staff-name02.png) no-repeat center center;
	width: 433px;
	height: 36px;
	margin: 0px 0px 25px auto;

}
@media screen and (max-width: 896px){
	div#fullpage div#section9 div#slide1 div.intro p#block2 {
		width: 100%;
		height: auto;
		background: none;
		background-size: 100%;
		text-align: right;
	}
	div#fullpage div#section9 div#slide1 div.intro p#block2 img {
		width: 64.3%;
	}
}

div#fullpage div#section9 div#slide1 div.intro p#block3 {
	background: url(imgs/ikeda_txt3.png) no-repeat center center;
	width: 433px;
	height: 96px;
	margin: 0px 0px 20px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section9 div#slide1 div.intro p#block3 {
		width: 100%;
		height: auto;
		background: none;
		background-size: 100%;
		margin: 0 0 10vh auto;
	}
}

div#fullpage div#section9 div#slide1 div.intro p#block4 {
	background: url(imgs/ikeda_txt4.png) no-repeat center center;
	width: 433px;
	height: 170px;
	margin: 0px 0px 20px auto;
}




/* =========================================================
section9 slide2縲縺�￠縺�閼ｳ
========================================================= */
div#fullpage div#section9 div#slide2 {
	background: url(imgs/staff02-smile.png) no-repeat 20% center #111;
	background-size: 59%;
	margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section9 div#slide2 {
		padding: 0 5%;
	}
}

div#fullpage div#section9 div#slide2 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}

div#fullpage div#section9 div#slide2 div.intro h1#block1 {
	background: url(imgs/staff02-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section9 div#slide2 div.intro h1#block1 {
		width: 100%;
		height: auto;
		background: none;
	}
}

div#fullpage div#section9 div#slide2 div.intro p#block2 {
	background: url(imgs/ikeda_txt2_2.png) no-repeat center center;
	width: 433px;
	height: 103px;
	margin: 0px 0px 15px auto;

}

div#fullpage div#section9 div#slide2 div.intro p#block3 {
	background: url(imgs/ikeda_txt3_2.png) no-repeat 0 top;
	width: 433px;
	height: 197px;
	margin: 0px 0px 25px auto;

}



/* =========================================================
section10
========================================================= */
div#fullpage div#section10 {
	background: #111;
}

/* =========================================================
section10 slide1
========================================================= */
div#fullpage div#section10 div#slide1 {
	background: url(imgs/staff03.png) no-repeat 60% center;
    background-size: 59%;
    margin: 0 auto;
}


div#fullpage div#section10 div#slide1 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide1 div.intro {
		padding-right: 0;
		position: static;
	}
	div#fullpage div#section10 div#slide1 div.intro a {
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}
}

div#fullpage div#section10 div#slide1 div.intro h1#block1 {
	background: url(imgs/staff03-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide1 div.intro h1#block1 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		text-align: right;
	}
	div#fullpage div#section10 div#slide1 div.intro h1#block1 img {
		width: 64.3%;
	}
}

div#fullpage div#section10 div#slide1 div.intro p#block2 {
	background: url(imgs/morioka_txt2.png) no-repeat center center;
	width: 433px;
	height: 36px;
	margin: 0px 0px 25px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide1 div.intro p#block2 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		text-align: right;
	}
	div#fullpage div#section10 div#slide1 div.intro p#block2 img {
		width: 64.3%;
	}
}



div#fullpage div#section10 div#slide1 div.intro p#block3 {
	background: url(imgs/morioka_txt3.png) no-repeat center center;
	width: 433px;
	height: 90px;
	margin: 0px 0px 20px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide1 div.intro p#block3 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section10 div#slide1 div.intro p#block4 {
	background: url(imgs/morioka_txt4.png) no-repeat center center;
	width: 433px;
	height: 145px;
	margin: 0px 0px 20px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide1 div.intro p#block4 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}




/* =========================================================
slide2
========================================================= */
div#fullpage div#section10 div#slide2 {
	background: url(imgs/staff03-smile.png) no-repeat 10% center #111;
	background-size: 61%;
	margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide2 {
		background: url(imgs/sp_nakata_2.png) no-repeat right top #111;
		background-size: contain;
		padding: 0 5%;
	}
}

div#fullpage div#section10 div#slide2 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide2 div.intro {
		padding-right: 0;
		position: static;
	}
	div#fullpage div#section10 div#slide2 div.intro a {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}
}

div#fullpage div#section10 div#slide2 div.intro h1#block1 {
	background: url(imgs/staff03-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide2 div.intro h1#block1 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		margin-bottom: 30vh;
	}
	div#fullpage div#section10 div#slide2 div.intro h1#block1 img {
		width: 70px;
	}
}

div#fullpage div#section10 div#slide2 div.intro p#block2 {
	background: url(imgs/morioka_txt2_2.png) no-repeat center center;
	width: 433px;
	height: 103px;
	margin: 0px 0px 15px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide2 div.intro p#block2 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}	
}

div#fullpage div#section10 div#slide2 div.intro p#block3 {
	background: url(imgs/morioka_txt3_2.png) no-repeat center center;
	width: 433px;
	height: 197px;
	margin: 0px 0px 25px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section10 div#slide2 div.intro p#block3 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		margin: 0px 0px 10vh auto;
	}	
}





/* =========================================================
section11
========================================================= */
div#fullpage div#section11 {
	background: #111;
}

/* =========================================================
section11 slide1 繧ゅｊ縺翫°
========================================================= */
div#fullpage div#section11 div#slide1 {
	background: url(imgs/staff04.png) no-repeat 53% center;
	background-size: 60%;
	margin: 0 auto;
}


div#fullpage div#section11 div#slide1 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide1 div.intro {
		padding-right: 0;
		position: static;
	}
	div#fullpage div#section11 div#slide1 div.intro a {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}
}

div#fullpage div#section11 div#slide1 div.intro h1#block1 {
	background: url(imgs/staff04-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide1 div.intro h1#block1 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		text-align: right;
	}
	div#fullpage div#section11 div#slide1 div.intro h1#block1 img {
		width: 64.3%;
	}
}

div#fullpage div#section11 div#slide1 div.intro p#block2 {
	background: url(imgs/marika_txt2.png) no-repeat center center;
	width: 433px;
	height: 36px;
	margin: 0px 0px 25px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide1 div.intro p#block2 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		text-align: right;
	}
	div#fullpage div#section11 div#slide1 div.intro p#block2 {
		width: 64.3%;
	}
}

div#fullpage div#section11 div#slide1 div.intro p#block3 {
	background: url(imgs/marika_txt3.png) no-repeat center center;
	width: 433px;
	height: 90px;
	margin: 0px 0px 20px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide1 div.intro p#block3 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section11 div#slide1 div.intro p#block4 {
	background: url(imgs/marika_txt4.png) no-repeat center center;
	width: 433px;
	height: 170px;
	margin: 0px 0px 20px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide1 div.intro p#block4 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}



/* =========================================================
slide2 縲繧ゅｊ縺翫°閼ｳ
========================================================= */
div#fullpage div#section11 div#slide2 {
	background: url(imgs/staff04-smile.png) no-repeat 0% 30% #111;
	background-size: 60%;
	margin: 0 auto;
}

div#fullpage div#section11 div#slide2 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide2 div.intro {
		padding-right: 0;
		
		position: static;
	}
	div#fullpage div#section11 div#slide2 div.intro a {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}
}

div#fullpage div#section11 div#slide2 div.intro h1#block1 {
	background: url(imgs/staff04-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide2 div.intro h1#block1 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		margin-bottom: 30vh;
	}
	div#fullpage div#section11 div#slide2 div.intro h1#block1 img {
		width: 70px;
	}
}

div#fullpage div#section11 div#slide2 div.intro p#block2 {
	background: url(imgs/marika_txt2_2.png) no-repeat center center;
	width: 433px;
	height: 103px;
	margin: 0px 0px 15px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide2 div.intro p#block2 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section11 div#slide2 div.intro p#block3 {
	background: url(imgs/marika_txt3_2.png) no-repeat center center;
	width: 433px;
	height: 197px;
	margin: 0px 0px 25px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section11 div#slide2 div.intro p#block3 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}



/* =========================================================
section12
========================================================= */
div#fullpage div#section12 {
	background: #111;
}

/* =========================================================
section10 slide1縲縺翫�
========================================================= */
div#fullpage div#section12 div#slide1 {
	background: url(imgs/staff05.png) no-repeat 61% center;
    background-size: 64%;
    margin: 0 auto;
}

div#fullpage div#section12 div#slide1 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide1 div.intro {
		padding-right: 0;
		position: static;
	}
	div#fullpage div#section12 div#slide1 div.intro a {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 10;
		width: 100%;
	}
}

div#fullpage div#section12 div#slide1 div.intro h1#block1 {
	background: url(imgs/staff05-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide1 div.intro h1#block1 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		text-align: right;
	}
	div#fullpage div#section12 div#slide1 div.intro h1#block1 img{
		width: 64.3%;
	}
}

div#fullpage div#section12 div#slide1 div.intro p#block2 {
	background: url(imgs/staff-name05.png) no-repeat center center;
	width: 433px;
	height: 36px;
	margin: 0px 0px 25px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide1 div.intro p#block2 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		text-align: right;
	}
	div#fullpage div#section12 div#slide1 div.intro p#block2 img {
		width: 64.3%;
	}
}

div#fullpage div#section12 div#slide1 div.intro p#block3 {
	background: url(imgs/ono_txt3.png) no-repeat center center;
	width: 433px;
	height: 90px;
	margin: 0px 0px 20px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide1 div.intro p#block3 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section12 div#slide1 div.intro p#block4 {
	background: url(imgs/ono_txt4.png) no-repeat center center;
	width: 433px;
	height: 170px;
	margin: 0px 0px 20px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide1 div.intro p#block4 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}



/* =========================================================
slide2縲縺翫�閼ｳ
========================================================= */
div#fullpage div#section12 div#slide2 {
	background: url(imgs/staff05-smile.png) no-repeat 5% 40% #111;
    background-size: 64%;
    margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide2 {
		background: url(imgs/sp_fujiwara_2.png) no-repeat right top;
		background-size: contain;
		padding: 0 5%;
	}
}

div#fullpage div#section12 div#slide2 div.intro {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0 15%;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide2 div.intro {
		padding-right: 0;
		position: static;
	}
	div#fullpage div#section12 div#slide2 div.intro a {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}
}

div#fullpage div#section12 div#slide2 div.intro h1#block1 {
	background: url(imgs/staff05-ttl.png) no-repeat center center;
	width: 433px;
	height: 230px;
	margin: 0px 0px 25px auto;
	text-align: right;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide2 div.intro h1#block1 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
		margin-bottom: 30vh;
	}
	div#fullpage div#section12 div#slide2 div.intro h1#block1 img {
		width: 70px;
	}
}

div#fullpage div#section12 div#slide2 div.intro p#block2 {
	background: url(imgs/ono_txt2_2.png) no-repeat center center;
	width: 433px;
	height: 103px;
	margin: 0px 0px 15px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide2 div.intro p#block2 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section12 div#slide2 div.intro p#block3 {
	background: url(imgs/ono_txt3_2.png) no-repeat center center;
	width: 433px;
	height: 197px;
	margin: 0px 0px 25px auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section12 div#slide2 div.intro p#block3 {
		background: none;
		background-size: 100%;
		width: 100%;
		height: auto;
	}	
}






/* =========================================================
section13
========================================================= */
div#fullpage div#section13 {
	height: 100%;
	position: relative;
	background: #111;
	background-image: url("imgs/b_bg.jpg");
	background-position: 11.5% middle;
	background-repeat: repeat-x;
	background-size: 500% auto;
	height: 100%;
	-webkit-animation: slider 15s infinite;
	-moz-animation: slider 15s infinite;
	animation: slider 15s infinite;
}

@media screen and (max-width: 769px){
	div#fullpage div#section13{
		background-image: none;
	}
}


@keyframes slider {
	0% {
	background-position: 0% top; }

	15% {
	background-position: 0% top; }

	20% {
	background-position: 25% top; }

	35% {
	background-position: 25% top; }

	40% {
	background-position: 50% top; }

	55% {
	background-position: 50% top; }

	60% {
	background-position: 75% top; }

	75% {
	background-position: 75% top; }

	80% {
	background-position: 100% top; }

	95% {
	background-position: 100% top; }
}
@media screen and (max-width: 896px){
	@keyframes slider {
	0% {
		background-position: 0% center; }

		15% {
		background-position: 0% center; }

		20% {
		background-position: 25% center; }

		35% {
		background-position: 25% center; }

		40% {
		background-position: 50% center; }

		55% {
		background-position: 50% center; }

		60% {
		background-position: 75% center; }

		75% {
		background-position: 75% center; }

		80% {
		background-position: 100% center; }

		95% {
		background-position: 100% center; }
	}
}
    
div#fullpage div#section13 div.intro {
	margin: 0 auto;
	width: 1000px;
	position: relative;
}
@media screen and (max-width: 896px){
	div#fullpage div#section13 div.intro {
		width: 100%;
		padding: 0 8%;
	}
}

div#fullpage div#section13 div.intro h1 {
	text-indent: -9999px;
	background: url(imgs/h1_work.png);
	width: 543px;
	height: 90px;
	margin: 0px auto 50px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section13 div.intro h1 {
		background: none;
		width: 100%;
		height: auto;
		text-indent: inherit;
		margin: 0px auto 8px;
	}
	div#fullpage div#section13 div.intro h1 img{
		width: 84%;

	}
}

div#fullpage div#section13 p#tg_txt {
	text-indent: -9999px;
	background: url(imgs/p_work.png) no-repeat;
	width: 543px;
	height: 95px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section13 p#tg_txt {
		width: 100%;
	}
}

div#fullpage div  ul {
	margin: 0 auto;
	width: 553px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section13 ul {
		width: 100%;
	}
}

div#fullpage div#section13 ul li a {
	width: 553px;
	height: 48px;
	display: block;
}
@media screen and (max-width: 896px){
	div#fullpage div#section13 ul li a {
		width: 100%;
		height: auto;
	}
}
div#fullpage div#section13 #li_1 {
	text-indent: -9999px;
	background: url(imgs/staff_01.png);
	width: 49px;
	height: 11px;
	margin: 0 auto 20px;;
}

div#fullpage div#section13 #li_2 {
	text-indent: -9999px;
	background: url(imgs/works_02.png) no-repeat center center;
	width: 553px;
	height: 48px;
}

div#fullpage div#section13 #li_3 {
	text-indent: -9999px;
	background: url(imgs/works_03.png) no-repeat center center;
	width: 553px;
	height: 48px;
}

div#fullpage div#section13 #li_2:hover {
	text-indent: -9999px;
	background: url(imgs/works_02_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}
div#fullpage div#section13 #li_3:hover {
	text-indent: -9999px;
	background: url(imgs/works_03_on.png) no-repeat center center;
	width: 553px;
	height: 48px;
}

div#fullpage div#section13 ul li.list_style {
	margin-bottom: 10px;
}

/* =========================================================
section14
========================================================= */
div#fullpage div#section14 {
	background: #111;
}

div#fullpage div#section14 div.intro {
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section14 div.intro {
		padding: 0 8%;
		display: flex;
    	flex-direction: column;
	}	
}

div#fullpage div#section14 div.intro .data_title {
	background: url(imgs/data_title.png);
	width: 1000px;
	height: 102px;
	margin-bottom: 40px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section14 div.intro .data_title {
		background: none;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	div#fullpage div#section14 div.intro .data_title p.txt{
		width: 100%;
	}
}

div#fullpage div#section14 div.intro ul#feed {
	width: auto;
}

@media screen and (max-width: 896px){
	div#fullpage div#section14 div.intro .feedarea{
		min-height: 325px;
	}
	div#fullpage div#section14 div.intro ul.datalist {
		opacity: 0;
		visibility: hidden;
		height: 0;
		transition: .5s;
		position: relative;
	}
	div#fullpage div#section14 div.intro ul#feed1 {
		left: -50px;
	}
	div#fullpage div#section14 div.intro ul#feed2 {
		left: 50px;
	}
	div#fullpage div#section14 div.intro ul.datalist.active {
		opacity: 1;
		visibility: inherit;
		height: 100%;
	}
	div#fullpage div#section14 div.intro ul#feed1.active ,
	div#fullpage div#section14 div.intro ul#feed2.active {
		left: 0;
	}
}

div#fullpage div#section14 div.intro ul#feed li {
	float: left;
	margin-bottom: 28px;
	position: relative;
	width: 50%;
}
div#fullpage #cursor_01 {
	position: absolute;
	top: 69px;
	left: 74px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section14 div.intro ul li {
		position: relative;
		margin-bottom: 20px;
	}
	div#fullpage div#section14 div.intro ul li .sp_cursor {
		position: absolute;
	    top: 24px;
	    left: 27%;
		width: 10px;
	}
}
div#fullpage  #cursor_02{
	position: absolute;
	top: 69px;
	left: 74px;
}
div#fullpage  #cursor_03{
	position: absolute;
	top: 69px;
	left: 74px;
}
div#fullpage  #cursor_04{
	position: absolute;
	top: 69px;
	left: 74px;
}

div#fullpage  #cursor_05{
	position: absolute;
	top: 69px;
	left: 74px;
}
div#fullpage #cursor_06 {
	position: absolute;
	top: 69px;
	left: 95px;
}
div#fullpage #cursor_07  {
	position: absolute;
	top: 69px;
	left: 74px;
}
div#fullpage #cursor_08 {
	position: absolute;
	top: 69px;
	left: 95px;
}
div#fullpage  #cursor_09  {
	position: absolute;
	top: 69px;
	left: 74px;
}
div#fullpage #cursor_10 {
	position: absolute;
	top: 69px;
	left: 95px;
}

div#fullpage div#section14 div.intro ul#feed li img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section14 .btncompany{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
		display: none;
	}
	div#fullpage div#section14 .btncompany.active{
		display: block;
	}
}

/* =========================================================
section15
========================================================= */

div#fullpage div#section15 {
	background: #111;
}

div#fullpage div#section15 div.intro {
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section15 div.intro {
		max-width: inherit;
		padding: 0 8%;
	}
}

div#fullpage div#section15 div.intro .secret_title {
	background: url(imgs/secret_title.png) no-repeat 7px center;
	width: 1000px;
	height: 103px;
	margin-bottom: 40px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section15 div.intro .secret_title {
		background: none;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}	
}
@media screen and (max-width: 896px){
	div#fullpage div#section15 div.intro .secret_title p.txt{
		width: 100%;
		height: auto;
	}	
}


div#fullpage div#section15 div.intro .secret_content {
	width: 1000px;
	height: 75px;
	position: relative;
	margin-bottom: 15px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section15 div.intro .secret_content {
		width: 100%;
		height: auto;
	}
}
div#fullpage div#section15 div.intro .secret_main {
	position: relative;
	width: 480px;
	height: 75px;
	margin: 0 auto;
	z-index: 2;
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
}
@media screen and (max-width: 896px){
	div#fullpage div#section15 div.intro .secret_main {
		width: 100%;
		height: auto;
	}
}
@media screen and (min-width: 769px){
	div#fullpage div#section15 div.intro .secret_main:hover {
		padding-right: 10px;
	}
}

div#fullpage div#section15 div.intro .secret_sub {
	width: 480px;
	height: 75px;
	margin: -75px auto 0px;
	padding-left: 15px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 896px){
	div#fullpage div#section15 div.intro .secret_sub {
		width: 100%;
		margin: 0 auto;
		height: auto;
		padding-left: 0;
		display: none;
	}
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}
/* =========================================================
section16
========================================================= */
div#fullpage div#section16 {
	background: url(imgs/12_bg.png) no-repeat center center #111;
	background-size: contain;
	margin: 0 auto;
}
@media screen and (max-width: 896px){
	div#fullpage div#section16 {
		background: url(imgs/sp/sp_omoi.png) no-repeat center center;
		background-size: cover;
		padding: 0;
	}
}

div#fullpage div#section16 div.intro {
	max-width: 1000px;
	margin: 0 auto;
	padding-right: 60px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section16 div.intro {
		padding-right: 0;
	}
}

div#fullpage div#section16 div.intro div.ceoMessage p#ceo_1 {
	background: url(imgs/ceo_1.png) no-repeat center center;
	margin: 0 0 0 auto;
	width: 544px;
	height: 116px;
	margin-bottom: 30px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section16 div.intro div.ceoMessage p#ceo_1 {
		background: none;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
}

div#fullpage div#section16 div.intro div.ceoMessage p#ceo_2 {
	background: url(imgs/ceo_2.png) no-repeat center center;
	margin: 0 0 0 auto;
	width: 544px;
	height: 442px;
}
@media screen and (max-width: 896px){
	div#fullpage div#section16 div.intro div.ceoMessage p#ceo_2 {
		background: none;
		width: 100%;
		height: auto;
	}
}

div#fullpage div#section16 div.intro div.ceoMessage p {
	font-size: 0;
}
*/

/* =========================================================
entry-page
========================================================= */
#entry {
	width: auto;
	height: 100%;
	background: #111;
	overflow: hidden;
	position: relative;
}

#entry div#section17 {
	background: #111;
	height: 100%;
	    position: absolute;
    width: 100%;
}

#entry div#section17 .txt {
	font-size: 0px;
	text-indent: -9999px;
}

#entry div#section17 div.intro {
	width: 1000px;
	margin: 0 auto;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media screen and (max-width: 896px){
	#entry div#section17 div.intro {
		width: 100%;
		padding: 0 8%;
	}
}

#entry div#section17 div.intro #entry_1 {
	background: url(imgs/title_logo.png) no-repeat;
	background-size: 100%;
	width: 622px;
	height: 122px;
	margin: 0 auto 60px;
}
@media screen and (max-width: 896px){
	#entry div#section17 div.intro #entry_1 {
		background: url(imgs/sp_entry_1.png) no-repeat;
		background-size: 100%;
		width: 100%;
		height: 18vh;
	}
}

#entry div#section17 div.intro #entry_2 {
	background: url(imgs/entry_2.png) no-repeat center center;
	width: 642px;
	height: 152px;
	margin: 0 auto 60px;
}
@media screen and (max-width: 896px){
	#entry div#section17 div.intro #entry_2 {
		background: url(imgs/sp_entry_2.png) no-repeat center center;
		background-size: 100%;
		width: 100%;
		height: 28vh;
		margin: 0 auto 30px;
	}	
}

#entry div#section17 div.intro #entry_3 {
	background: url(imgs/entry_3.png) no-repeat center center;
	width: 642px;
	height: 22px;
	margin: 0 auto 30px;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
@media screen and (max-width: 896px){
	#entry div#section17 div.intro #entry_3 {
		width: 100%;
	}
}

#entry div#section17 div.intro #entry_3:hover {
	background: url(imgs/entry_3_on.png) no-repeat 297px center;
	margin-bottom: 30px;
}

#entry div#section17 div.intro #entry_4 {
	background: url(imgs/entry_4.png) no-repeat center center;
	width: 642px;
	height: 22px;
	margin: 0 auto 50px;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
@media screen and (max-width: 896px){
	#entry div#section17 div.intro #entry_4 {
		width: 100%;
	}
}

#entry div#section17 div.intro #entry_4:hover {
	background: url(imgs/entry_4_on.png) no-repeat 282px center;
}

#entry div#section17 div.intro #entry_5 {
	background: url(imgs/entry_5.png) no-repeat center center;
	width: 642px;
	height: 22px;
	margin: 0 auto;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
}
@media screen and (max-width: 896px){
	#entry div#section17 div.intro #entry_5 {
		width: 100%;
	}
}

#entry div#section17 div.intro #entry_5:hover {
	background: url(imgs/entry_5_on.png) no-repeat 282px center;
}

div#fullpage p.entry {
	background: url(imgs/01_scroll.png) no-repeat center bottom;
	width: 116px;
	height: 41px;
	position: absolute;
	bottom: 2%;
	left: 50%;
	margin-left: -58px;
	opacity: 0.5;
}
@media screen and (max-width: 896px){
	div#fullpage p.entry {
		background: url(imgs/sp_01_scroll.png) no-repeat center bottom;
		background-size: contain;
		width: 100%;
		height: 75px;
		bottom: 0;
		left: 0;
		margin-left: 0;
		opacity: 1;
	}
}

div#fullpage p.entry:hover {
	opacity: 1;
}

.share-buttons{
	list-style: none;
	position: absolute;
	bottom: 1%;
	right: 1%;
}

.share-buttons li{
	display: inline;
}

/* =========================================================
contact-form
========================================================= */
#entry {
    color: #111;
		margin: 0;
}

h3 {
	margin: -15px 0 70px -50px;
	letter-spacing: 0.1em;
}

.formTable {
	margin: 0 auto;
	text-align: center;
	color: #111;
}

.formTable tr {
	height: 28px;
	margin-bottom: 20px;
}

.formTable th {
	text-align: center;
	padding-right: 20px;
	vertical-align: middle;
}

.formTable th.last {
	padding-top: 5px;
	vertical-align: top;
}

.c_title{
	font-size: .75em;
}

.my_rec {
	/*margin: 10px 50px 100px;*/
	margin: 10px 50px 30px;
	text-align: center;
}

.my_rec1 img {
	margin: 10px 5px 0;
}

@media screen and (max-width: 896px){
	.my_rec1 a{
		display: block;
		width: 100%;
	}
	.my_rec1 a img{
			display: block;
		width: 100%;
	}
}


.my_rec3 {
	margin: 10px 0 20px;
}

.my_rec4  {
	margin-top: 30px;
}

@media screen and (max-width: 896px){
	#fullPage-nav.right{
		display: none;
	}
}


#submit {
background: url(imgs/navi_recnavi.png) no-repeat;
margin:0 auto;
width: 210px;
height: 73px;
text-indent: -9999px;
cursor: pointer;
margin: 20px 0 0 125px;
}

#submit2 {
background: url(imgs/navi_mynavi.png) no-repeat;
margin:0 auto;
width: 210px;
height: 73px;
text-indent: -9999px;
cursor: pointer;
margin: 20px 0 0 125px;
}

#submit:hover {
	opacity: 0.8;
}
.my_rec1{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.modal{display:none;}

.modalBody{
position: fixed;
    z-index: 1000;
    background: rgba(255,255,255,.9);
    width: 80%;
    color: #111;
    border-radius: 10px;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: auto!important;
}

.modalBK{position: fixed; z-index:999; height:100%; width:100%; background:#000; opacity: 0.8; filter: alpha(opacity=90);-moz-opacity:0.90; top:0; left:0; }
.close{cursor: pointer; margin: 0; margin: -70px 0 0 -24px; background: url(imgs/close_button.png) no-repeat; text-indent: -9999px; height:49px; width: 49px;}
.modal{width:690px; color: #eee;}
.modal p{font-size:12px; text-align:center;}
.modal h1{font-weight:bold; font-size: 30px;}
.modalBody{padding: 50px 0 0;}



@media screen and (max-width: 896px){
.modal h1{font-weight:bold; font-size: 20px;}
.modalBody{padding: 50px 0 30px;}

}

.spDisp{
	display: none!important;
}

@media screen and (max-width: 896px){
	.spDisp{
		display: block!important;
		width: 100%;
	}
}
.pcDisp{
	display: block!important;
}
@media screen and (max-width: 896px){
	.pcDisp{
		display: none!important;
	}
}

#section3{
	background: black;
}

.figureImg{
	margin: 0 auto;
	padding: 0;
}

#fullpage .spAnswerBtn{
	width: 100%!important;
	position: absolute;
	bottom: -8px;
}
.spBaseBox_inner{
	width:75%;
	margin: auto;
}


div#fullpage div.intro_left h1#block1{
	margin: 0px 0px 20px!important;
}

 div#fullpage div.intro_left p#block2{
	margin: 20px 0px!important;
}

div#fullpage div.intro_left p#block3{
		margin: 0px 0px 20px!important;
}

div#fullpage div.intro_left p#block4{
	margin: 0px 0px 20px!important;
}

.spBaseBox img{
	max-width: 100%;
}
@media screen and (max-width: 896px){
div#fullpage div#section7 ul{
	width: 100%;
}
div#fullpage div#section7{
	background: black;
}
}


div#fullpage div#section7 .spBaseBox_memberIndex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.spBaseBox_memberIndex li{
	width: 49.5%;
	margin-top: 10px;
}


.sp_omoiBg_title{
	padding-bottom: 30px;
	border-bottom: 1px solid #fff;
}

.sp_omoiBg_text{
	margin-top: 30px;
	color: white;
	font-size: 13px;
	text-align: left;
	line-height: 2.3;
}
.sp_omoiBg_name{
	margin-top: -15px;
	text-align: right;
}

.spBaseBox_title_btmText{
	font-size: 13px;
    text-align: center;
    color: white;
    margin-top: 20px;
    line-height: 1.8;
		letter-spacing: 1px;
		font-weight: bold;
		padding-bottom: 35px;
}


.spBaseBox{
padding: 30px 0px 0px;
}

.spBaseBox_indexLink_firstText{
	margin-top: 35px;
}

.spBaseBox img{
	max-width: 100%;
}

@media screen and (max-width: 896px){
	div#fullpage div  ul {
		width: 100%;
	}
}

.tabs_container figure{
	margin: 0;
	padding: 0;
}
.sp_uwasa_title{
	width: 88%;
	padding: 35px 0px 30px;
	margin: auto;
	border-bottom: 1px solid #646464;
}

.spUwasaBox{
	position: relative;
}

.sp_uwasa_text{
width: 88%;
padding-top:20px;
    margin: 0 auto;
    font-size: 13px;
    color: black;
    text-align: left;
    font-weight: bold;
    line-height: 2.2;
}


.spMemberBox{
	background-position: left center;
	background-repeat: no-repeat;
		background-size: cover;
}
.spMemberBox_01{
	background-image: url(imgs/sp/sp-staff01.png);
}
.spMemberBox_textBox{
	width: 70%;
	margin-left: auto;
}
.spMemberBox_copy{
	margin-top: 40px;
}
/* 
.spFirstMessage{
    height: 100vh;
    background: url(imgs/sp/sp-01_nishizaki.png) no-repeat center center;
    background-size: 100%;
} */

@media screen and (max-width: 896px){
div#fullpage div#section8 div#slide1{
	background: url(imgs/sp/sp-staff01.png) no-repeat center center;
	background-size: 100%;
}
div#fullpage div#section8 div#slide1 div.intro h1#block1{
    width: 60%;
		margin-left: auto!important;
		background-size: 100%;
}
div#fullpage div#section8 div#slide1 div.intro p#block4{
		background: url(imgs/takada_txt4.png) no-repeat center center;
		background-size: 100%;
    width:88%;
    height: 145px;
    margin: auto!important;
}
div#fullpage div#section8 div#slide1 div.intro p#block2{
    width: 80%;
    background-size: contain;
    margin-left: auto!important;

}

.spMemberBox{
	width: 75%;
	margin: auto;
}
.spMemberBox_titleBox{
	width: 60%;
    margin: 0 0 0 auto;
}
.spMemberBox_title {
}
.spMemberBox_text {
}
.spMemberBox_copy {
}
.spMemberBox_detail {
	margin-top: 60px;
}
div#fullpage div #slide1{
	position: relative;
}

.sp_memberBtn{
	position: absolute;
	bottom:-5px;
}
.sp_memberBtn img{
	width: 100%!important;
}.sp_memberBtn a{
	width: 100%!important;
	display: block;
}

div#fullpage div#slide2{
	width: 100%!important;
	background-position: center!important;
}
div#fullpage div#section9 div#slide1{
	background: url(imgs/sp/sp-staff02.png) no-repeat center center;
	background-size: 100%;
}
div#fullpage div#section10 div#slide1{
	background: url(imgs/sp/sp-staff03.png) no-repeat center center;
	background-size: 100%;
}
div#fullpage div#section11 div#slide1{
	background: url(imgs/sp/sp-staff04.png) no-repeat center center;
	background-size: 100%;
}
div#fullpage div#section12 div#slide1{
	background: url(imgs/sp/sp-staff05.png) no-repeat center center;
	background-size: 100%;
}
#fullpage .memberBtn a{
background: none!important;
}

div#fullpage div#section8 div#slide2{
	background-position: center!important;
	padding: 0;
}
.sp_messageBox{
	background: url(imgs/sp-01_nishizaki.png) center center no-repeat;
    background-size: 100%;
    height: 100%;
    display: flex!important;
}


.sp_kimituBox_dl{
	border-top: solid 1px #888888;
padding-top: 50px;
}

.sp_messageBox_inner{
        width: 80%;
    margin: auto;
}
.sp_kimituBox{
	width: 75%;
	margin: auto;
}

.sp_kimituBox .spBaseBox_title_btmText{
	padding: 15px 0px 40px;
}

.sp_ac_textBox {
	display: none;
	    margin-top: -8px;
	border: 2px solid white;
}
.sp_ac_text {
font-size: 12px;
    color: white;
    padding: 18px;
    text-align: left;
}

@keyframes cursor_07_anime {
    0% {
       left: 31%;
    }
    100% {
        left:90%;
    }
}
@keyframes cursor_08_anime {
    0% {
       left: 31%;
    }
    100% {
        left:76%;
    }
}
@keyframes cursor_09_anime {
    0% {
       left: 31%;
    }
    100% {
        left:72%;
    }
}
@keyframes cursor_10_anime {
    0% {
       left: 31%;
    }
    100% {
        left:45%;
    }
}


div#fullpage #cursor_07 {
	position: absolute;
	top: 32%;
	left: 31%;
	animation: cursor_07_anime 2.0s ease-in-out .3s forwards;
}



div#fullpage #cursor_08 {
	position: absolute;
	top: 41%;
	left: 31%;
	animation: cursor_08_anime 2.0s ease-in-out .3s forwards;
}
div#fullpage #cursor_09 {
	position: absolute;
  top: 41%;
	left: 30.8%;
	animation: cursor_09_anime 2.0s ease-in-out .3s forwards;
}
div#fullpage #cursor_10 {
	position: absolute;
	top: 41%;
	left: 31%;
	animation: cursor_10_anime 2.0s ease-in-out .3s forwards;
}


}



.spNav {
    width: 100%;
    position: absolute;
    background: black;
    top: 0;
		z-index: 9999;
		padding: 15px 0px;
		text-align: center;
}

.spNav_logo {
	max-width: 180px;
	margin: auto;
}
.spNav_btn {
}
.spNavBox {
	display: none;
	height: 100vh;
	background: black;
	width: 100%;
}
.spNavBox_list{
    width: 75%;
    margin: 60px auto 0px;
}
.spNavBox_list li {
	padding-top: 35px;
	text-align: left;
}
.spNavBox_list li:first-child{
	padding-top: 0;
}
.spNavBox_list li a{
	font-size: 16px;
	color: white;
	text-align: left;
}




/* sp繝上Φ繝舌�繧ｬ繝ｼ繧｢繧､繧ｳ繝ｳ */

.hamburger-bar,
.hamburger-bar::before,
.hamburger-bar::after {
  background: #fff;
  content: '';
  height: 3px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear, 0.2s -webkit-transform linear;
  width: 100%;
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
  -o-transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear; }

.hamburger-bar {
  margin-top: -0.4rem; }

.hamburger-bar::before {
  top: -0.6rem; }

.hamburger-bar::after {
  top: 0.6rem; }

.hamburger-bar::before,
.hamburger-bar::after {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg); }

.hamburger-active .hamburger-bar {
  background: 0; }

.hamburger-active .hamburger-bar::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg); }

.hamburger-active .hamburger-bar::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg); }

.hamburger-active .hamburger-bar::before,
.hamburger-active .hamburger-bar::after {
  top: 0; }

.hamburger-active .hamburger-bar,
.hamburger-active .hamburger-bar::before,
.hamburger-active .hamburger-bar::after {
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
  -o-transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s, 0.2s -webkit-transform linear 0.2s; }

.hamburger-menu-open {
  transform: translateX(0);
  -webkit-transform: translateX(0);
	-ms-transform: translateX(0); }
	
	.hamburger-button {
    height: 63px;
    top: 0px;
    left: 0px;
    width: 62px;
    position: fixed;
    z-index: 99999999;
}

.hamburger-menu {
    background: 0;
    border: 0;
    height: 0;
    margin: 20px 10px 14px 16px;
    outline: 0;
    padding: 8px 13px 8px 16px;
    position: absolute;
    transition: 0.1s -webkit-transform linear;
    transition: 0.1s transform linear;
    transition: 0.1s transform linear, 0.1s -webkit-transform linear;
    z-index: 99999;
    left: 10px;
    top: 10px;
}

/* */

.spBaseBox_dateList{
	padding-top: 35px;
	border-top: #888888 solid 1px;
}

.spBaseBox_dateList li{
position: relative;
}
.cursor{
	    top: 35%;
	position: absolute;
}


#entry{
	background: #111;
}

.spEntryBox {
	width: 70%;
	height: 100%;
	padding-top: 30px;
	margin: auto;
	    display: block;
}
.spEntryBox_topText {
	width: 130px;
	margin: auto;
}
.spEntryBox_title {
	margin-top: 35px;
}
.spEntryBox_message {
	margin-top: 60px;
}
.spEntryBox_linkList {
	width: 150px;
	margin: 40px auto 0px;
	    padding: 0;
}
.spEntryBox_linkList li{
	width: 140px;
	text-align: center;
}
.spEntryBox_linkList li:nth-child(2){
	margin-top: 30px;
}
.spEntryBox_linkList li:last-child{
	margin-top: 50px;
}

@media screen and (max-width: 896px){
	#entry div#section17 .txt{
		font-size: inherit;
		text-indent: inherit;
	}
}
</pre></body></html>