body {
    height: 100%;
    margin: 0;
    font-feature-settings: 'palt';
    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
	background: #000;
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*imac////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 2560px) and (max-width: 5120px) {
   
	/* Loading Block */
	#loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		overflow: hidden;
		background: #000;
	}
	.loading-logo {
		width: 100px;
		position: absolute;
		display: block;
		top: 50%;
		-webkit-transform: translateY(-50%); /* Safari用 */
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		z-index: 99;
	}
	
	.wrap{
		width: 100%;
		height: 100%;
		position: relative;
		display: flex;
		justify-content: flex-start;
	}
	.side{
		width: 15%;
		height: 100vh;
		position: relative;
		align-items: center;
	}
	.main{
		width: 85%;
		height: 100vh;
		position: relative;
		align-items: center;
	}
    .side h1{
		width: 50%;
		display: block;
		margin: 40% auto 0 auto;
	}
	.side .sns-list{
		width: 80%;
		position: absolute;
		margin: 0 auto;
		bottom: 5%;
		left: 0;
		right: 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.side .sns-list li:nth-child(1){
		width: 100%;
		margin: 0 0 20px 0;
	}
	.side .sns-list li:nth-child(1) a{
		width: 100%;
		display: block;
		box-sizing: border-box;
		border: 1px solid #fff;
		font-size: 13px;
		letter-spacing: 3px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		color: #fff;
		text-align: center;
		padding: 10px 0 10px 0;
		text-decoration: none;
		transition: .3s;
	}
	.side .sns-list li:nth-child(1) a:hover{
		width: 100%;
		background: #fff;
		color: #000;
		transition: .3s;
	}
	.side .sns-list li:nth-child(2){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(3){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(4){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(5){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	
	.coming{
		width: 30%;
		position: absolute;
		bottom: 10%;
		left: 0;
		right: 10%;
		margin: 0 auto;
	}
	
	.data-box{
		width: max-content;
		position: absolute;
		top: 10%;
		right: 4%;
		color: #fff;
	}
	.data-box .line{
		width: 80px;
		height: 1px;
		background: #fff;
		margin: 10% 0 20% 0;
	}
	.data-box .txt01{
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		font-size: 14px;
		letter-spacing: 4px;
		line-height: 2.5em;
	}
	.data-box .txt02{
		font-size: 13px;
		letter-spacing: 2px;
		line-height: 2em;
	}
	
	
	.img-box{
		width: 95%;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		right: 0;
	}
	.img01{
		width: 30%;
		overflow: hidden;
	}
	.img02{
		width: 30%;
		overflow: hidden;
		margin: 1% auto;
	}
	.img03{
		width: 30%;
		overflow: hidden;
		margin: 0 0 0 70%;
	}
	
	.fade01 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade02 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade03 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up {
		0% {
			opacity: 0;
			transform: translateX(-50px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		80% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		100% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(0%);
			-moz-filter: grayscale(0%);
			-ms-filter: grayscale(0%);
			-o-filter: grayscale(0%);
			filter: grayscale(0%);
		}
	}
	
	.fade04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up2 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	
	.txt-ani01 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani02 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani03 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani05 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani06 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 9s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani07 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 10.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*pc//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 1281px) and (max-width: 2559px) {
    .sp-on{
		display: none!important;
	}
    .pad-on{
        display: none!important;
    }
	
	/* Loading Block */
	#loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		overflow: hidden;
		background: #000;
	}
	.loading-logo {
		width: 100px;
		position: absolute;
		display: block;
		top: 50%;
		-webkit-transform: translateY(-50%); /* Safari用 */
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		z-index: 99;
	}
	
	.wrap{
		width: 100%;
		height: 100%;
		position: relative;
		display: flex;
		justify-content: flex-start;
	}
	.side{
		width: 15%;
		height: 100vh;
		position: relative;
		align-items: center;
	}
	.main{
		width: 85%;
		height: 100vh;
		position: relative;
		align-items: center;
	}
    .side h1{
		width: 50%;
		display: block;
		margin: 40% auto 0 auto;
	}
	.side .sns-list{
		width: 80%;
		position: absolute;
		margin: 0 auto;
		bottom: 5%;
		left: 0;
		right: 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.side .sns-list li:nth-child(1){
		width: 100%;
		margin: 0 0 20px 0;
	}
	.side .sns-list li:nth-child(1) a{
		width: 100%;
		display: block;
		box-sizing: border-box;
		border: 1px solid #fff;
		font-size: 13px;
		letter-spacing: 3px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		color: #fff;
		text-align: center;
		padding: 10px 0 10px 0;
		text-decoration: none;
		transition: .3s;
	}
	.side .sns-list li:nth-child(1) a:hover{
		width: 100%;
		background: #fff;
		color: #000;
		transition: .3s;
	}
	.side .sns-list li:nth-child(2){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(3){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(4){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(5){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	
	.coming{
		width: 30%;
		position: absolute;
		bottom: 10%;
		left: 0;
		right: 10%;
		margin: 0 auto;
	}
	
	.data-box{
		width: max-content;
		position: absolute;
		top: 10%;
		right: 4%;
		color: #fff;
	}
	.data-box .line{
		width: 80px;
		height: 1px;
		background: #fff;
		margin: 10% 0 20% 0;
	}
	.data-box .txt01{
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		font-size: 14px;
		letter-spacing: 4px;
		line-height: 2.5em;
	}
	.data-box .txt02{
		font-size: 13px;
		letter-spacing: 2px;
		line-height: 2em;
	}
	
	
	.img-box{
		width: 95%;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		right: 0;
	}
	.img01{
		width: 30%;
		overflow: hidden;
	}
	.img02{
		width: 30%;
		overflow: hidden;
		margin: 1% auto;
	}
	.img03{
		width: 30%;
		overflow: hidden;
		margin: 0 0 0 70%;
	}
	
	.fade01 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade02 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade03 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up {
		0% {
			opacity: 0;
			transform: translateX(-50px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		80% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		100% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(0%);
			-moz-filter: grayscale(0%);
			-ms-filter: grayscale(0%);
			-o-filter: grayscale(0%);
			filter: grayscale(0%);
		}
	}
	
	.fade04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up2 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	
	.txt-ani01 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani02 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani03 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani05 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani06 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 9s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani07 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 10.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	
	
	
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*note pc/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .sp-on{
		display: none !important;
	}
    .pad-on{
		display: none !important;
	}
	
	/* Loading Block */
	#loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		overflow: hidden;
		background: #000;
	}
	.loading-logo {
		width: 100px;
		position: absolute;
		display: block;
		top: 50%;
		-webkit-transform: translateY(-50%); /* Safari用 */
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		z-index: 99;
	}
	
	.wrap{
		width: 100%;
		height: 100%;
		position: relative;
		display: flex;
		justify-content: flex-start;
	}
	.side{
		width: 15%;
		height: 100vh;
		position: relative;
		align-items: center;
	}
	.main{
		width: 85%;
		height: 100vh;
		position: relative;
		align-items: center;
	}
    .side h1{
		width: 50%;
		display: block;
		margin: 40% auto 0 auto;
	}
	.side .sns-list{
		width: 80%;
		position: absolute;
		margin: 0 auto;
		bottom: 5%;
		left: 0;
		right: 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.side .sns-list li:nth-child(1){
		width: 100%;
		margin: 0 0 20px 0;
	}
	.side .sns-list li:nth-child(1) a{
		width: 100%;
		display: block;
		box-sizing: border-box;
		border: 1px solid #fff;
		font-size: 11px;
		letter-spacing: 1px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		color: #fff;
		text-align: center;
		padding: 10px 0 10px 0;
		text-decoration: none;
		transition: .3s;
	}
	.side .sns-list li:nth-child(1) a:hover{
		width: 100%;
		background: #fff;
		color: #000;
		transition: .3s;
	}
	.side .sns-list li:nth-child(2){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(3){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(4){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(5){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	
	.coming{
		width: 30%;
		position: absolute;
		bottom: 10%;
		left: 0;
		right: 25%;
		margin: 0 auto;
	}
	
	.data-box{
		width: max-content;
		position: absolute;
		top: 10%;
		right: 4%;
		color: #fff;
	}
	.data-box .line{
		width: 80px;
		height: 1px;
		background: #fff;
		margin: 10% 0 20% 0;
	}
	.data-box .txt01{
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		font-size: 14px;
		letter-spacing: 2px;
		line-height: 2.5em;
	}
	.data-box .txt02{
		font-size: 13px;
		letter-spacing: 2px;
		line-height: 2em;
	}
	
	
	.img-box{
		width: 83%;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		right: 0;
	}
	.img01{
		width: 30%;
		overflow: hidden;
	}
	.img02{
		width: 30%;
		overflow: hidden;
		margin: 5% auto;
	}
	.img03{
		width: 30%;
		overflow: hidden;
		margin: 0 0 0 70%;
	}
	
	.fade01 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade02 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade03 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up {
		0% {
			opacity: 0;
			transform: translateX(-50px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		80% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		100% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(0%);
			-moz-filter: grayscale(0%);
			-ms-filter: grayscale(0%);
			-o-filter: grayscale(0%);
			filter: grayscale(0%);
		}
	}
	
	.fade04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up2 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	
	.txt-ani01 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani02 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani03 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani05 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani06 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 9s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani07 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 10.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*pad/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 765px) and (max-width: 1024px) {
    .sp-on{
		display: none !important;
	}
    .pad-off{
		display: none !important;
	}
    
	/* Loading Block */
	#loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		overflow: hidden;
		background: #000;
	}
	.loading-logo {
		width: 100px;
		position: absolute;
		display: block;
		top: 50%;
		-webkit-transform: translateY(-50%); /* Safari用 */
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		z-index: 99;
	}
	
	.wrap{
		width: 100%;
		height: 100%;
		position: relative;
	}
	.side{
		width: 100%;
		position: relative;
		padding: 5% 0;
	}
	.main{
		width: 100%;
		position: relative;
	}
    .side h1{
		width: 10%;
		display: block;
		margin: 0 auto;
	}
	.side .sns-list{
		width: 25%;
		position: absolute;
		bottom: 10%;
		right: 5%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.side .sns-list li:nth-child(1){
		width: 100%;
		margin: 0 0 10px 0;
	}
	.side .sns-list li:nth-child(1) a{
		width: 100%;
		display: block;
		box-sizing: border-box;
		border: 1px solid #fff;
		font-size: 11px;
		letter-spacing: 1px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		color: #fff;
		text-align: center;
		padding: 10px 0 10px 0;
		text-decoration: none;
		transition: .3s;
	}
	.side .sns-list li:nth-child(1) a:hover{
		width: 100%;
		background: #fff;
		color: #000;
		transition: .3s;
	}
	.side .sns-list li:nth-child(2){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(3){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(4){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(5){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	
	.coming{
		width: 50%;
		margin: 5% auto 0 auto;
	}
	
	.data-box{
		width: max-content;
		color: #fff;
		margin: 5% auto 0 auto;
	}
	.data-box .line{
		width: 80px;
		height: 1px;
		background: #fff;
		margin: 10% 0 10% 0;
	}
	.data-box .txt01{
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		font-size: 14px;
		letter-spacing: 2px;
		line-height: 2.5em;
	}
	.data-box .txt02{
		font-size: 13px;
		letter-spacing: 2px;
		line-height: 2em;
	}
	
	
	.img-box{
		width: 90%;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
	}
	.img01{
		width: 30%;
		overflow: hidden;
	}
	.img02{
		width: 30%;
		overflow: hidden;
	}
	.img03{
		width: 30%;
		overflow: hidden;
	}
	
	.fade01 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade02 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade03 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up {
		0% {
			opacity: 0;
			transform: translateX(-50px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		80% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		100% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(0%);
			-moz-filter: grayscale(0%);
			-ms-filter: grayscale(0%);
			-o-filter: grayscale(0%);
			filter: grayscale(0%);
		}
	}
	
	.fade04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up2 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	
	.txt-ani01 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani02 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani03 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 7.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani05 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani06 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 9s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani07 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 10.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* for iphone ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media (min-width:0px) and ( max-width:766px) {
	.pc-on{
		display: none !important;
	}
	.pad-on{
        display: none!important;
    }

	/* Loading Block */
	#loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		overflow: hidden;
		background: #000;
	}
	.loading-logo {
		width: 100px;
		position: absolute;
		display: block;
		top: 50%;
		-webkit-transform: translateY(-50%); /* Safari用 */
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		z-index: 99;
	}
	
	.wrap{
		width: 100%;
		height: 100%;
		position: relative;
	}
	.side{
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 3;
	}
	.main{
		width: 100%;
		position: relative;
	}
    .side h1{
		width: 25%;
		display: block;
		position: absolute;
		top: 30px;
		left: 3%;
	}
	.side .sns-list{
		width: 55%;
		position: absolute;
		top: 20px;
		right: 10%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.side .sns-list li:nth-child(1){
		width: 100%;
		margin: 0 0 20px 0;
	}
	.side .sns-list li:nth-child(1) a{
		width: 100%;
		display: block;
		box-sizing: border-box;
		border: 1px solid #fff;
		font-size: 11px;
		letter-spacing: 1px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		color: #fff;
		text-align: center;
		padding: 10px 0 10px 0;
		text-decoration: none;
		transition: .3s;
	}
	.side .sns-list li:nth-child(1) a:hover{
		width: 100%;
		background: #fff;
		color: #000;
		transition: .3s;
	}
	.side .sns-list li:nth-child(2){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(3){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(4){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	.side .sns-list li:nth-child(5){
		width: 20%;
		box-sizing: border-box;
		padding: 0 5%;
	}
	
	.coming{
		width: 90%;
		margin: 10% auto;
	}
	
	.data-box{
		width: max-content;
		color: #fff;
	}
	.data-box .line{
		width: 80px;
		height: 1px;
		background: #fff;
		margin: 10% 0 20% 0;
	}
	.data-box .txt01{
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		font-size: 13px;
		letter-spacing: 1px;
		line-height: 2.5em;
		position: relative;
		right: -55%;
		padding: 70px 0 0 0;
	}
	.main .txt02{
		font-size: 13px;
		letter-spacing: 2px;
		line-height: 2em;
		color: #fff;
		text-align: center;
		margin: 0 0 5% 0;
	}
	
	.main .sns-list{
		width: 90%;
		margin: 0 auto 7% auto;
	}
	.main .sns-list li:nth-child(1){
		width: 100%;
	}
	.main .sns-list li:nth-child(1) a{
		width: 100%;
		display: block;
		box-sizing: border-box;
		border: 1px solid #fff;
		font-size: 13px;
		letter-spacing: 2px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		color: #fff;
		text-align: center;
		padding: 10px 0 10px 0;
		text-decoration: none;
		transition: .3s;
	}
	.main .sns-list li:nth-child(1) a:hover{
		width: 100%;
		background: #fff;
		color: #000;
		transition: .3s;
	}
	
	
	.img-box{
		width: 90%;
		margin: 10% auto;
	}
	.img01{
		width: 70%;
		overflow: hidden;
	}
	.img02{
		width: 50%;
		overflow: hidden;
		margin: 10% 0 10% 50%;
	}
	.img03{
		width: 80%;
		overflow: hidden;
		margin: 0 auto;
	}
	
	.fade01 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade02 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 8.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade03 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 9s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.fade04 {
		animation-name: fadein-up;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 9.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadein-up {
		0% {
			opacity: 0;
			transform: translateX(-50px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		80% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(100%);
			-moz-filter: grayscale(100%);
			-ms-filter: grayscale(100%);
			-o-filter: grayscale(100%);
			filter: grayscale(100%);
		}
		100% {
			opacity: 1;
			transform: translateX(0px);
			-webkit-filter: grayscale(0%);
			-moz-filter: grayscale(0%);
			-ms-filter: grayscale(0%);
			-o-filter: grayscale(0%);
			filter: grayscale(0%);
		}
	}
	
	
	.txt-ani01 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani02 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4.3s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani03 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4.6s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani04 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 4.9s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani05 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 5.2s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani06 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 5.5s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani07 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 5.8s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani08 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.1s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani09 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.4s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	.txt-ani10 {
		animation-name: fadein-up2;
		animation-duration: 1s;
		animation-timing-function: ease-out;
		animation-delay: 6.7s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	
	
	@keyframes fadein-up2 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	
}

