@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300&display=swap');
html,
body {
	padding: 0;
	margin: 0;
	font-family:'Noto Sans', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	letter-spacing: 1px;
	background: #FEF9F6;
}
*:focus {
	outline: none;
}
img,video {
	width: 100%;
	line-height: 0;
	border: none;
}
a {
	text-decoration: none;
	color: #000;
}
h1,h2,h3 {
	padding: 0;
	margin: 0;
}
ul,li {
	padding: 0;
	margin: 0;
	list-style: none;
}
.clear {
	clear: both;
}
.spview {
	display: none;
}
@media only screen and (max-width: 768px)  {
	.spview {
		display: block;
	}	
	.pcview {
		display: none;
	}
}



#of {
	width: 100%;
}

#main_visual {
	width: 100%;
	position: relative;
	overflow: hidden;
}
#main_visual h1 {
	position: absolute;
	top: 6vw;
	left: 6vw;
	width: 14%;
	line-height: 0;
	overflow: hidden;
	z-index: 100;
}
#main_visual h2 {
	position: absolute;
	top: 6vw;
	right: 12vw;
	width: 20%;
	line-height: 0;
	overflow: hidden;
	z-index: 100;
}
#main_visual h1 span,#main_visual h2 span {
	display: block;
	transform: translate(0,75px);
	transition: 1s all 1s ease;
}
#main_visual.ac h1 span,#main_visual.ac h2 span {
	transform: translate(0);
}
#main_visual h3 {
	position: absolute;
	top: 10px;
	right: 50px;
	bottom: 10px;
	width: 15px;
	z-index: 100;
}
#main_visual h3::before,#main_visual h3::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
	width: 1px;
	background: #000;
}
#main_visual h3::before {
	top: 0;
	transition: 0.5s all 1s ease;
	height: 0%;
}
#main_visual h3::after {
	top: 65%;
	transition: 0.5s all 1.6s ease;
	height: 0%;
}
#main_visual.ac h3::before,#main_visual.ac h3::after {
	height: 35%;
}

#main_visual h3 span img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: auto;
	opacity: 0;
	height: 24%;
	transition: 1s all 1.3s ease;
}
#main_visual.ac h3 span img {
	opacity: 1;
}
#main_visual .visual {
	line-height: 0;
	filter: grayscale(100);
	transition: 1s all 1s ease;
	opacity: 0;
}
#main_visual.ac .visual {
	line-height: 0;
    -webkit-animation: fade 3s forwards ease;
    animation: fade 3s forwards ease;	
}
@media only screen and (max-width: 768px)  {
	#main_visual h1 {
		top: 35px;
		left: 35px;
		width: 40%;
	}
	#main_visual h2 {
		top: 15%;
		right: auto;
		left: 35px;
		width: 45%;
	}
	#main_visual h3 {
		top: 35px;
		right: 15px;
		bottom: 35px;
		width: 15px;
	}
	#main_visual h3::before {
		top: 0;
	}
	#main_visual h3::after {
		top: 75%;
	}
	#main_visual.ac h3::before,#main_visual.ac h3::after {
		height: 25%;
	}

	#main_visual h3 span img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: auto;
		opacity: 0;
		height: 34%;
	}
	#main_visual .visual {
		width: 200%;
		margin-left: -50%;
	}
	
}

#main_contents {
	width: 100%;
}

#main_contents .section {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	opacity:0;
	filter: grayscale(100);
}
#main_contents .section .img {
	line-height: 0;
	position: relative;
}
#main_contents .section.ac {
    -webkit-animation: fade 3s forwards ease;
    animation: fade 3s forwards ease;	
}
#main_contents .section .img .switch {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    -webkit-animation: switch 5s infinite ease;
    animation: switch 5s infinite ease;	
}
#main_contents .section .btn {
	position: absolute;
	bottom: 0px;
	right: 20px;
	max-width: 120px;
	line-height: 0;
}
#main_contents .section .item {
	position: absolute;
	top: 0;
	left: 100%;
	background:rgba(0,0,0,0.5);
	width: 100%;
	box-sizing: border-box;
	padding: 100px 25px 25px;
	color: #FFF;
	transition: 0.6s all 0s ease;
}
#main_contents .section .item .inner {
	opacity: 0;
	transition: 0.6s all 0.6s ease;
}
#main_contents .section .item.ac {
	left: 0;
}
#main_contents .section .item.ac .inner {
	opacity: 1;
}
#main_contents .section .item li {
	margin-bottom: 10px;
	font-size: 14px;
}
#main_contents .section .item a {
	font-size: 14px;
	color: #FFF;
	border: 1px solid #FFF;
	border-radius: 20px;
	box-sizing: border-box;
	padding: 5px 10px;
	line-height: 1;
	margin-top: 20px;
	display: inline-block;
}
@media only screen and (max-width: 768px)  {
	#main_contents .section {
		display: block;
		width: 100%;
	}
	#main_contents .section .btn {
		position: absolute;
		bottom: 0px;
		right: 0px;
		width: 28%;
	}
	#main_contents .section .item {
		padding: 40px 20px 20px;
	}
	#main_contents .section .item li {
		font-size: 12px;
	}
	#main_contents .section .item a {
		font-size: 12px;
		margin-top:10px;
	}
}



