@charset "UTF-8";
/* CSS Document */

 *{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #333;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	font-size: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #333;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*========= レイアウトのためのCSS ===============*/

html {/*小画面用650px以下*/
	font-family: 'Noto Sans JP', sans-serif;
}

body {
	background: #ebebeb;
	font-size: 24px;
}

a{
	text-decoration: none;
}

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 270px;
	height: 90px;
	border-radius: 50px; /*角丸にするためのやつ*/
    background: #999;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	left:20px;
    top:155px;
	box-shadow:/*背景にシャドウつけるやつ*/
		0 11.8px 44.9px rgba(0, 0, 0, 0.019),
		0 20.5px 50.2px rgba(0, 0, 0, 0.036),
		0 27.1px 50px rgba(0, 0, 0, 0.051),
		0 32.7px 48.5px rgba(0, 0, 0, 0.063),
		0 39.7px 49.7px rgba(0, 0, 0, 0.074),
		0 70px 80px rgba(0, 0, 0, 0.13);
    transition: all .6s;/*0.6秒かけてアニメーション*/
	border:1px solid #00ff00;
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	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: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}







.return {
	background-color: #FFFFFF;
	padding: 13px;
	padding-right: 10px;
	position: relative;
	left: 20px;
	width: 270px;
	border-radius: 45px; /*角丸にするためのやつ*/
	box-shadow:/*背景にシャドウつけるやつ*/
		0 11.8px 44.9px rgba(0, 0, 0, 0.019),
		0 20.5px 50.2px rgba(0, 0, 0, 0.036),
		0 27.1px 50px rgba(0, 0, 0, 0.051),
		0 32.7px 48.5px rgba(0, 0, 0, 0.063),
		0 39.7px 49.7px rgba(0, 0, 0, 0.074),
		0 70px 80px rgba(0, 0, 0, 0.13);
	transition: all .6s ease 0s;
}

.return svg{
	margin: 0 10px;
	border:1px solid #00ff00;
}

.return span{
	color: #000000;
	font-size: 40px;
	font-family: 'Poppins', sans-serif;
	padding-left: 10px;
}

.return:hover{
	transform: scale(1.1);
	background-color: #DBDBDB;
	
}

#logo {
	background-color: #575757;
	padding-top:20px; 
	padding-bottom: 20px;
	letter-spacing : 0;                    /* 1行の高さを初期化   */
	line-height    : 1;                    /* 文字間隔を初期化    */
	text-align     : center;               /* 横位置定義          */
	width: 100%;
	margin: 30px 0 30px 0; 
}

#logo a span {
	position: relative;
	bottom: 4px;
	text-decoration: none;
	font-size: 60px;
	font-family: 'Train One', cursive;
	color: #FFFFFF;
	
}

#logo a svg {/*650px以下のミタリロゴサイズ*/
	width: 60px;
	padding: 1px;
}

ul {
	list-style: none;
	padding: 0px;
	font-size: 18px;
}

.member ul {
	margin: 40px 0 50px 0 ;
  padding: 0;
	/*border: 1px solid #000000;*/
}

.member nav { /* memberの見栄え */
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
	margin: 0px auto;
	margin-bottom: 25px;
	font-family: 'Poppins', sans-serif;
}

#member a {
	color: #000000;
	font-size: 45px;
	margin: 10vw;
}

#who a {
	margin-left: -75px;
	color: #000000;
	transition:1s all;
}

#who:hover{
	color: #000000;
	font-size: 35px;
	
}

#portfolio a {
	color: #000000;
	transition:1s all;
}

#portfolio:hover{
	color: #000000;
	font-size: 35px;
}

.member li {
	background: #ffffff;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
	margin: 20px 20px;
	border-radius: 30px; /*角丸にするためのやつ*/
	box-shadow:/*背景にシャドウつけるやつ*/
		0 11.8px 44.9px rgba(0, 0, 0, 0.019),
		0 20.5px 50.2px rgba(0, 0, 0, 0.036),
		0 27.1px 50px rgba(0, 0, 0, 0.051),
		0 32.7px 48.5px rgba(0, 0, 0, 0.063),
		0 39.7px 49.7px rgba(0, 0, 0, 0.074),
		0 70px 80px rgba(0, 0, 0, 0.13);
}

@media screen and (max-width: 960px) /* 960px以下に適用されるCSS（スマホ用） */ {
	.member li {
		width: auto;
	}
}

.member li a img{
	transition:transform 0.5s;
	max-width: 300px;
	max-height: 300px;
}

@media screen and (max-width: 960px) /* 960px以下に適用されるCSS（タブレット用） */ {
	.member li a img{
	 max-width: 250px;
	max-height: 250px;
}
}

@media screen and (max-width: 500px) /* 500px以下に適用されるCSS（スマホ用） */ {
	.member li a img{
	 max-width: 160px;
	max-height: 160px;
}
	.return{
		transform: scale(0.8);
		left: -10px;
	}
}

.pig a img:hover{
	transform: scale(0.95);
	cursor: url("svg/bubu_mitari.cur"), auto;
}

.panda a img:hover{
	transform: scale(0.95);
}

.hato a img:hover{
	transform: scale(0.95);
}

footer {
	font-size: 0.5em;
	opacity: 0.25;
	width: 100%;
	text-align: center;
	position: relative;
	
	bottom: 30px;
	}

@media screen and (min-width: 960px){/* 960px以上に適用されるCSS（pc用） */
	.member ul {
    display: flex;
	text-align: center;
	margin-bottom: 120px;
  }
}

@media screen and (min-width: 812px){/* 812px以上に適用されるCSS（pc用） */
	.return{
		display: none;
	}
}

@media screen and (max-width: 812px){/* 812px以下に適用されるCSS（pc用） */
	.member nav{
		display: none;
	}
}