@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap');

@media screen and (max-width: 999px){
   
.pc{
    display: none;
}

.sp{
    display: block;
}
	
.top_visual{
	margin-bottom: 70px;
	width: 100%;
    height: calc(100vw / 1.4);
}



	
/*メインビジュアル*/

#main_visual{
	background-image: url("../images/main_visual_sp.webp");
	padding-top: 100px;
	padding-bottom: 100px;
	margin-bottom: 70px;
}

#main_visual p{
	font-size: 24px;
	margin-bottom: 30px;
}

#main_visual img{
	width: 180px;
}


/*メインビジュアル下文言*/

.mine_txt{
    font-size: 16px;
	margin-bottom: 70px;
}



/*エピソード部分*/

#blue_bg{
	background-image: url("../images/blue_bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
	margin-bottom: 70px;
}

.episode_box{
	margin-bottom: 70px;
}

.episode_box:last-child{
	margin-bottom: 0px;
}

.episode_top{
	text-align: center;
	width: 80%;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -5px;
}

.episode_main{
	padding: 30px;
	border-radius: 10px;
	position: relative;
}

.episode_main::before{
	content: "";
	position: absolute;
	background-image: url("../images/episode_deco_top.svg");
	background-repeat: no-repeat;
	background-position: center;
	top: 1%;
	left: 1%;
	width: 98%;
	height: calc(100vw / 10);
}

.episode_main::after{
	content: "";
	position: absolute;
	background-image: url("../images/episode_deco_bottom.svg");
	background-repeat: no-repeat;
	background-position: center;
	bottom: 1%;
	left: 1%;
	width: 98%;
	height: calc(100vw / 10);
}

.episode_name{
	font-size: 21px;
	margin-bottom: 40px;
	position: relative;
}

.episode_name::after{
	content: "";
	position: absolute;
	background-image: url("../images/episode_line.svg");
	background-repeat: no-repeat;
	background-position: center;
	bottom: -25px;
	left: calc(50% - 150px);
	width: 300px;
	height: 8px;
}

.episode_txt{
	margin-bottom: 30px;
}

.episode_logo{
	width: 150px;
}
    
}  

 