
html{
	width:100%;
	height:100%;
	margin:0;
	font-family: sans-serif;
}
body {
	width:100%;
	height:100%;
	background-color: #2b2b2b;
	margin:0;

}

.parent1 {
	height:80%;
	width:100%;
display:block;
}


.content{
	width:100%;
	display: flex;
}


.explode-circle {
	animation: explode 1s forwards;
}

.desplode-circle{
	animation: desplode 9.0s forwards;
}

@keyframes explode {
	0% {
		width: 0px;
		height: 0px;
		margin-left: 0px;
		margin-top: 0px;
		background-color: rgba(42, 53, 80,0.2);
	}
	100% {
		width: 150px;
		height: 150px;
		margin-left: -75px;
		margin-top: -75px;
		background-color: rgba(20, 180, 87,0.8);
	}
}

@keyframes desplode {
	0% {
		width: 150px;
		height: 150px;
		margin-left: -75px;
		margin-top: -75px;
		background-color: rgba(20, 180, 87,0.8);
	}
	100% {
		width: 0px;
		height: 0px;
		margin-left: 0px;
		margin-top: 0px;
		background-color: rgba(129, 80, 108,0.6);
	}
}


.squ_container{
	width: 70px;
	height: 70px;
	margin:1px;
	border-radius:15px;

}

.squ_su{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	border-radius:15px;

}

.su_squ_circle{
	border-radius: 100px;
	position: absolute;
	pointer-events: none;
	/*animation-timing-function: ease-in-out; */
}

.squ_su_inner{
	width: 70px;
	height: 70px;
	transition: 2000ms;
	z-index: 100000;
	padding-top: 4px;
	padding-bottom: 50px;
	padding-right: 50px;
	padding-left: 20px;
}

.t_box{
	height:13%;
	width:100%;
	z-index:1;
}

.t_text{
	height:100%;
	width:100%;
	margin:0;
	color:white;
	font-weight:bold;
	line-height: 100%;
	font-size: min(10vh, 10vw);
    display: flex;
    align-items: center;
}

.about{
	display:none;
	padding:40px;
}

.contact{
	display:none;
	padding:40px;
}

.products{
	display:none;
	padding:40px;
}


.text_slidein{
	width:85vw;
	font-size: 2.0vh;
	color:white;
	animation: SlideIn 0.6s ;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
	0% {
		opacity: 0;/*初期状態では透明に*/
		transform: translateX(6vw);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.bann{
	width:153px;
}

.product_tit{
	font-weight: 100; 
	font-size:2.5vh;
	height:5%;
	border-bottom: solid 1px #555;
	color:white;
	margin:6px;
	display:inline-block
}

.product_tit_sub{
	font-weight: 100; 
	font-size:1.5vh;
	height:5%;
	text-decoration: underline;
	text-decoration-color: #555;
	color:white;
	margin:5px;
	text-indent: 1em;
}

.product_flexbox{
	display:flex; 
	flex-wrap: wrap;
	width: 100%;
	height:auto;
	padding:10px;
}
.product_item{
	max-width:300px;
	width:30vw;
	background:white;
	text-align:center;
	padding:15px 15px;
	margin:1vw 5vw;
	border:1px solid #ddd;
	animation:SlideIn 0.6s ;
	border-radius:15px;
}

.product_img{
	width:auto;
	height:auto;
	max-width:100%;
	max-height:100%;
}

.product_store_img{
		width:50%;
		margin: auto;
	}

.product_store_img_2{
	margin: auto;
	width:40%;
}

.product_store_img_double{
	display: flex;
	margin: 0 auto;
	}

.product_store_img_double_a{
	width:90%;
}

.product_store_img_double_i{
	width:75%;
}
	
.product_text{
	width:100%;
	margin:0;
}