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

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
html,
body {
    padding: 0;
    margin: 0;
	background: #b2aba4;
}
img {
    width: 100%;
}
a {
    text-decoration: none;
    color: #000;
}
ul,li {
    list-style: none;
    margin: 0;
    padding: 0;
}
#loading {
	width: 100vw;
	height: 100svh;
	transition: 2s all 1.5s ease;

	position: fixed;
	top: 0;
	left: 0;
	z-index: 900
}
.spinner {
	width: 34%;
	max-width: 250px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	line-height: 0;
	animation: load 1s forwards ease;
}
.loaded {
	opacity: 0;
	filter: blur(10px);
	visibility: hidden;
}
@keyframes load {
  0% {
	  filter: blur(10px)
  }
  100% {
    filter: blur(0px)
  }
}


#cl {
    width: 100%;
    font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    line-height: 2;
}
#cl .img {
    line-height: 0;
}
#cl .pcview {
    display: none;
}

@media only screen and (min-width: 769px)  {
    #cl .pcview {
        display: block;
    }
    #cl .spview {
        display: none;
    }
}

#cl ul {
	padding: 5px;
	box-sizing: border-box;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 5px;
}
#cl ul li {
	position: relative;
	margin-bottom: 5px;
}
#cl ul li .list {
	position: absolute;
	bottom: 2%;
	left: 2%;
	width: 96%;
	text-align: right;
	line-height: 1;
}
#cl ul li .list a {
	display: block;
	color: #FFF;
	font-size: 9px;
	opacity: 0.8;
	padding: 0;
	margin: 5px 0 0;
	/*border-bottom: 1px solid #FFF*/
}
#cl h1 {
	padding: 0;
	margin: 0 auto 10%;
	max-width: 400px;
}
#cl .data {
	width: 80%;
	max-width: 400px;
	margin: 10% auto;
}
#cl .data p {
	font-size: 11px;
	line-height: 2;
	color: #224970;
}
#cl .data .btn a {
	display: block;
	margin: 10% auto;
	text-align: center;
	border: 1px solid #224970;
	color: #224970;
	padding: 5px;
}
#cl .logo {
	margin: 10% auto;
	max-width: 250px;
	width: 50%;
}
@media only screen and (max-width: 768px)  {
	#cl ul {
		padding: 0;
		grid-template-columns: 1fr 1fr;
		column-gap: 3px;
	}
	#cl ul li {
		position: relative;
		margin-bottom: 3px;
	}
	#cl ul li .list {
		position: absolute;
		bottom: 0%;
		left: 2%;
		width: 96%;
		text-align: right;
		line-height: 1;
		transform: scale(0.85);
		transform-origin: right;
	}
	#cl ul li .list a {
		line-height: 1.8;
		margin: 0;
	}
	#cl .data {
		width: 80%;
		max-width: 400px;
		margin: 24% auto;
	}
	#cl .data p {
		font-size: 10px;
		line-height: 2;
		color: #224970;
	}
}
ul li {
	filter: grayscale(1);
	opacity: 0;
	transition: 3s all 2.5s ease;
}
ul li:nth-of-type(2) {
	transition: 3s all 2.8s ease;
}
ul li:nth-of-type(3) {
	transition: 3s all 3s ease;
}
ul li:nth-of-type(4) {
	transition: 3s all 3.4s ease;
}
ul li:nth-of-type(5) {
	transition: 3s all 3.2s ease;
}
ul li:nth-of-type(6) {
	transition: 3s all 2.3s ease;
}
@media only screen and (max-width: 768px)  {
/*	ul li:nth-of-type(2) {
		transition: 2s all 2s ease;
	}
	ul li:nth-of-type(3) {
		transition: 2s all 3s ease;
	}
	ul li:nth-of-type(4) {
		transition: 2s all 2.5s ease;
	}
	ul li:nth-of-type(5) {
		transition: 2s all 2s ease;
	}
	ul li:nth-of-type(6) {
		transition: 2s all 3s ease;
	}	
	*/
}


ul.ac li {
	filter: grayscale(0);
	opacity:1
}
.anim {
	opacity: 0;
	transition: 2s all 0.5s ease;
}
.anim.ac {
	opacity: 1;
}