@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');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-all;
}

body{
	font-family: 'Noto Sans JP', sans-serif;
}

a{
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}


.wrapper{
	max-width: 1120px;
	width: 98%;
	margin-left: auto;
	margin-right: auto;
}

.sp{
	display: none;
}


/*トップビュー*/

.top_visual{
    width :100%;
	margin-bottom: 120px;
}

.top_visual img{
    width: 100%;
}


/*メインビジュアル*/

#main_visual{
	background-image: url("../images/main_visual.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding-top: 150px;
	padding-bottom: 150px;
	margin-bottom: 100px;
	width: 100%;
}

#main_visual p{
	text-align: center;
	background: #ebd4a1; /* fallback for old browsers */
	background: -webkit-linear-gradient(right, #ebd4a1, #c1a46f);
        background: linear-gradient(to right, #ebd4a1, #c1a46f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
	font-size: 45px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	margin-bottom: 50px;
}

#main_visual img{
	width: 320px;
}


/*メインビジュアル下文言*/

.mine_txt{
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.1rem;
    color: #666;
	margin-bottom: 150px;
}



/*エピソード部分*/

#blue_bg{
	background-image: url("../images/blue_bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
	margin-bottom: 100px;
}

.episode_box{
	margin-bottom: 100px;
	width: 100%;
}

.episode_box:last-child{
	margin-bottom: 0px;
}

.episode_top{
	text-align: center;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -10px;
}

.episode_main{
	background-color: #fff;
	padding: 50px 80px;
	border-radius: 20px;
	position: relative;
	width: 100%;
}

.episode_main::before{
	content: "";
	position: absolute;
	background-image: url("../images/episode_deco_top.svg");
	background-repeat: no-repeat;
	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: bottom;
	bottom: 1%;
	left: 1%;
	width: 98%;
	height: calc(100vw / 10);
}

.episode_name{
	color: #003989;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 70px;
	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% - 200px);
	width: 400px;
	height: 12px;
}

.episode_txt{
	text-align: left;
	line-height: 2.2;
	letter-spacing: 0.1rem;
	margin-bottom: 50px;
}

.episode_logo{
	width: 200px;
	margin-left: auto;
	margin-right: auto;
}