h1{
	font-weight:normal;
}
.box_list{
	float:none;
}
section{
	padding-bottom:2em;
}
.btn_style{
	padding: .1em .5em;
	margin:0 0 10px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    background-color: #333;
    box-sizing: border-box;
}
.btn_style:hover{
	color:#eee;
	background-color:#555;
}
.btn_style.coming{
	background-color:#888;
}
ol {
    margin: 0;
    padding-left: 1.4em;
}
ul{
	padding-left:1.3em;
}
.learning_list {
    padding-bottom: 12%;
    border-top: 3px dotted #000;
}
h2 {
    margin: 0 auto 2em;
    background-color: #000;
    color: #fff;
    width: 5.5em;
    height: 5.5em;
    border-radius: 100px;
    position: relative;
    padding-top: 2em;
    box-sizing: border-box;
    line-height: 1.3;
    text-align: center;
    font-weight: bold;
}
span.h2_num {
    display: block;
    position: absolute;
    top: 1.2em;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    color: #000;
    font-size: .8em;
}
h2:before {
    content: "";
    width: 1.2em;
    height: 1.2em;
    display: block;
    background-color: #FFF;
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 100px;
}
h3 {
    margin: 0;
    padding-right:.3em;
    width: fit-content;
    background-color: #fff;
    transform: translateY(-50%);
    color:#000;
}
.wrap_listitem {
    display: flex;
    justify-content: space-between;
}
.wrap_listitem .box_txt {
    width: 36%;
}
.wrap_listitem .box_txt p{
    padding-bottom:.5em;
}
.wrap_listitem .box_fig {
    width: 60%;
    position: relative;
}
.wrap_listitem .box_fig.fig_video:before {
    content: "";
    width: 60px;
    height: 40px;
    background-color: #e30404;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 7px;
}
.wrap_listitem .box_fig.fig_video:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.wrap_listitem .box_fig.video:before {
    content: "";
    display: block;
    padding-top: 56%;
}
.wrap_listitem .box_fig.video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width:600px){
	h2 {
	margin-bottom: 1em;
	}
	.learning_list {
		border: none;
	}
	h3 {
		transform: unset;
		padding: 0 0 .3em;
		margin-bottom: 1em;
		border-bottom: 3px dotted #000;
		width: 100%;
	}
	.wrap_listitem {
		flex-direction: column-reverse;
	}
	.wrap_listitem .box_txt {
		width: 100%;
	}
	.btn_style {
		padding: .5em;
	}
	.wrap_listitem .box_fig {
		width: 100%;
		margin-bottom: .5em;
	}

}