@charset "utf-8";
/* ---------------------------------------
** 
** home
** 
--------------------------------------- */

/*  */
.-en {
  font-family: 'Oswald', sans-serif;
}

/*  */
.page-home {
  background-color: #000;
}

/* wrap */
#wrap {
  opacity: 0;
}
/* main */
.main {
  display: block;
  width: 100%;
}

/* ---------------------------------------
** header, mv
--------------------------------------- */
.header{
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
}

.mv-logo{
  position: absolute;
  width: 71.52%;
  top: 50%;
  right: 50%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .mv-logo{
    width: 96%;
    top: 28.29%;
  }
}

.mv-date{
  position: absolute;
  width: 48.24%;
  bottom: 23.61%;
  right: 50%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .mv-date{
    width: 92%;
    bottom: 33.9%;
  }
}

.mv-billing{
  position: absolute;
  width: 59%;
  bottom: 9.8%;
  right: 50%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .mv-billing{
    width: 92%;
    bottom: 25.37%;
  }
}

.mv-main-copy{
  position: absolute;
  width: 71.74%;
  bottom: 3%;
  right: 50%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .mv-main-copy{
    width: 85.33%;
    bottom: 2.44%;
  }
}

.mv-copy-L{
  position: absolute;
  width: 1.76%;
  top: 4.13%;
  left: 35.14%;
}
@media screen and (max-width: 768px) {
  .mv-copy-L{
    width: 4%;
    top: 2.76%;
    left: 78.13%;
  }
}

.mv-copy-R{
  position: absolute;
  width: 1.76%;
  top: 4.13%;
  right: 39.75%;
}
@media screen and (max-width: 768px) {
  .mv-copy-R{
    width: 4%;
    top: 40%;
    right: 82.93%;
  }
}

.sns-list{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  display: flex;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .sns-list{
    top: 2.67%;
    right: 4%;
    width: 8%;
  }
}

.sns-item{
  width: 100%;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
}

.sns-item:last-of-type{
  margin-right: 0;
}

.sns-item-link{
}
@media screen and (max-width: 768px) {
}

.sns-item-link img {
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

@media screen and (min-width: 769px) {
  .sns-item-link:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .sns-item-link:active img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}


/* ---------------------------------------
** nav
--------------------------------------- */
.nav{
  width: 100%;
  padding: 32px 0 0 0;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .nav{
    width: 100%;
    height: 100vh;
    overflow: scroll;
    padding: 25% 0 0 0;
    background-color: #000;
    position: fixed;
    top: 0;
    left: -100%;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
    z-index: 8800;
  }
  .nav.-open {
    left: 0;
  }
}

.nav-inner {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .nav-inner {
    width: 90.67%;
    /* width: 100%; */
  }
}

.nav-list{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -16px;
}
@media screen and (max-width: 768px) {
}

.nav-item{
  width: calc(100% / 4);
  padding: 0 16px;
  margin: 0 0 32px 0;
}
@media screen and (max-width: 768px) {
  .nav-item{
    width: calc(100% / 2);
    padding: 0 1.87%;
    margin: 0 0 3.74% 0;
  }
}

.nav-item-link{
  display: block;
  background-color: #E50012;
  border: 2px solid #E50012;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .nav-item-link{
    font-size: 18px;
    padding: 10px 8px;
  }
}

@media screen and (min-width: 769px) {
  .nav-item-link:hover {
    background-color: #000;
  }
}
@media screen and (max-width: 768px) {
  .nav-item-link:active {
    background-color: #000;
  }
}

/* ---------------------------------------
** drawr
--------------------------------------- */
/* drawr-bg */
.drawr-bg {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawr-bg {
    display: block;
    width: 45px;
    height: 45px;
    background-color: #E50012;
    border: 2px solid #000;
    position: fixed;
    top: 10px;
    left: 2.1%;
    z-index: 9000;
  }
}

/* drawr-handle */
.drawr-handle {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawr-handle {
    display: block;
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 16px;
    top: 25px;
    left: 20px;
    z-index: 9900;
  }
  .drawr-handle,
  .drawr-handle span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .drawr-handle span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    font-size: 0;
  }
  .drawr-handle span:nth-of-type(1) {
    top: 0;
  }
  .drawr-handle span:nth-of-type(2) {
    top: 7px;
    /* width: 70%; */
  }
  .drawr-handle span:nth-of-type(3) {
    bottom: 0;
  }
  .drawr-handle.active {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
  .drawr-handle.active span {
    background-color: #fff;
    width: 100%;
    left: -1px;
  }
  .drawr-handle.active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
    -webkit-transform: translateY(7px) rotate(-45deg);
    -moz-transform: translateY(7px) rotate(-45deg);
    -ms-transform: translateY(7px) rotate(-45deg);
    -o-transform: translateY(7px) rotate(-45deg);
  }
  .drawr-handle.active span:nth-of-type(2) {
    transform: translateY(0px) rotate(45deg);
    -webkit-transform: translateY(0px) rotate(45deg);
    -moz-transform: translateY(0px) rotate(45deg);
    -ms-transform: translateY(0px) rotate(45deg);
    -o-transform: translateY(0px) rotate(45deg);
  }
  .drawr-handle.active span:nth-of-type(3) {
    opacity: 0;
  }
}

