
/* shoot -----------------------------------------------------*/
.shoot {
}
/* 共通 */
#page-top a {
    background: url("../img/pagetop-w.png") no-repeat center center;
    background-size: 100% auto;
}
.section__inner {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
}
.posi--center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.section__ttl {
    position: absolute;
    z-index: 1;
    top: 38px;
    right: 0;
    width: 14%;
    margin: 0;
    padding: 0;
}
.container .icon {
    z-index: 3;
}
.section__subttl {
    margin: 0 0 40px -75px;
}
.shoot .inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
/* member */
.shoot__member {
    background-color: #000;
}
.shoot__member .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.shoot__member .section__subttl img {
    width: auto;
    height: 19px;
}
/* スタッフリスト //////////////////////////////////////////////////////////////////*/
.staff__list {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 0;
}
.staff__list > li {
	width : 25%;
	margin-top: 3em;
}
.staff__list > li a {
	text-decoration: none;
	position: relative;
	box-sizing: border-box;
	padding: .5em 0 .5em 1.5em;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}
.staff__list > li a:hover {
	/*opacity: .5;*/
}
.staff__list > li:nth-child(1), .staff__list > li:nth-child(2), .staff__list > li:nth-child(3), .staff__list > li:nth-child(4) {
	margin-top: 0;
}
.staff__list > li a::before {
	content: "";
	width: .5em;
	height: 100%;
	background-color: #C50018;
	position: absolute;
	top: 0;
	left: 0;
}
.staff__list__occupation {
	font-size: .9em;
	line-height: 1em;
	text-indent: -9999vw;
}
.staff__list__occupation--DIT {
	background: url("../img/shoot/staff__list__occupation--DIT--white.png") no-repeat center left;
	background-size: auto 88%;
}
.staff__list__occupation--CAMERAMAN {
	background: url("../img/shoot/staff__list__occupation--CAMERAMAN--white.png") no-repeat center left;
	background-size: auto 88%;
}
.staff__list__occupation--CHIEF {
	background: url("../img/shoot/staff__list__occupation--CHIEF--white.png") no-repeat center left;
	background-size: auto 88%;
}
.staff__list__name {
	font-size: 1.4em;
	font-weight: 500;
	padding: .5em 0 .4em;
	color: #fff;
}
.staff__list__en {
	font-size: .8em;
	font-weight: 400;
	letter-spacing: .2em;
    line-height: 1.2em;
	color: #fff;
}
.staff__list__occupation {
	position: relative;
}
.staff__list__name span,
.staff__list__en span {
	position: relative;
}
.staff__list__name span::before,
.staff__list__en span::before {
	content: "";
	width: 0%;
	position: absolute;
	left: -10px;
	background-color: #C50018;
}
.staff__list__occupation::before {
	content: "";
	width: 0%;
	position: absolute;
	height: 104%;
	top: -2%;
	left: -10px;
	background-color: #C50018;
}
.staff__list__en span::before {
	height: 104%;
	top: -2%;
}
.staff__list__name span::before {
	height: 82%;
	top: 10%;
}
.staff__list > li a .staff__list__occupation::before,
.staff__list > li a .staff__list__name span::before,
.staff__list > li a .staff__list__en span::before,
.staff__list > li a .staff__list__occupation::before,
.staff__list > li a .staff__list__name span::before,
.staff__list > li a .staff__list__en span::before {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.staff__list > li a:hover .staff__list__name span::before,
.staff__list > li a:hover .staff__list__en span::before {
	animation: txtline .4s forwards;
}
.staff__list > li a:hover .staff__list__en span::before {
	animation-delay: .1s;
}
@keyframes txtline {
	0% {width: 0%;}
	50% {width: calc(100% + 20px);}
	70% {width: calc(100% + 20px);opacity: 1;}
	100% {width: calc(100% + 20px);opacity: 0;}
	/*50% {width : calc(100% + 20px) ;}
	100% {width: 0%;}*/
}
/* モーダル */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
	display: none;
	z-index: 1000;
	background: rgb(250,250,250); /* Old browsers */
	background: -moz-linear-gradient(top,  rgb(250,250,250) 0%, rgb(242,242,242) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgb(250,250,250) 0%,rgb(242,242,242) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgb(250,250,250) 0%,rgb(242,242,242) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
}
/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* モーダルのコンテンツ */
.modal__content {
	position: absolute;
    width: 100%;
    height: 99.99999%;
    top: 0;
    left: 0;
	text-align: center;
	padding-bottom: 100px;
	overflow-y: scroll;
    overflow-x: hidden;
}
.modal_inner {
    display: flex;
    justify-content: flex-start;
}
/* 閉じるボタン */
.modal__close-btn {
    position: absolute;
    right: 0;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
}
.modal__close-btn:hover {
    opacity: 0.8;
}
/* 閉じるボタンのX */
.lineClose {
    display: inline-block;
    vertical-align: middle;
    color: #313131;
    line-height: 1;
    width: 2rem;
    height: 0.1rem;
    background: currentColor;
    border-radius: 0.1rem;
    position: relative;
    transform: rotate(45deg);
}
.lineClose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
/* 矢印 */
.swiper-button-prev, .swiper-button-next {
	top: 20%;
}
.swiper-button-prev {
	left: 50%;
    right: auto;
    margin-left: -510px;
}
.swiper-button-next {
    right: 50%;
    left: auto;
    margin-right: -510px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
	color: #333;
	font-size: 2em;
}
/*スライダー中身*/
.staffDesc {
	width: 85%;
	max-width: 900px;
	height: 100%;
	padding: 15vh 0 0;
	margin: 0 auto;
}
.slick__list {
	margin: 0;
	padding: 0;
	width: 100%;
}
.staffDesc .flex {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
}
.staffDesc__profimg {
	width: 30%;
}
.staffDesc__occupation {
	width: 100%;
	line-height: 1em;
	font-size: 1em;
	text-indent: -9999vw;
}
.staffDesc__occupation--COMPOSITOR {
	background: url("../img/staff/flame/staff__list__occupation--COMPOSITOR.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--MAMIXER {
	background: url("../img/staff/ma/staff__list__occupation--MAMIXER.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--EDITOR {
	background: url("../img/staff/edit/staff__list__occupation--EDITOR.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--COLORIST {
	background: url("../img/staff/color/staff__list__occupation--COLORIST.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--ENCODER {
	background: url("../img/staff/encode/staff__list__occupation--ENCODER.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--AUTHORINGENGINEER {
	background: url("../img/staff/encode/staff__list__occupation--AUTHORINGENGINEER.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--DESIGNER {
	background: url("../img/staff/design/staff__list__occupation--DESIGNER.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--CHIEF {
	background: url("../img/staff/shoot/staff__list__occupation--CHIEF.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--CAMERAMAN {
	background: url("../img/staff/shoot/staff__list__occupation--CAMERAMAN.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--ASSISTANT {
	background: url("../img/staff/shoot/staff__list__occupation--ASSISTANT.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__occupation--ASSISTANT {
	background: url("../img/staff/shoot/staff__list__occupation--ASSISTANT.png") no-repeat center left;
	background-size: auto 100%;
}
.staffDesc__name,
.staffDesc__en {
	color: #333;
	/*font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;*/
}
.staffDesc__name {
	font-size: 1.8em;
	line-height: 1;
	font-weight: 500;
	margin-top: .7em;
	letter-spacing: .08em;
}
.staffDesc__en {
	font-size: 1em;
	letter-spacing: .25em;
	font-weight: 400;
	line-height: 1em;
    margin-top: 0.7em;
}
.staffDesc__txt {
	width: 63%;
	box-sizing: border-box;
	padding-left: 7%;
	text-align: left;
	color: #333;
}
.staffDesc__message {
	font-size: .9em;
	line-height: 2em;
	margin-top: 2em;
	font-weight: 400;
	color: #333;
}
.staffDesc__img {
	margin-top: 2em;
	margin-bottom: 2em;
}
.back__staffList {
	padding: 0 1.5em 0 1.7em;
	font-size: 1.2em;
	letter-spacing: .2em;
	display: inline-block;
	position: relative;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}
.back__staffList:hover {
	color: #C50018;
}
.back__staffList::before, .back__staffList::after {
	content: "";
	width: .3em;
	height: 80%;
	background-color: #C50018;
	position: absolute;
	top: 12%;
}
.back__staffList::before {
	left: 0;
}
.back__staffList::after {
	right: 0;
}

/* ----------------------------------------------------------------------------------------------------*/
/* 〜1100px -------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------*/
@media (max-width: 1100px) {
    .section__subttl {
        margin-left: -20px;
    }
}

/* ----------------------------------------------------------------------------------------------------*/
/* 〜1000px -------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------*/
@media (max-width: 1000px) {
	.shoot {
	}
    
    /* member */
    .shoot__works .section__subttl img {
        height: 1.9vw;
    }
	/*スタッフ一覧*/
	.staff__list > li a {
		padding-left: 1.2em;
	}
	.staff__list__name {
		font-size: 2vw;
	}
	.staff__list__en {
		font-size: 1.15vw;
	}
	.staff__list__occupation {
		line-height: 1.4vw;
		background-size: auto 80%;
	}
    
}

/* ----------------------------------------------------------------------------------------------------*/
/* breakpoint SP -------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    .section.shoot .posi--center {
        position: relative;
        top: auto;
        left: auto;
        transform: translate(0, 0);
    }
    .section.shoot {
        padding-top: 90px;
    }
    .section {
        height: auto;
    }
    .section__inner {
        min-height: auto;
    }
    .section__ttl {
        width: 28%;
        top: 0;
    }
    .section__subttl {
        margin: 0 0 10vw 0;
    }
    
    /* member */
    .shoot__member {
        padding: 14vw 0 24vw;
    }
    .shoot__member .inner {
        position: relative;
        top: auto;
        left: auto;
        transform: translate(0, 0);
    }
    .shoot__member .section__subttl img {
        width: 33vw;
        height: auto;
    }
	/* スタッフリスト //////////////////////////////////////////////////////////////////*/
	.staff__section {
		padding-top: 100px;
	}
	.staff__section.staff__flame {
		padding-top: 80px;
	}
	.staff__list {
		width: 100%;
		padding: 0;
	}
	.staff__list > li {
		width: 50%;
		padding-left: 0;
	}
	.staff__list > li a {
		padding: .2em 1em .2em 1.2em;
	}
	.staff__list > li a:hover {
		opacity: 1;
	}
	.staff__list > li::before {
		width: .4em;
	}
	.staff__list > li:nth-of-type(1), .staff__list > li:nth-of-type(2) {
		margin-top: 1em;
	}
	.staff__list > li:nth-of-type(3), .staff__list > li:nth-of-type(4) {
		margin-top: 3em;
	}
	.staff__list__occupation {
		line-height: 2.7vw;
	}
	.staff__list__name {
		font-size: 4.5vw;
		padding: .3em 0;
	}
	.staff__list__en {
		font-size: 2.3vw;
	}
	
	/* モーダル内 */
	.staffDesc {
		width: 100%;
		max-width: 100%;
		padding: 7em 0 0;
	}
	.staffDesc .flex {
		width: 85%;
		margin: 0 auto;
	}
	.staffDesc__occupation {
		font-size: 2.5vw;
	}
	.staffDesc__name {
		font-size: 6vw;
		letter-spacing: .01em;
	}
	.staffDesc__en {
		font-size: 3vw;
		letter-spacing: .2em;
		margin-top: .5em;
	}
	.staffDesc__message {
		width: 85%;
		margin: 2em auto 0;
		text-align: left;
		font-weight: 400;
	}
	.staffDesc__img {
		/*margin-bottom: .5em;*/
	}
	.back__staffList {
		font-size: 1em;
		position: fixed;
		width: 60%;
		bottom: 20px;
		left: 20%;
		z-index: 100;
	}
	
	/* モーダルベース */
	.modal {
		overflow: hidden;
	}
	.modal__content {
		padding-bottom: 0;
		height: 80%;
		/*overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;*/
	}

    #page-topSP a {
		background: url("../img/pagetop-w.png") no-repeat center center;
		background-size: 100% auto;
    }
    
}

