/* page_03 */

.page_03{
	background-image: url("../image/page_03.jpg");
}

/* 2回目以降 */

.page_03_b{
	background-image: url("../image/page_03.jpg");
	height: 100vh;
	width: 100vw;
	position: absolute;
	animation: p03_page_open 1s; 
	transform-origin: left;
	overflow: hidden;
}

@keyframes p03_page_open {
	0% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleX(1);
	}
}

.p03_wrapper{
	height: 45vh;
	width: 100vw;
	position: absolute;
	inset: 0;
	margin: auto;

	display:flex;
	flex-flow: column;
	align-items: center;
	/*justify-content: center;*/

	overflow: scroll;
}

.p03_card{
	height: 200px;
	width: 80vw;
	margin: 30px;
	display: flex;
	flex-shrink: 0;
	align-items: center;

	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.p03_txt{
	display: inline-block;
	padding: 0 50px;
	line-height: 2.5em;
}

.p03_txt:first-child{
	margin-left: 10px;
	border-right: 3px solid #fff;
}

.p03_mark_01,.p03_mark_02{
	position: absolute;
} 

.p03_mark_01{
	box-sizing: border-box;
	width: 30px;
	height: 20px;
	border: 20px solid transparent;
	border-left: 20px solid #fff;
	right: 30px;
}

.p03_mark_02{
 	width: 30px;
	height: 15px;
	border-left: 5px solid #fff;
	border-bottom: 5px solid #fff;
	transform: rotate(-45deg);
	right: 45px;
}

.p03_page_none{
	animation: p03_page_none 1s;
	transform-origin: left;
	transform: scaleX(0);
}

@keyframes p03_page_none {
	0% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(0);
	}
}