@charset "utf-8";
* {
	box-sizing: border-box;
}


html {
	margin: 0;
	scroll-behavior: smooth;
}

body {
    font-family: YuGothic,'Yu Gothic','Avenir',sans-serif;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 5px;
	background-color: #000;
	color: #fff;
}

p {
	font-size: 15px;
}

.top-img h1 {
    margin: 0 auto;
	text-align: center;
}

.top-img {
    display: block;
	width: 50%;
}

.top-img img {
    display: inline-block;
	width: 100%;
	max-width: 400px;
}

header {
	z-index: 500;
	padding: 30px 4% 10px;
	/* position: fixed; */
	top: 0;
	width: 100%;
	background-color: transparent;
	display: flex;
    align-items: center;
	margin-top: 15px;
	background-color: #080403;
	margin: 0;
	flex-wrap: wrap;
}
/* .head-parts {
	width: 100%;
	background-color: #fff;
	text-align: center;
}
.head-parts img {
	width: 100%;
	max-width: 300px;
} */
.sp-nav {
	display: none; 
}

.pc-nav {
	text-align: center;
	margin: auto;
	width: 45%;
}

.pc-nav ul {
	display: block !important;
	margin: 0;
}

a {	
	text-decoration: none;
	color: #fff;
}
nav {
	margin: 0 0 0 auto;
}
ul {
	list-style: none;
	margin: 0;
	display: flex;
}

.pc-nav li {
	margin: 30px;
}

li {
	margin: 0 0 0 15px;
	font-size: 15px;
}

h2 {
	margin: 0;
	font-size: 25px;
	font-weight: normal;
	color: #fff;
	margin: auto;
}

/* .top-slide {
	display: block;
	height: 75vw;
	width: 100vw;
} */

/* PIC区切りh3 */
h3 {
	font-size: 20px;
	text-align: left;
	margin: auto 10%;
	border-bottom: solid 2px #fff;
}

h4 {
	font-size: 18px;
}

.main-visual h2 {
    font-size: 30px;
}

/* メニューホバー線 */
.btn {
    padding: 15px 100px;
    margin:10px 4px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    text-decoration: none;
    display:inline-block;
    
}

.btn::before {
	content: '';
	position: absolute;
	bottom: 50%;
	left: 0px;
	width: 100%;
	height: 1px;
	background: #fff;
	display: block;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
	transition: transform 0.4s cubic-bezier(1, 0, 0, 1)
  }
  
.btn:hover::before {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1)
}

/* TOP画像ランダム */
.slide {
	display: block;
	z-index: 1;
	position   : relative;
					  /* 画像のサイズに合わせて変更ください */
	width: 90vw;
	height: auto;
	margin: auto;
	
} 
   
   /*=== 画像の設定 ======================================= */
.slide img {
	display    : block;
	position   : absolute;
						/* 画像のサイズを表示エリアに合せる */
	width      : 90vw;
	height     : inherit;
	opacity    : 0;
	animation  : slideAnime 8s ease infinite;
	margin-top: 15vh;
} 


   
   /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 4s }
   
   /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
	 0% { opacity: 0 }
	 8% { opacity: 1 }
	42% { opacity: 1 }
	50% { opacity: 0 }
   100% { opacity: 0 }
}


/* トップページコンテンツ */
.contents {
	display: block;
	position: relative;
}
.PHOTO-top {
	margin-top: 40px;
	text-align: center;
}


h2 {
	margin: 15px;
	position: relative;
	display: inline-block;
	padding: 0 45px;
}


h2:before, h2:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 44px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}
h2:before {
	left:0;
  }
h2:after {
	right: 0;
}


.PHOTO-top figure {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: #000;
	display: inline-block;
}

.MOVIE-top {
	text-align: center;
}


.MOVIE-top figure {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: #000;
	display: inline-block;
}

.contents_2 {
	padding: 30px 0;
    overflow: hidden;
	text-align: center;
}

.biography {
	width: 1000px;
    margin: 0 auto;
}

.bio-contents {
	overflow: hidden;
	padding: 0 0 50px;
}