/* ---------------------------------------
** prologue
--------------------------------------- */
.prologue{
  background-color: #000;
  background-image: url(../img/prologue-bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .prologue{
    padding: 7.47% 0;
  }
}

.prologue-inner{
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .prologue-inner{
    width: 90.67%;
    margin: 0 auto;
  }
}

.prologue-copy-main{
  width: 100%;
  margin: 0 0 35px 0;
}
@media screen and (max-width: 768px) {
  .prologue-copy-main {
    width: 75.65%;
    margin: 0 auto 35px auto;
  }
}

.prologue-copy-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .prologue-copy-list {
    align-items: flex-start;
  }
}

.prologue-copy-item{
}
@media screen and (max-width: 768px) {
}

.-p_1 {
  width: 387px;
  margin-top: 0;
  margin-left: calc((100% - 387px) / 2);
  margin-right: calc((100% - 387px) / 2);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .-p_1 {
    width: 43.77%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.-p_2 {
  width: 460px;
}
@media screen and (max-width: 768px) {
  .-p_2 {
    width: 52.17%;
  }
}

.-p_3 {
  width: 547px;
}
@media screen and (max-width: 768px) {
  .-p_3 {
    width: 62.32%;
    margin: 4.8% auto 0 auto;
  }
}

/* ---------------------------------------
** intro
--------------------------------------- */
.intro{
}
@media screen and (max-width: 768px) {
}

.intro-main{
  padding: 60px 0 111px 0;
  background-color: #000;
  background-image: url(../img/intro-bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .intro-main{
    padding: 21.33% 0;
    background-image: url(../img/intro-bg-main_sp.jpg);
    background-position: center top;
    background-size: 100% auto;
  }
}

.intro-inner{
  width: 600px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 768px) {
  .intro-inner{
    width: 90.67%;
    margin: 0 auto 0 auto;
  }
}

.intro-ttl{
  width: 400px;
  margin: 0 auto 55px auto;
}
@media screen and (max-width: 768px) {
  .intro-ttl{
    width: 52.17%;
    margin: 0 auto 24% auto;
  }
}

.intro-txt{
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .intro-txt {
    text-shadow: 0 0 3px rgba(0, 0, 0, 1);
  }
}

.intro-txt-item{
}
@media screen and (max-width: 768px) {
}

.intro-pics{
  display: flex;
}
@media screen and (max-width: 768px) {
  .intro-pics{
    flex-wrap: wrap;
  }
}

.intro-pic-item{
  width: 25%;
}
@media screen and (max-width: 768px) {
  .intro-pic-item{
    width: 50%;
  }
}

/*  */
.slick-dots {
	position: absolute;
	bottom: -80px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	margin: 0 3px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	font-size: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
	line-height: 0;
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
	cursor: pointer;
	color: #fff !important;
	border: 0;
	outline: none;
  background-image: url(../img/ic-dots-intro-default.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
	position: relative;
}
.slick-dots li button:before {
	line-height: 0;
	display: block;
	width: 50px;
	height: 50px;
	padding: 5px;
	cursor: pointer;
	border: 0;
	outline: none;
	content: none;
}
.slick-dots li.slick-active button,
.slick-dots li.slick-active button:before {
	opacity: 1.0;
	background-image: url(../img/ic-dots-intro-active.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
/*  */

/* ---------------------------------------
** story
--------------------------------------- */
.story{
  background-color: #fff;
}
@media screen and (max-width: 768px) {
}

.story-main{
  padding: 60px 0;
  background-image: url(../img/story-bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .story-main{
    background-image: url(../img/story-bg-main_sp.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 19.42% 0 7.83% 0;
  }
}

.story-inner{
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .story-inner{
    width: 90.67%;
    margin: 0 auto;
  }
}

.story-box {
  width: 600px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .story-box {
    width: 100%;
    margin: 0 auto;
  }
}

.story-ttl{
  width: 177px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 768px) {
  .story-ttl{
    width: 23.19%;
    margin: 0 11.59% 16.52% auto;
  }
}

.story-txt{
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px 10px 20px 20px;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .story-txt{
    padding: 20px 10px 20px 20px;
    height: 340px;
  }
}

.story-txt-item{
  font-size: 12px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
}

.story-pics{
  display: flex;
}
@media screen and (max-width: 768px) {
  .story-pics {
    flex-wrap: wrap;
  }
}

.story-pic-item{
  width: 25%;
}
@media screen and (max-width: 768px) {
  .story-pic-item{
    width: 50%;
  }
}

/*  */
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    position: relative;
    width: 8px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    text-align: center;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    background-color: #6b6b6b;
}
.mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(255, 255, 255, 0.0);
}
/*  */

/* ---------------------------------------
** prono
--------------------------------------- */
.prono{
  padding: 60px 0 120px 0;
  background-color: #000;
  background-image: url(../img/prono-bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .prono{
    padding: 8% 0 25.87% 0;
    background-image: url(../img/prono-bg-main_sp.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.prono-inner{
  width: 710px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .prono-inner{
    width: 90.67%;
  }
}

.prono-ttl{
  width: 517px;
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 768px) {
  .prono-ttl{
    width: 66.67%;
    margin: 0 auto 8% auto;
  }
}

.prono-list{
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
}

/* .prono-item{
  width: 50%;
  padding: 0 15px;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
} */

.prono-item-link{
  display: flex;
  align-items: center;
  width: calc(50% - 30px);
  margin: 0 15px 30px 15px;
  padding: 45px 25px;
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .prono-item-link{
  align-items: center;
  width: 100%;
  margin: 0 0 2.67% 0;
  padding: 25px;
}
}

@media screen and (min-width: 769px) {
  .prono-item-link:hover {
    background-color: #E50012;
  }
}
@media screen and (max-width: 768px) {
  .prono-item-link:active {
    background-color: #E50012;
  }
}


.prono-item-link::after {
  content: '';
  background-image: url(../img/ic-click-prono.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .prono-item-link::after {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 769px) {
  .prono-item-link:hover::after {
    background-size: 125% 125%;
  }
}
@media screen and (max-width: 768px) {
  .prono-item-link:active::after {
    background-size: 125% 125%;
  }
}

.prono-item-tx{
}
@media screen and (max-width: 768px) {
  .prono-item-tx{
    width: 69.57%;
    margin: 0 auto;
  }
}

/* ---------------------------------------
** cast
--------------------------------------- */
.cast{
  padding: 50px 0 130px 0;
  background-color: #DC000C;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cast{
    padding: 1.33% 0 5.33% 0;
  }
}

.cast::before {
  content: '';
  width: 100%;
  height: 66px;
  background-image: url(../img/cast-obj.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -64px;
}
@media screen and (max-width: 768px) {
  .cast::before {
    height: 17.6%;
    background-position: center bottom;
    background-size: auto 66px;
    top: -17%;
  }
}

.cast-inner{
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cast-inner{
    width: 90.67%;
  }
}

.cast-ttl{
  width: 143px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 768px) {
  .cast-ttl{
    width: 18.55%;
    margin: 0 auto 30px auto;
  }
}

.cast-list{
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cast-list {
    flex-wrap: wrap;
  }
}

.cast-item{
  width: 300px;
  margin: 0 25px;
  position: relative;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .cast-item{
    width: 100%;
    margin: 0 0 5.33% 0;
  }
  .cast-item:last-of-type{
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .cast-item:hover {
    -webkit-filter:brightness(1.5);
    -moz-filter:brightness(1.5);
    -ms-filter:brightness(1.5);
    filter:brightness(1.5);
  }
}
@media screen and (max-width: 768px) {
  .cast-item:hover {
    -webkit-filter:brightness(1.5);
    -moz-filter:brightness(1.5);
    -ms-filter:brightness(1.5);
    filter:brightness(1.5);
  }
}

.cast-item:nth-child(2) {
  top: 50px;
}
@media screen and (max-width: 768px) {
  .cast-item:nth-child(2) {
    top: inherit;
  }
}

.cast-item-name{
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .cast-item-name{
    position: absolute;
    width: 43.48%;
    height: 100%;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .cast-item:nth-child(2) .cast-item-name{
    right: inherit;
    bottom: 0;
    left: 0;
  }
}

.cast-name-img {
  display: block;
  width: 190px;
  margin: 0 auto 0 0;
  padding: 25px 20px;
}
@media screen and (max-width: 768px) {
  .cast-name-img {
    display: block;
    width: 81.33%;
    padding: 0px;
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
}
}

.cast-item-name::after {
  content: '';
  background-image: url(../img/ic-click-cast.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .cast-item-name::after {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 769px) {
  .cast-item:hover .cast-item-name::after {
    background-size: 125% 125%;
  }
}
@media screen and (max-width: 768px) {
  .cast-item:active .cast-item-name::after {
    background-size: 125% 125%;
  }
}

/* ---------------------------------------
** blank
--------------------------------------- */
.blank {
  position: relative;
  padding-top: 44%;
}
@media screen and (max-width: 768px) {
  .blank {
    position: relative;
    padding-top: 81.33%;
  }
}

.blank::before {
  content: '';
  width: 100%;
  height: 100vh;
  background-color: #000;
  background-image: url(../img/pic-blank.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .blank::before {
    background-image: url(../img/pic-blank.jpg);
    background-position: 58% center;
  }
}

/* ---------------------------------------
** staff
--------------------------------------- */
.staff{
}
@media screen and (max-width: 768px) {
}

.staff-main{
  padding: 70px 0 127px 0;
  background-color: #000;
  background-image: url(../img/staff-bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .staff-main{
    padding: 8% 0;
    background-color: #000;
    background-image: url(../img/staff-bg-main_sp.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.staff-inner{
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff-inner{
    width: 90.67%;
  }
}

.staff-ttl{
  width: 174px;
  margin: 0 auto 90px auto;
}
@media screen and (max-width: 768px) {
  .staff-ttl{
    width: 23.19%;
    margin: 0 auto 10.67% auto;
  }
}

.staff-director{
  width: 355px;
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 768px) {
  .staff-director{
    width: 57.97%;
    margin: 0 auto 8.27% auto;
  }
}

.staff-item{
  display: block;
  width: calc(25% - 46px);
  margin: 0 23px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .staff-item{
    display: block;
    width: 45%;
    margin:  0 auto 5.6% auto;
    position: relative;
  }
}

.staff-director .staff-item{
  display: block;
  width: 100%;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 768px) {
}

.staff-item::before,
.staff-item::after {
  content: '';
  width: 3.38%;
  height: 100%;
  position: absolute;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .staff-item::before,
  .staff-item::after {
    width: 5%;
  }
}


.staff-item::before {
  background-image: url(../img/staff-obj-L.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
}
.staff-item::after {
  background-image: url(../img/staff-obj-R.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  right: 0;
}

@media screen and (min-width: 769px) {
  .staff-item:hover::before {
    left: 10px;
  }
  .staff-item:hover::after {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .staff-item:active::before {
    left: 10px;
  }
  .staff-item:active::after {
    right: 10px;
  }
}


.staff-name{
  display: block;
  width: 189px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff-name{
    display: block;
    width: 78.62%;
    margin: 0 auto;
  }
}

.staff-director .staff-name {
  display: block;
  width: 190px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff-director .staff-name {
    width: 53%;
  }
}

.staff-list{
  display: flex;
}
@media screen and (max-width: 768px) {
  .staff-list{
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.staff-pics{
  width: 100%;
}
@media screen and (max-width: 768px) {
}

/* ---------------------------------------
** outro
--------------------------------------- */
.outro{
  background-color: #000;
  position: relative;
}
.outro-bg{
  width: 100%;
}
.outro-tx{
  width: 17.06%;
  position: absolute;
  top: 3%;
  right: 50%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
.outro-billing{
  width: 1100px;
  position: absolute;
  bottom: 3.26%;
  right: 50%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .outro-billing{
    width: 90.67%;
  }
}


/* ---------------------------------------
banner
--------------------------------------- */
.bn-postcard{
  width: 12.52%;
  position: absolute;
  right: 1.46%;
  top: 40%;
}
@media screen and (max-width: 768px) {
  .bn-postcard{
    width: 42.2%;
    top: 75.3%;
    right: 10%;
    /* transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%); */
  }
}

.bn-hanken{
  width: 10.25%;
  position: absolute;
  left: 1.46%;
  top: 40%;
}
@media screen and (max-width: 768px) {
  .bn-hanken{
    width: 30.67%;
    top: 75.37%;
    left: 13%;
    /* transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%); */
  }
}

.bn-link img{
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .bn-link:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .bn-link:active img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}


/* ---------------------------------------
** cp-present
--------------------------------------- */
.cp-present {
  width: 100%;
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .cp-present {
    width: 100%;
    margin-top: 55px;
  }
}


/* ---------------------------------------
.banner{
** 
--------------------------------------- */
.banner{
  background-color: #000;
  padding-top: 1.1%;
}
@media screen and (max-width: 768px) {
}

.banner-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .banner-list{
    width: 92%;
  }
}

.banner-item{
  display: block;
  width: 22.73%;
  padding: 0 0.91%;
  margin-bottom: 0.72%;
}
@media screen and (max-width: 768px) {
  .banner-item{
    display: block;
    width: 63.77%;
  }
}

.banner-item-link{
  display: block;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
}

.banner-item-link img {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .banner-item-link:hover img {
    filter: brightness(1.3);
    -webkit-filter: brightness(1.3);
  }
}
@media screen and (max-width: 768px) {
  .banner-item-link:active img {
    filter: brightness(1.3);
    -webkit-filter: brightness(1.3);
  }
}

/* ---------------------------------------
** 
--------------------------------------- */
@media screen and (max-width: 768px) {
}

