@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	display: flex;
	justify-content:center;
	
}


.dora img{
	width: 350px;
	height: 350px;

}

h2{
	border-top: 5px #b4a373 solid;
	border-bottom: 5px #b4a373 solid;
	background-color: #dd2e9d;
	background-position: 100% 100%;
	text-align: center;
	font-size:60px;
	color: #bc8e10;
	padding-top: 10px;
	font-family: 'Sawarabi Mincho', sans-serif;
	 text-shadow:
        1px 1px 0 #d00,
        2px 2px 0 #d00,
        3px 3px 0 #fff,
        4px 4px 0 #d00,
        5px 5px 0 #000;
}

p{
	color: #fff;
	
}
h3{
	font-size: 30px;
	color: #daa520;
}

.wrapper{
	position: relative;
	display: flex;
	text-align: center;
	font-family: 'Sawarabi Mincho', sans-serif;
	flex-wrap: wrap;
	max-width: 100%;
	background: url(../image/bg-01.png);
}

.wrapper .dora{
	position: relative;
	width: 350px;
	height: 350px;
	margin-left: 53px;
	
}
.wrapper .dora .imgBx,
.wrapper .dora .contentBx
	{
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	height: 100%;
	padding-bottom: 5px;
}
.wrapper .dora .contentBx::before
{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: #000;
	transform: scaleX(0);
	transition: transform 0s ease-in-out;
	transform-origin: left;
	transition-delay: 0s;

}

.wrapper .dora:hover .contentBx
{
	display:flex;
	justify-content:center;
	align-items: center;
	transition-delay: 0s;
	background: #000;
	z-index:1;
}

.wrapper .dora .contentBx .content
	{
	position: relative;
	padding: 30px;
	z-index: -1;
	transition: 0s;
	transform: traslateY(-300px);
	transition-delay: 0s;
}
.wrapper .dora .contentBx .contentBx .content
{
	transform: traslateX(0px);
	transition-delay: 0.5s;
	
}
.wrapper .dora .contentBx .contentBx .content h3
{
	font-size:1.3em;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.wrapper .dora .contentBx .contentBx .content p
{
	font-size: 1em;
	line-height: 1.4em;
	font-weight: 300;

}

/*レスポンシブデザイン*/


@media screen and (max-width: 540px){
.dora,.imgBx
{
		max-width:100%;
		height: auto;
	}
}

@media screen and (min-width:768px)(max-width: 1024px){
	.imgBx{
		max-width:100%;
		height: auto;
	}
	
}