@charset "UTF-8";
/* CSS Document */

html,
body {
	padding: 0;
	margin: 0;
}
#js img {
	width: 100%;
	border:none;
}
#js {
	position: relative;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 12px;
	line-height: 2;
	background: url("../img/dot.svg") repeat;
	background-size: 200%;
}

#main_visual {
	position: relative;
}
#main_visual h1 {
	position: absolute;
	top: 10%;
	left: 10%;
	width: 80%;
}
@media only screen and (min-width: 769px) {
	#js {
		padding-top: 5%;
		background-size: 100%;
	}
	#main_visual {
		width: 45%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		
	}
	#main_visual h1 {
		position: absolute;
		top: 12%;
	}
	#main_visual .visual {
		width: 100%;
		height: 100vh;
		min-height: 600px;
				background: url("../img/main.webp") no-repeat center;
		background-size: cover;
		position: sticky;
		top: 0;
		
	}
	#main_visual .img {
		display: none;
	}
}

#main_contents {
	position: relative;
}
@media only screen and (min-width: 769px) {
	#main_contents {
		width: 55%;
		margin-left: 45%;
	}	
}

#main_contents .info {
	border: 1px solid #000;
	border-radius: 25px;
	width: 90%;
	margin: 15% auto;
	box-sizing: border-box;
	padding: 10% 5%;
	text-align: center;
	background: #FFF;
}
#main_contents .info .icon {
	width: 40%;
	margin: 0 auto;
}
#main_contents .info .tit {
	background: #000;
	display: inline-block;
	border-radius: 40px;
	font-size: 20px;
	text-align: center;
	color: #FFF;
	box-sizing: border-box;
	padding: 0px 25px;
	margin: 5% auto;
	font-family: "Fira Sans Condensed", sans-serif;
	font-weight: 500;
}
#main_contents .info .box {
	position: relative;
	margin: 5% auto 15%;
}
#main_contents .info .box h3 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 600;
}
#main_contents .info .box.release p {
	width: 86%;
	margin: 15px auto;
	font-size: 16px;
	text-align: left;
}
#main_contents .info .box.release p .bold {
	font-weight: 400;
	font-weight: 500;
	padding-bottom: 5px;
	margin-right: 15px;
	width: 70px;
	border-bottom: 1px solid #000;
	display: inline-block;
	text-align: center;
}
#main_contents .info .box.shop p {
	font-size: 12px;
	text-align: center;
	line-height: 2;
}
#main_contents .info .box.st p {
	font-size: 16px;
	line-height: 2;
}
#main_contents .info .box.st p .small {
	font-size: 10px;
	display: block;
}
@media only screen and (min-width: 769px) {
	#main_contents .info {
		border: 1px solid #000;
		border-radius: 25px;
		width: 60%;
		margin: 0% auto;
		box-sizing: border-box;
		padding: 10% 5%;
		text-align: center;
		background: #FFF;
	}	
	#main_contents .info .box.release p {
		width: 60%;
		min-width: 300px;
	}
}




#main_contents .item {
	position: relative;
	width: 90%;
	margin: 15% auto;
}
#main_contents .item ul {
	margin: 0;
	padding: 0;
/*	display: grid;
	grid-template-columns: 1fr 1fr;*/
}
#main_contents .item li {
	list-style: none;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 25px;
	background: #ff88c1;
	margin-bottom: 10%;
	line-height: 1.4;
}
#main_contents .item li .img {
	line-height: 0;
}
#main_contents .item li .data {
	margin: 5% auto;
	text-align: center;
	color: #FFF;
}
#main_contents .item li .data .name {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 5px;
	padding: 0;
}
#main_contents .item li .data .price {
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	padding: 0;
}
#main_contents .item li .data .price span {
	font-size: 12px;
}
#main_contents .item li .data a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 2px solid #FFF;
	margin: 15px auto 0;
	color: #FFF;
	text-decoration: none;
}
@media only screen and (min-width: 769px) {
	#main_contents .item {
		position: relative;
		width: 80%;
	}
	#main_contents .item ul {
		margin: 0;
		padding: 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 25px;
	}
	#main_contents .item li {
		list-style: none;
		box-sizing: border-box;
		overflow: hidden;
		border-radius: 25px;
		background: #ff88c1;
		margin-bottom: 25px;
		line-height: 1.4;
	}

	
}



