@charset "utf-8";

/* ヒーローヘッダー */
#splash {
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	text-align:center;
	color:#fff;
}

/* ナビゲーションメニュー */
#g-nav{
    position:fixed;
    z-index: 999;
	top:0;
    right: -100%;
	width:30%;
    height: 100vh;
	background: linear-gradient(45deg,rgba(241, 57, 158, 0.8),rgba(49, 233, 156, 0.8));
	transition: all 0.6s;
}
#g-nav.panelactive{
    right: 0;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 30%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 768px) {
    #g-nav,
    #g-nav.panelactive #g-nav-list{
        width:100%;
    }
}

#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
#g-nav li{
	list-style: none;
    text-align: center;
}
#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    transition: all .5s;
}
#g-nav li a:hover{
    color:#bbb;
}

/* ハンバーガーメニュー */
.openbtn{
	position:fixed;
    z-index: 9999;
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
    inset: 0;
    margin: auto;
  }
  .openbtn span:nth-child(1){
    top: -40%;
  }
  .openbtn span:nth-child(2){
    top: -40%;
  }
  .openbtn span:nth-child(5){
      top: 40%;
  }
  .openbtn span:nth-child(6){
      top: 40%;
  }
  .openbtn.active span{
    width: 25%;
    height: 2px;
  }
  .openbtn.active span:nth-child(1){
      transform: rotate(-20deg);
      left: 60%;
  }
  .openbtn.active span:nth-child(2){
      transform: rotate(20deg);
      right: 60%;
  }
  .openbtn.active span:nth-child(3){
      width: 23%;
      left: 60%;
  }
  .openbtn.active span:nth-child(4){
      width: 23%;
      right: 60%;
  }
  .openbtn.active span:nth-child(5){
    transform: rotate(20deg);
    left: 60%;
}
.openbtn.active span:nth-child(6){
    transform: rotate(-20deg);
    right: 60%;
}

/* リンクアニメーション設定 */
.sort-btn{
	display: flex;
	justify-content: center;
	margin:50px 0;
	list-style: none;
    text-transform: uppercase;
}
.sort-btn li{
	position: relative;
    cursor: pointer;
    margin: 0 20px;
}
.sort-btn li::after {
    content: '';
    position: absolute;
    bottom:-5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background:#a0a0a0;
    transition: all .2s;
    transform: scale(0, 1);
    transform-origin: center top;
}
.sort-btn li.active::after,
.sort-btn li:hover::after{
    transform: scale(1, 1);}

@media only screen and (max-width: 375px) {
.sort-btn{
    flex-wrap: wrap;
	justify-content: space-between;
}	
.sort-btn li{
	width:48%;
	margin:0 0 10px 0;
	text-align:center;
	}
}

/* プロフィール */
hr{
    margin: 30px auto;
    width: 80%;
}
.profile{
    margin: 0 auto;
    padding: 20px;
    width: 80%;
}
.profile_content{
    margin: 10px auto;
    width: 80%;
    text-align: center;
}
.profile h2{
    margin: 10px 0 0;
}
.profile p{
    margin-bottom: 15px;
}
.contact_link{
    padding-bottom: 5px;
}

/* スクロール */
.scrolldown{
	position:absolute;
	bottom:10px;
	left:50%;
}
.scrolldown span{
	position: absolute;
	left:10px;
	bottom:10px;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.08em;
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.scrolldown:before {
    content: "";
    position: absolute;
    bottom:0;
    left:-4px;
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#fff;
	animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
}
@keyframes circlemove{
    0%{bottom:60px;}
   100%{bottom:-5px;}
}
@keyframes cirlemovehide{
    0%{opacity:0}
   50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}
.scrolldown:after{
	content:"";
	position: absolute;
	bottom:0px;
	left:0;
	width:2px;
	height: 60px;
	background:#ffffff73;
}

/* ページトップ */
#page-top {
	position: fixed;
	right: 30px;
    bottom: 10px;
	z-index: 999;
	opacity: 0;
	transform: translateY(100px);
    width: 10px;
    height: 100%;
}
#page-top span{
	position: absolute;
	left:16px;
	bottom:10px;
	color: #a0a0a0;
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
#page-top:after{
	content:"";
	position: absolute;
	bottom: 9px;
	left: 16px;
	width: 1px;
	height: 60px;
	background:#55555577;
}
#page-top::before {
    content: "";
    position: absolute;
	bottom:58px;
	left:13px;
    width: 1px;
    height: 10px;
    background: #55555577;
    transform: skewX(-31deg);
}
#page-top a{
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top a:hover{
	color: #777;
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/* スライダー */
#slider {
    width: 100%;
    min-height: 100vh;
}

/* Muuri */
.grid {
  position: relative;
}
.item {
  display: block;
  position: absolute;
  width: 33%;
  z-index: 1;
}
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
    padding: 30px;
}
.item-content a{
    text-decoration: none;
}
.item-content span{
    display: block;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 10px 0 0 0;
}
.item-content p{
    display: block;
    text-align: center;
    color: #a0a0a0;
    letter-spacing: 0.05em;
}
.item-content p a{
    color: #a0a0a0;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #ff8dcc;
}
.item-content p a:hover{
    color: #bd106f;
    transition: 0.5s;
}
.grid img{
	width:100%;
	height:auto;
	vertical-align: bottom;
}
.img-box-no{
    display: none;
}
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;
}
    .item-content {
        padding: 10px;
    }
}

/* fancybox */
.fancybox-thumbs {
    background: transparent!important;
}
.fancybox-thumbs__list a:before {
    border: 6px solid #a0a0a0;
}
.fancybox-caption__body{
      letter-spacing: 0.1em;  
}

/* フェードアニメーション */
.item{
	opacity: 0;
}
.fadeUp {
animation-name: fadeUpAnime;
animation-duration:0.2s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	margin-top:80px;
  }
  to {
    opacity: 1;
	margin-top:0;
  }
}

/* ランダムテキスト */
.TextRandomAnime span{
	opacity: 0;
}
.TextRandomAnime.appearRandomtext span{ 
	animation:text_randomanime_on .5s ease-out forwards;
}
@keyframes text_randomanime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
.TextRandomAnime.appearRandomtext span:nth-child(2n) {
	animation-delay: 0.7s;
}
.TextRandomAnime.appearRandomtext span:nth-child(3n+1) {
	animation-delay: 0.35s;
}

/* 画像の変化 */
.img-box{
    overflow: hidden;
}
.grid img{
	transform: scale(1);
	transition: .5s ease-in-out;
}
.grid a:hover img{
	transform: scale(1.1);
}

/* グラデーション */
#splash{
	background:linear-gradient(0deg, #e630c831,#3baee37c,#44ea76);
	background-size: 200% 200%;
	animation: bggradient 30s ease infinite;
}
@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}