.bio-contents1 {
	width: 450px;
	float: left;
}

.bio-contents1 img {
	width:400px;
}

.bio-contents2 {
	width: 450px;
	float: right;
}

.picture {
	color: #fff;
	display: inline;
}

.picture img {
	width: 30vh;
	margin: 5vh;
}

.picture figure:after {
    position: absolute;
}
.picture figcaption {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1em;
    font-size: 20px;
    letter-spacing: 5px;
    opacity: 0;
    transition: all 0.2s ease-out;
	text-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.picture figure:hover figcaption {
    letter-spacing: 1px!important;
    opacity: 1!important;
}
.picture figure:hover img {
    opacity: .4!important;
}

/* フッター */
footer {
	background-color: #1a1a1a;
	background-size: cover;
}

.foot {
	text-align: center;
}

.footer-contents {
	display: inline-block;
	margin-top: 20px;
}

.footer-logo img{
	width: 15vh;
	justify-content: center;
}


/* フッター：SNSボタン */
.footer-SNS ul {
	text-align: center;
	padding: 0;
	margin: 10px auto;
	justify-content: center;
}

.footer-SNS li {
	background-color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	position: relative;
	margin: 0 30px;
}

.footer-SNS img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
}

.footer-SNS img:hover {
	opacity: 0.5;
}

.footer-menu a:hover {
	opacity: .5;
}
.footer-menu li {
	display: inline;
	margin: 0;
}

.foot p {
	font-size: 12px;
}

.bio-contents {
	margin-top: 50px;
}

.bio-contents2 h3 {
	margin-bottom: 50px;
}

/* レスポンシブ */
@media (max-width: 420px) {
	html {
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 860px) {
	.sp-nav {
		display: none; 
	}
	.pc-nav ul{
		display: block;
		padding: 0;
	}
	.pc-nav a {
		padding-top: 0;
		padding-bottom: 0;
	}
	.top-img {
		width: 100%;
	}
	.top-img img {
		max-width: 280px;
	}
}
@media (min-width: 1135px) {
	.pc-nav ul{
		display: block;
		padding: 0;
	}
	.pc-nav a {
		padding-top: 0;
		padding-bottom: 0;
	}
}
@media (max-width: 420px) {
	h2 {
		line-height: 1.6;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.biography {
		width: 100%;
	}
	.bio-contents1 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		float: none;
	}
	.bio-contents2 {
		width: auto;
		float: none;
		margin: 10px 3vw 10px;
	}
	.bio-contents1 img {
		width: 85vw;
		margin: 0 auto;
	}
	/*ハンバーガーメニュー*/
	.pc-nav {
		display: none;
	}
	.sp-nav {
		z-index: 10;
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: block;
		width: 100%;
		background: rgba(0, 0, 0, .8);
		opacity: 0;
		transform: translateY(-100%);
		transition: all .2s ease-in-out;
	}
	#hamburger {
		position: absolute;
		display: block;
		width: 30px;
		height: 25px;
		margin: 0 0 0 auto;
		top: 3%;
	}
	#hamburger span {
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transform: translateY(-50%);
	}
	#hamburger::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
	}
	#hamburger::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 70%;
		height: 2px;
		background-color: #fff;
	}
	/*スマホメニュー*/
	.sp-nav ul {
		position: relative;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	.sp-nav li {
		margin: 0;
		padding: 0;
	}
	.sp-nav li span {
		font-size: 15px;
		color: #fff;
	}
	.sp-nav li a, .sp-nav li span {
		display: block;
		padding: 20px 0;
	}
	/*-閉じるアイコンー*/
	.sp-nav .close {
		position: relative;
		padding-left: 20px;
	}
	.sp-nav .close::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate( 45deg );
	}
	.sp-nav .close::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate( -45deg );
	}
	.toggle {
		transform: translateY( 0 );
		opacity: 1;
	}
}



/* トップに戻る */
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #fff;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}


.picture img {
	/* opacity: 0; */
	-webkit-transition: opacity .5s;
	transition: opacity .5s;
}

.effect-fade {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 0.5s;
}

.effect-fade.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}