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

.forPC {
  display: none;
}

@media screen and (min-width: 700px) {
  .forPC {
    display: inherit;
  }
}

html, body, div, h1, h2, h3, p, ul, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica Neue, Helvetica, Hiragino Sans, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}

ul, li {
  list-style: none;
}

img {
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  z-index: 500;
}

@media screen and (min-width: 700px) {
  header {
    height: 80px;
    padding: 0 40px;
  }
}

header h1 {
  position: relative;
  font-size: 18px;
  z-index: 1000;
}

header h1 a {
  display: block;
  color: #222222;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@-webkit-keyframes linkoff {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes linkoff {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@-webkit-keyframes linkon {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes linkon {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

header.menu-open h1 a {
  color: white;
}

.menu-trigger {
  position: relative;
  z-index: 1000;
  cursor: pointer;
}

.menu-trigger .menu-bar {
  width: 14px;
  height: 2px;
  margin: 2px 0;
  background-color: black;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.menu-open .menu-trigger .menu-bar {
  background-color: white;
}

.menu-open .menu-trigger .menu-bar:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-trigger .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-trigger .menu-bar:nth-child(3) {
  -webkit-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 60px 0 0;
  background-color: #222222;
}

nav .nav-inner {
  height: calc(100vh - 60px);
  padding: 0 10px;
  overflow: scroll;
}

nav .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .link li {
  margin: 0 10px;
  
}

nav .link a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

nav .gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 0 20px;
}

nav .gallery-list li {
  width: 50%;
  margin: 5px 0;
  padding: 10px;
}

nav .gallery-list li a {
  position: relative;
  display: block;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  color: #707070;
}

nav .gallery-list li img {
  display: block;
  width: 100%;
}

nav .gallery-list li .title {
  position: absolute;
  top: calc(100% + 2px);
  font-size: 9px;
}

@media screen and (min-width: 700px) {
  nav {
    padding: 80px 0 0;
  }
  nav .nav-inner {
    padding: 0 20px 60px;
  }
  nav .link {
    position: fixed;
    top: 27px;
    right: 70px;
  }
  nav .link li a {
    font-size: 16px;
  }
  nav .gallery-list {
    margin-top: -20px;
    padding: 0;
  }
  nav .gallery-list li {
    width: calc(100% / 3);
    padding: 20px;
  }
  nav .gallery-list li .title {
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: white;
    opacity: 0;
  }
  nav .gallery-list li .title,
  nav .gallery-list li img {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  nav .gallery-list li a:hover img {
    opacity: .5;
  }
  nav .gallery-list li a:hover .title {
    opacity: 1;
  }
}

.contents {
  margin-top: 60px;
  height: calc(100% - 60px);
}

@media screen and (min-width: 700px) {
  .contents {
    margin-top: 80px;
	height: calc(100% - 80px);
  }
}

.gallery {
  position: relative;
}

@media screen and (min-width: 700px) {
  .gallery {
    margin-top: -80px;
  }
}

.slider {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.slider.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.slick-slide {
  height: calc(100vh - 60px);
}

@media screen and (min-width: 700px) {
  .slick-slide {
    height: 100vh;
  }
}

figure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  max-height: 1600px;
  margin: auto;
  padding-bottom: 30px;
}

figure img {
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  font-family: 'object-fit: contain; object-position: 50% 50%;';
}

figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  font-size: 10px;
}

@media screen and (min-width: 700px) {
  figure {
    padding-bottom: 0;
  }
  figure figcaption {
    padding: 20px 40px;
    position: fixed;
  }
}

.prev,
.next {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 100;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.slick-counter {
  position: absolute;
  bottom: 0;
  padding: 20px;
  font-size: 12px;
}

@media screen and (min-width: 700px) {
  .slick-counter {
    padding: 20px 40px;
  }
}

.about {
  max-height: calc(100vh - 60px);
  padding: 0 0 20px;
  overflow-y: auto;
}

@media screen and (min-width: 700px) {
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100vh - 80px);
    padding: 0 40px 40px;
  }
}

.about .photo {
  width: 260px;
  margin: auto;
  padding: 0;
}

.about .photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 700px) {
  .about .photo {
    margin: 0;
  }
}

.about .profile {
  height: 100%;
  padding: 20px;
}

.about .profile h2 {
  font-size: 20px;
  font-weight: 600;
}

.about .profile h3 {
  margin: 20px 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.about .profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about .profile dt {
  width: 6.5em;
}

.about .profile dd {
  width: calc(100% - 6.5em);
}

.about .profile p,
.about .profile li,
.about .profile dt,
.about .profile dd {
  font-size: 13px;
}

@media screen and (min-width: 700px) {
  .about .profile {
    width: calc(100% - 260px);
    padding: 0 0 0 40px;
  }
}

.about .position {
  margin-bottom: 25px;
}

.group-photo {
  max-height: calc(100vh - 60px);
  padding: 0 0 20px;
  overflow-y: auto;
}

@media screen and (min-width: 700px) {
  .group-photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100vh - 80px);
    padding: 0 40px 40px;
  }
}

.group-photo .mainvisual {
  max-width: 100%;
  min-width: 0;
  margin: 0;
}

@media screen and (min-width: 700px) {
  .group-photo .mainvisual {
    width: 55%;
  }
}

.group-photo .sentence {
  padding: 0 20px 20px;
}

.group-photo .sentence h2 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.group-photo .sentence p {
  line-height: 1.6;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

@media screen and (min-width: 700px) {
  .group-photo .sentence {
    width: 45%;
    padding: 0 0 0 40px;
  }
}

.group-photo .btn-group {
  margin: 20px 0 0;
}

@media screen and (min-width: 700px) {
  .group-photo .btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -5px;
  }
}

.group-photo .btn {
  margin: 10px 0;
}

.group-photo .btn a {
  display: block;
  border: solid 1px #333;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  color: #333;
  position: relative;
  	font-size: 14px;
}

.group-photo .btn a:hover {
	color:#FFF;

}


.group-photo .btn a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #333;
  transform-origin: right top;
  transform: scale(1, 0);
  transition: transform .2s;
}
.group-photo .btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}



@media screen and (min-width: 700px) {
  .group-photo .btn {
    width: 190px;
    margin: 5px;
  }
}





/* 190814 */


#trigger {
	margin-top: -4px;
}

nav .link .icon {
	width: auto;
	height: 1em;
}

nav .link .icon img{
	width: auto;
	height: 1em;
}


.prev,
.next {
  position: absolute;
  top: 0;
  width:  10%;
  height: 100%;
  z-index: 100;
}



@media screen and (min-width: 700px) {

.prev,
.next {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 100;
}



  nav .gallery-list li .title{
  	font-size: 0.9em;
  	letter-spacing: 0.2em;
    }

    
  nav .gallery-list li a:hover {
	-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
	overflow: hidden;
	}
	
  nav .gallery-list li a:hover img{
  	-webkit-filter: blur(2px);
	}
	
	nav .gallery-list li a p span  {
		position: relative;
	}	
	
	nav .gallery-list li a p span::after {
	    position: absolute;
		top: calc(50% + 1em);
		left: 0%;
		content: '';
		width: 100%;
		height: 1px;
		background: #FFF;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .6s;
	}
	
	nav .gallery-list li a:hover p span::after {
	  transform: scale(1, 1);
	}
	
	h1 a:hover , nav .link li a:hover ,#trigger:hover {
		opacity: 0.8;
		transition:  .2s;
	}

    
    
}






