/*body*/

html, body {
  height: 100%;
  background-color: #000;
  
}

* {
	margin: 0;
	padding: 0;
}



body {
	position: relative;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	letter-spacing: 0.5px;
}

h1, h2, h3, h4 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
  font-family: ten-mincho, serif;
}
h2 {
  font-family: ten-mincho, serif;
  font-size: 18px;
}

p {
	line-height: 2;
  font-family: ten-mincho, serif;
  font-size: 15px;
}

img {
	width: 100%;
	height: auto;
}

a,
p,
ul,
li {
	margin: 0;
	padding: 0;
	color: #fff;
  font-family: ten-mincho, serif;
  font-size: 15px;
}
label {
  font-family: ten-mincho, serif;
}

li {
	list-style-type: none;
}
a:hover {
  color: #cccccc;
}

/*navpc*/
.header {
  position: fixed;
  width: 100%;
  background-color:rgba(255,255,255,0.7);
  height: 68px;
  z-index: 100;
}

.hidden {
  background: none;
  transition: all 0.5s ease;
}

.header .gloval-nav-pc ul  {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  float: right;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .gloval-nav-pc ul li {
  padding: 10px 20px;
}

.header .gloval-nav-pc ul li a {
  text-decoration: none;
	color:#333;
}

.lineimg {
  width: 140px;
}


/*nav smp*/
#nav-toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 23px;
}

.open #nav-toggle span {
  background: #707070;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  background: rgba(255,255,255,0.9);;
  color: #707070;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#gloval-nav a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 15px 0;
  transition: color 0.6s ease;
  font-family: ten-mincho, serif;

}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: 0.6s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: 0.75s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: 0.9s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
/*navここまで*/

/*スクロール指示 アニメーション設定*/

.arrowWrap {
   position: absolute;
   right: 50%;
   bottom: 20px;
}
.arrow {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
  animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
}

.arrow span {
  position: relative;
  display: block;
  left: 50%;
}

.arrow span:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
}

@keyframes arrow {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    opacity: 0.5;
    -webkit-transform: translate3d(-50%, -8px, 0);
    transform: translate3d(-50%, -8px, 0);
  }
}

.line_contact {
  max-width: 215px;
  margin:25px auto;
}


/* .arrowWrap-c {
   right: 50%;
   bottom: -50px;
   height: 150px;
}

.arrow-c {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
  animation: arrow-c 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
}

.arrow-c span {
  position: relative;
  display: block;
  left: 50%;
  bottom: -75px;
}

.arrow-c span:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
}

@keyframes arrow-c {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    opacity: 0.5;
    -webkit-transform: translate3d(-50%, -8px, 0);
    transform: translate3d(-50%, -8px, 0);
  }
} */


/*スクロール指示ここまで*/

/* lang */
.lang ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
  height: 30px;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 50px;
  z-index: 999;
}
.lang li span {
    color: #999;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 30px;
    padding: 0 2px;
    opacity: 0.8;
    text-decoration: none;
}
.lang li a {
	  text-decoration: none;
    font-family: ten-mincho, serif;
}
.lang .active {
    color: #333;
    opacity: 1;
}


/* langここまで */



section#news ,
section#profile ,
section#works ,
section#movie ,
section#gallery ,
section#contact{
	margin-top: 80px;
}

.toplogo {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.toplogo h1 img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
}

.forline {
	display: none;
}

.inner {
	max-width: 990px;
	margin:0 auto;
}
.contens {
	margin-left:150px;
}

h2.title-other {
	text-align: center;
}

p.name {
	font-size: 20px;
	letter-spacing: 0.1em;
  font-weight: bold;
}


.his-discription {
	margin-top: 20px;
}

.video_c img {
  max-width: 420px;
}


/* .work-detail {
	margin-bottom: 25px;
}

p.work-title {
	font-size: 18px;
    padding: 0px 3px 0px 3px !important;
    background-color: #707070;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    width: auto;
    margin-bottom: 12px;
    min-width: 70px;
    text-align: center;
    line-height: unset;
} */


.photo ul {
	display: inline-block;
	width: 100%;
}
.photo ul li {
	display: inline-block;
	width: 32%;
  vertical-align: top;
}

.scrollmove::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: #707070;
    margin: 15px auto 0;
    -webkit-animation: scrollmoveonce 2s cubic-bezier(.04,.435,.315,.9);
    animation: scrollmoveonce 2s cubic-bezier(.04,.435,.315,.9);
}
.icon ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 260px;
    margin: 0 auto 80px;
    align-items: center;
}


p.footer {
	text-align: center;
	font-size: 11px;
}

img.lineapp {
  width: 60px;
  height: 60px;
}
  .nav-pc {
    display: block;
  }

.nav-smp {
  display: none;
}

.iconimg {
	width: 60px;
}
.icon {
	margin-top: 60px;
}

.contens_f {
  max-width: 300px;
  margin: 0 auto;
}
.snsflex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
  padding:35px 0;
}
.snsflex img{
  width: 30px; 
}


footer {
  background-color: #4545;
  margin-top:35px;
}

@media screen and (max-width: 1024px){
 .inner {
    max-width: 990px;
    margin: 0 40px;
   }
  .header {
    display: none;
  }
  .nav-smp {
  display: block;
 }

 .forline {
 	display: block;
	width: 140px;
  position: absolute;
  bottom: 0;
  right: 2%;
 }
 .forline img {
	 box-shadow: 2px 2px 4px gray;
 }

 #news ul li {
  padding-bottom: 10px;
 }

}
@media screen and (max-width: 768px){
.contens {
	margin-left:0;
}
h2.title {
	margin-bottom: 20px;
}
section#news ,
section#profile ,
section#works ,
section#movie ,
section#gallery ,
section#contact{
	margin-top: 40px;
}
.icon {
	margin-top: 40px;
}
}

@media screen and (max-width: 480px){
 .inner {
   margin: 0 20px;
   }
   .photo ul li {
	display: inline-block;
	width: 49%;
}
p,li,a {
	font-size: 12px;
}
nav li {
	font-size: 15px;
}
.icon ul {
    width: 200px;
}
.lang ul {
  left: 30px;
}
}/*
.wrap {
  overflow: hidden;
}*/