#main_contents #look1 {
}
@media only screen and (max-width: 768px)  {
	#main_contents #look1 .img:nth-of-type(2) {
		display: none;
	}
}
#main_contents #look2 {
}
@media only screen and (max-width: 768px)  {
	#main_contents #look2 .img:nth-of-type(2) {
		position: absolute;
		top:0;
		left: 0;
		width: 100%;
		-webkit-animation: switch 5s infinite ease;
		animation: switch 5s infinite ease;	
	}
}
#main_contents #look3 {
	display: block;
}
@media only screen and (max-width: 768px)  {
}
#main_contents #look4 {
}
@media only screen and (max-width: 768px)  {
	#main_contents #look4 .sp_s {
		position: absolute;
		top:0;
		left: 0;
		width: 100%;
		-webkit-animation: switch 5s infinite ease;
		animation: switch 5s infinite ease;	
	}
}
#main_contents #look5 {
}
@media only screen and (max-width: 768px)  {
}
#main_contents #look6 {
}
@media only screen and (max-width: 768px)  {
	#main_contents #look6 .img:nth-of-type(2) {
		position: absolute;
		top:0;
		left: 0;
		width: 100%;
		-webkit-animation: switch 5s infinite ease;
		animation: switch 5s infinite ease;	
	}
}
#main_contents #look7 {
}
@media only screen and (max-width: 768px)  {
	#main_contents #look7 .img:nth-of-type(2) {
		position: absolute;
		top:0;
		left: 0;
		width: 100%;
		-webkit-animation: switch 5s infinite ease;
		animation: switch 5s infinite ease;	
	}
}




.marquee-anim {
	opacity: 1;
	white-space:nowrap;
	margin: 50px auto;
}
.marquee-anim ul {
	display:inline-block;
	margin:0;
	padding:0;
	animation:hscroll2 40s linear infinite;
}
.marquee-anim li {
	display:inline-block;
	font-size: 28px;
}
@keyframes hscroll2 {
	0% { transform:translateX(4px); }
	100% { transform:translateX(-100%); }
}
@media only screen and (max-width: 768px)  {
	.marquee-anim li {
		display:inline-block;
		font-size: 20px;
	}
}


#footer {
	margin: 0 auto 0;
	padding: 5% 0;
	width: 90%;
}
#footer .vol {
	width: 20%;
	margin: 0 auto 10%;
}
#footer .sns {
	width: 50%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
}
#footer .sns li {
	width: 60px;
	margin: 0 auto;
}
#footer .staff {
	text-align: center;
	font-size: 12px;
	margin: 8% auto;
	line-height: 2.0;
}

#footer .copy {
	text-align: center;
	font-size: 12px;
	margin: 8% auto 2%;
	line-height: 2.0;
}
@media only screen and (max-width: 765px)  {
	#footer {
		margin: 0 auto;
		padding: 15% 0;
		width: 90%;
	}
	#footer .vol {
		width: 60%;
		margin: 0 auto 15%;
	}
	#footer .sns {
		width: 100%;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: auto;
	}
	#footer .sns li {
		width: 50px;
		margin: 10% auto;
	}
	#footer .staff {
		text-align: center;
		font-size: 10px;
		margin: 10% auto;
		line-height: 2.0;
	}
	#footer .copy {
		font-size: 10px;
	}
}





@keyframes switch {
  0% {
	  opacity: 0;
	}
	15% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	65% {
		opacity: 0;
	}
  100% {
	  opacity: 0;
	}
}
@keyframes fade {
  0% {
	  opacity: 0;
	  filter:grayscale(100%);
	}
  50% {
	  opacity: 1;
	  filter:grayscale(100%);
	}
  100% {
	  opacity: 1;
	  filter:grayscale(0%);
	}
}