.switch2,.switch3 {
	position: relative;
}

.switch2 img {
  position: absolute;
  width: 100%;
	top: 0;
	left: 0;
  opacity: 0;
	animation: fade2 2.4s infinite;
}

.switch2 img:nth-of-type(1) {
	position: relative;
}

.switch2 img:nth-of-type(2) {
	animation-delay: 1.2s;
}
.switch3 img {
  position: absolute;
  width: 100%;
	top: 0;
	left: 0;
  opacity: 0;
	animation: fade3 3.6s infinite;
}

.switch3 img:nth-of-type(1) {
	position: relative;
}

.switch3 img:nth-of-type(2) {
	animation-delay: 1.2s;
}
.switch3 img:nth-of-type(3) {
	animation-delay: 2.4s;
}

@keyframes fade2 {
	0% {
	  opacity: 0;
	}
	0.5% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	55% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fade3 {
	0% {
	  opacity: 0;
	}
	0.5% {
		opacity: 1;
	}
	33% {
		opacity: 1;
	}
	36% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}

	
}
#main_contents .novelty {
	border: 1px solid #000;
	border-radius: 25px;
	width: 90%;
	margin: 15% auto;
	box-sizing: border-box;
	padding: 10% 5%;
	text-align: center;
	background: #FFF;
}
#main_contents .novelty h2 {
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-family: "Fira Sans Condensed", sans-serif;
	font-weight: 600;
}
#main_contents .novelty h2 span {
	display: block;
	font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
#main_contents .novelty .icon {
	width: 70%;
	margin: 10% auto;
}
#main_contents .novelty .tit {
	background: #000;
	display: block;
	border-radius: 40px;
	text-align: center;
	color: #FFF;
	box-sizing: border-box;
	padding: 5px 25px;
	margin: 5% auto;
}
#main_contents .novelty .time p {
	font-size: 16px;
}
#main_contents .novelty .time p.att {
	font-size: 10px;
}
@media only screen and (min-width: 769px) {
	#main_contents .novelty {
		width: 60%;
	}	
	
}


#main_contents .foot {
	margin: 10% auto;
	padding: 10% 0;
	background: #FFF;
}
#main_contents .foot .icon {
	width: 50%;
	margin: 0 auto;
}
#main_contents .foot .all a {
	background: #000;
	color: #FFF;
	text-align: center;
	border-radius: 100px;
	font-size: 24px;
	font-weight: 600;
	display: block;
	width: 80%;
	margin: 10% auto;
	line-height: 1.4;
	padding: 15px 0;
	text-decoration: none;
}
#main_contents .foot .all a span {
	font-size: 16px;
	display: block;
}
#main_contents .sns {
	width: 70%;
	margin: 20% auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#main_contents .sns li {
	margin: 0 auto 25px;
	list-style: none;
	text-align: center;
}
#main_contents .sns li:nth-of-type(1),#main_contents .sns li:nth-of-type(2) {
	width: 50%;
}
#main_contents .sns li img{
	width: 50px;
	margin: 0 auto;
}
#main_contents .sns li span {
	display: block;
}
#main_contents .sns li a {
	color: #000;
	font-size: 11px;
	text-align: center;
}
#main_contents .foot .logo {
	width: 80%;
	margin: 10% auto;
}
#main_contents .foot .copyright {
	text-align: center;
	font-size: 12px;
}
@media only screen and (min-width: 769px) {
	#main_contents .foot {
		margin: 10% auto 0;
		padding: 10% 0 ;
	}
	#main_contents .foot .inner {
		width: 90%;
		margin: 0 auto
	}
	#main_contents .foot .icon {
		width: 40%;
		margin: 0 auto;
	}
	#main_contents .foot .all a {
		width: 60%;
	}
	#main_contents .sns {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}
	#main_contents .sns li, #main_contents .sns li:nth-of-type(1),#main_contents .sns li:nth-of-type(2) {
		width: 20%;
	}
	#main_contents .foot .logo {
		width: 50%;
		margin: 10% auto;
	}
}


.anim {
	opacity: 0;
	transform: translate(0,20px);
	transition: 1s all 0s ease;
}
.anim.ac {
	opacity: 1;
	transform: translate(0)
}