/*============================
body
============================*/
/*
html {
	background-color: #000;
}

body {
	border-left: 0.15rem solid #000;
	border-right: 0.15rem solid #000;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	body {
		border-left: 0.07rem solid #000;
		border-right: 0.07rem solid #000;
		background-color: #E8EAE5;
	}
}
*/

/*============================
バナー
============================*/
.floating_bnr_wrap {
	position: fixed;
	right: 0;
	top: 45%;
	transform: translateY(-50%);
	z-index: 101;
}

@media screen and (max-width: 599px) {
	.floating_bnr_wrap {
		right: auto;
		left: 0.10rem;
		top: auto;
		bottom: 0.20rem;
		transform: none;
		z-index: 101;
		width: calc(100% - 0.20rem);
	}
}

@media screen and (max-width: 599px) {
	.floating_bnr_wrap .list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}

.floating_bnr_wrap .list .btn {
	padding: 0.10rem 0;
}

@media screen and (max-width: 599px) {
	.floating_bnr_wrap .list .btn {
		padding: 0;
		width: 49.9%;
	}
}

.floating_bnr_wrap .list .btn a {
	width: 0.85rem;
	display: block;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-indent: -9999px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	left: 0.10rem;
	position: relative;
	height: 2.20rem;
}

@media screen and (max-width: 599px) {
	.floating_bnr_wrap .list .btn a {
		width:100%;
		display: block;
		border-radius: 0;
		left: auto;
		position: relative;
		height: 0.50rem;
		box-shadow: 0 0 0 0;
	}
}

.floating_bnr_wrap .list .btn a:hover {
	left: 0;
}

.floating_bnr_wrap .list .btn.for-kogi a {
	background-image: url(../img/floating_btn_02.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

@media screen and (max-width: 599px) {
	.floating_bnr_wrap .list .btn.for-kogi a {
		background-image: url(../img/floating_btn_02_sp.svg);
		background-position: center center;
		background-size: 120% auto;
		border-top-right-radius: 0.05rem;
		border-bottom-right-radius: 0.05rem;
	}
}

.floating_bnr_wrap .list .btn.rikaicheck a {
	background-image: url(../img/floating_btn_01.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

@media screen and (max-width: 599px) {
	.floating_bnr_wrap .list .btn.rikaicheck a {
		background-image: url(../img/floating_btn_01_sp.svg);
		background-position: center center;
		background-size: 120% auto;
		border-top-left-radius: 0.05rem;
		border-bottom-left-radius: 0.05rem;
	}
}

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	display: flex;
	justify-content: space-between;
	background-color: #FFF;
}

@media screen and (max-width: 599px) {
	header {
		position: fixed;
		z-index: 100;
		left: 0;
		top: 0;
		width: 100%;
	}
}

/* ヘッダーが上に消える */
header.hide {
	/*	transform: translateY(-1.50rem);*/
}

/* スクロールで表示された状態 */
header.scr {
	/*
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
*/
}

header .logo {
	width: 2.25rem;
	padding: 0.15rem 0;
	padding-left: 4.00vw;
}

@media screen and (max-width: 599px) {
	header .logo {
		width: 1.50rem;
		padding: 0.13rem 0;
		line-height: 0;
		margin-left: 0.20rem;
	}
}

@media screen and (max-width: 599px) {
	header .glo_navi {
		position: absolute;
		width: 100%;
		top: 0.6rem;
		left: 0;
		background-color: rgba(255, 255, 255, 0.8);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		z-index: 1;
		display: none;
		height: 100vh
	}
}

header .glo_navi .list {
	display: flex;
	flex-wrap: wrap;
	padding-top: 0.35rem;
	padding-right: 0.3rem;
}

@media screen and (max-width: 599px) {
	header .glo_navi .list {
		display: block;
		padding: 0;
		padding-top: 1rem;
/*		border-top: 1px solid #9F9F9F;*/
	}
}

@media screen and (max-width: 599px) {
	header .glo_navi .list .link {
/*		border-bottom: 1px solid #9F9F9F;*/
		padding: 0.20rem 0;
		text-align: center;
	}
}

header .glo_navi .list .link img {
	height: 0.12rem;
	display: block;
}

@media screen and (max-width: 599px) {
	header .glo_navi .list .link img {
		height: 0.10rem;
	}
}

header .glo_navi .link a {
	color: #000;
	font-size: 0.16rem;
	text-decoration: none;
	display: inline-block;
	position: relative;
	margin: 0 20px;
}
@media screen and (max-width: 599px) {
	header .glo_navi .link a {
		font-size: 0.19rem;
	}
}


header .glo_navi .link a::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #044d8e;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
header .glo_navi .link a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/*
@media screen and (max-width: 599px) {
	header .glo_navi .link a {
		display: block;
		font-size: 0.10rem;
		padding: 0.20rem;
		border-right: 0;
		position: relative;
	}

	header .glo_navi .link a::after {
		content: "";
		width: 0.14rem;
		height: 0.18rem;
		background-image: url(../img/sp_menu_arrow.svg);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 0.10rem;
		transform: translateY(-50%);
	}
}

header .glo_navi .link a:hover {
	opacity: 0.7;
}
*/



/*============================
フッター
============================*/
footer {
	padding: 0.8rem 0;
	background-color: #044D8E;
}

@media screen and (max-width: 599px) {
	footer {
		padding: 0.25rem 0;
	}
}
.footer_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 599px) {
}

footer .logo {
	width: 2.30rem;
	padding-left: 4.00vw;
}

@media screen and (max-width: 599px) {
	footer .logo {
		width: 2rem;
		padding-left: 0;
		margin: auto;
		margin-bottom: 0.30rem;
	}
}

.footer_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer_nav .footer_nav_left {
	padding-right: 0.50rem;
}

.footer_nav .footer_nav_right {
	width: 40%;
}

.footer_nav .list {
}

.footer_nav .footer_nav_left .list  .item {
	margin-bottom: 0.10rem;
}



.footer_nav .list  .item a {
	color: #fff;
	font-size: 0.16rem;
	text-decoration: none;
	line-height: 1.65;
}

.footer_nav .list  .item a:hover {
	opacity: 0.7;
}

.footer_nav .list  .item .list2 {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0.20rem;
}

.footer_nav .list  .item .list2 .item2{
	width: 48%;
}

.footer_nav .list  .item .list2 .item2 a{
	font-size: 0.14rem;
	padding-bottom: 0.10rem;
	display: block;
}

.copyright {
	text-align: center;
	padding: 0.20rem 0;
	font-size: 0.12rem;
}

/*============================
共通
============================*/
.sec_title_wrap {
	text-align: center;
}

.sec_title {
	font-size: 0.36rem;
	font-weight: bold;
	text-align: center;
	margin: auto;
	padding: 0.6rem 0;
	position: relative;
}
@media screen and (max-width: 599px) {
	.sec_title {
		font-size: 0.28rem;
		padding: 0.4rem 0;
	}
}

.sec_title::before {
	content: '';
	width: 0.50rem;
	height: 0.03rem;
	background: #044D8E;
	display: block;
	position: absolute;
	top: 1.20rem;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
	.sec_title::before {
		top:0.8rem;
	}
}


.btn_common a {
	display: inline-block;
	font-size: 0.16rem;
	font-weight: 600;
	background: #fff;
	text-decoration: none;
	color: #044D8E;
	padding: 0.20rem 0.50rem;
	border: 1px solid #044D8E;
	border-radius: 0.50rem;
	min-width: 1.00rem;
	position: relative;
	transition: 0.3s all;
	text-align: center;
}
@media screen and (max-width: 599px) {
	.btn_common a {
		display: block;
		font-size: 0.14rem;
		color: #044D8E;
		padding: 0.20rem 0.20rem;
	}
}


.btn_common a::before {
	content: '';
	background: url(../img/btn_arrow_blue.svg) no-repeat center;
	background-size: cover;
	width: 0.07rem;
	height: 0.14rem;
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s all;
}

.btn_common a:hover {
	background: #044D8E;
	color: #fff;
}

.btn_common a:hover::before {
	background-image: url(../img/btn_arrow_wh.svg);
	right: 0.13rem;
}


/*============================
MV
============================*/
#top_mv {
	background: url(../img/top_mv.jpg) no-repeat center;
	background-size: cover;
	padding: 1.00rem 0;
}
@media screen and (max-width: 599px) {
}

#top_mv .title_box {
	
}


#top_mv .title_box .lead {
	font-size: 0.22rem;
	font-weight: bold;
	color: #fff;
	padding-bottom: 0.15rem;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
@media screen and (max-width: 599px) {
	#top_mv .title_box .lead {
		font-size: 0.18rem;
	}
}

#top_mv .title_box .title {
	font-size: 0.40rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
@media screen and (max-width: 599px) {
	#top_mv .title_box .title {
		font-size: 0.28rem;
		line-height: 1.3;
	}
}



/*============================
リード
============================*/
#top_lead {
	background: linear-gradient(180deg, rgba(4, 77, 142, 0.3) 0%, rgba(4, 77, 142, 0.3) 70%, #fff 30%, #fff 100%);
}

#top_lead .lead_text {
	font-size: 0.16rem;
	line-height: 2;
	text-align: center;
	margin-bottom: 0.7rem;
}
@media screen and (max-width: 599px) {
	#top_lead .lead_text {
		text-align: left;
		margin-bottom: 0.5rem;
	}
}


#top_lead .lead_movie_wrap {
	max-width: 80%;
	margin: auto;
}
@media screen and (max-width: 599px) {
	#top_lead .lead_movie_wrap {
		max-width: 100%;
	}
}


#top_lead .lead_movie_wrap .lead_movie {
	position: relative;
	width:100%; /* 横幅は100%にしておく(ここを変えたい場合は実装コード2の方法を確認してください) */
	height:0; /* 高さは0にしておく(padding-topで高さを指定するため) */
	padding-top: 56.25%; /* 高さを指定(16:9) */
}

#top_lead .lead_movie_wrap .lead_movie iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	box-sizing: border-box;
	padding: 0.20rem;
	border-radius: 0.10rem;
}
@media screen and (max-width: 599px) {
	#top_lead .lead_movie_wrap .lead_movie iframe{
		padding: 0.15rem;
	}
}



/*============================
勉強の流れ
============================*/
/*タイトル*/
#top_flow .flow_title {
	font-size: 0.22rem;
	font-weight: bold;
	line-height: 1.3;
}
@media screen and (max-width: 599px) {
	#top_flow .flow_title {
		font-size: 0.18rem;
	}
}

.top_flow_box {
	display: flex;
	flex-wrap: wrap;
	max-width: 8.00rem;
	width: 100%;
	margin: auto;
	border-radius: 0.10rem;
	border: 2px solid #044D8E;
	background: #044D8E;
	align-items: center;
	box-shadow: 0px 7px 16px -6px rgba(0,0,0,0.6);
	margin-bottom: 1.00rem;
	position: relative;
}
@media screen and (max-width: 599px) {
	.top_flow_box {
		background: initial;
		border: none;
	}
}


.top_flow_box::after {
	content: '';
	width: 1.00rem;
	height: 0.40rem;
	background: url(../img/top_flow_arrow_bottom.svg) no-repeat center ;
	background-size: contain;
	position: absolute;
	bottom: -0.70rem;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
}


.top_flow_box:nth-child(2)::after {
	content: none;
}

.top_flow_box .title_box{
	width: 30%;
	color: #fff;
	padding: 0.50rem 0.30rem;
	box-sizing: border-box;
	border-radius: 0.10rem 0 0 0.10rem;
}
@media screen and (max-width: 599px) {
	.top_flow_box .title_box{
		width: 100%;
		padding: 0.20rem;
		text-align: center;
		border-radius: 0.10rem 0.10rem 0 0;
		box-sizing: border-box;
		background: #044d8e;
	}
}

.top_flow_box .text_box{
	width: 70%;
	box-sizing: border-box;
	padding: 0.30rem;
	background: #fff;
	border-radius: 0  0.10rem 0.10rem 0 ;
}
@media screen and (max-width: 599px) {
	.top_flow_box .text_box{
		width: 100%;
		padding: 0.30rem;
		border-radius: 0  ;
	}
}


.top_flow_box .text_box .list {
}

.top_flow_box .text_box .list .item{
	font-size: 0.16rem;
	line-height: 1.65;
	padding-left: 0.16rem;
	text-indent: -0.16rem;
}


.top_flow_box .btn_common {
	margin-top: 0.20rem;
}

/*ストラテジー*/
.top_flow_kougi {
	border: 2px solid #044D8E;
	border-radius: 0.10rem;
	box-sizing: border-box;
	padding: 0.50rem 0.30rem;
	box-shadow: 0px 7px 16px -6px rgba(0,0,0,0.6);
	position: relative;
	margin-bottom: 1rem;
}


.top_flow_kougi::after {
	content: '';
	width: 1.00rem;
	height: 0.40rem;
	background: url(../img/top_flow_arrow_bottom.svg) no-repeat center ;
	background-size: contain;
	position: absolute;
	bottom: -0.70rem;
	left: 50%;
	transform: translateX(-50%);
}


.top_flow_kougi .title_box {
	text-align: center;
	margin-bottom: 0.30rem;
}

.top_flow_kougi .title_box  span {
	color: #FF0000;
	font-size: 0.16rem;
	font-weight: bold;
	display: block;
	padding-top: 0.10rem;
}

.top_flow_kougi  .list  {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 0.20rem;
}

.top_flow_kougi .list .item {
	width: 21%;
	box-sizing: border-box;
	border-radius: 0.10rem;
	padding: 0.30rem 0.20rem 0.4rem;
	color: #fff;
	box-shadow: 0px 7px 16px -6px rgba(0,0,0,0.6);
	position: relative;
}
@media screen and (max-width: 599px) {
	.top_flow_kougi .list .item {
		width: 100%;
		padding: 0.30rem 0.20rem 0.4rem;
		color: #fff;
		box-shadow: 0px 7px 16px -6px rgba(0,0,0,0.6);
		position: relative;
		margin-bottom: 0.80rem;
	}
}


.top_flow_kougi  .list  .item::after {
	content: '';
	width: 0.2rem;
	height: 0.50rem;
	background: url(../img/top_flow_arrow_right.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -0.35rem;
}
@media screen and (max-width: 599px) {
	.top_flow_kougi  .list  .item::after {
		background: url(../img/top_flow_arrow_right.svg) no-repeat center;
		background-size: contain;
		position: absolute;
		top: auto;
		bottom: -0.50rem;
		left: 50%;
		transform: translate(-50%,0) rotate(90deg);
	}
}


.top_flow_kougi  .list  .item:nth-child(1) {
	background: #0259A3;
}

.top_flow_kougi  .list  .item:nth-child(1)::before {
	content: '';
	width: 0.9rem;
	height: 1.00rem;
	background: url(../img/top_flow_icon_01.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: 0.30rem;
	right: 0.30rem;
}

.top_flow_kougi  .list  .item:nth-child(2) {
	background: #0E9F80;
}

.top_flow_kougi  .list  .item:nth-child(2)::before {
	content: '';
	width: 1.25rem;
	height: 0.75rem;
	background: url(../img/top_flow_icon_02.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: 0.10rem;
	left: 0.10rem;
}

.top_flow_kougi  .list  .item:nth-child(3) {
	background: #8E9A20;
}

.top_flow_kougi  .list  .item:nth-child(3)::before {
	content: '';
	width: 0.95rem;
	height: 1.00rem;
	background: url(../img/top_flow_icon_03.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: 0.20rem;
	right: 0.10rem;
}

.top_flow_kougi  .list  .item:nth-child(4) {
	background: #AD791F;
}
@media screen and (max-width: 599px) {
	.top_flow_kougi  .list  .item:nth-child(4) {
		margin-bottom: 0.50rem;
	}
}


.top_flow_kougi  .list  .item:nth-child(4)::before {
	content: '';
	width: 0.78rem;
	height: 0.97rem;
	background: url(../img/top_flow_icon_04.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: 0.30rem;
	right: 0.20rem;
}

.top_flow_kougi  .list  .item:nth-child(4)::after {
	content: none;
}


.top_flow_kougi  .list  .item  .step {
	width: 0.9rem;
	margin: auto;
}
@media screen and (max-width: 599px) {
	.top_flow_kougi  .list  .item  .step {
		width: 0.7rem;
		margin: auto;
		margin-top: -0.6rem;
	}
}


.top_flow_kougi  .list  .item  span {
	font-size: 0.13rem;
	font-weight: bold;
	display: block;
	text-align: center;
	padding: 0.20rem 0;
}

.top_flow_kougi  .list  .item  p {
	font-size: 0.15rem;
	line-height: 1.65;
}

.top_flow_kougi  .btn_common {
	text-align: center;
}

/*コース終了後*/
.top_flow_box.top_flow_box_after::after {
	content: none;
}

/*============================
下層共通
============================*/
/*MV*/
#lower_mv {
	position: relative;
	background: #044D8E;
	padding: 1.00rem 0;
}
@media screen and (max-width: 599px) {
	#lower_mv {
		padding: 0.7rem 0;
	}
}


#lower_mv::after {
	content: '';
	position: absolute;
	width: 3.7rem;
	height: 3rem;
	background: url(../img/lower_mv_text.svg) no-repeat center;
	background-size: cover;
	right: 10%;
	top: 0;
}


#lower_mv .title_box .title {
	font-size: 0.40rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
@media screen and (max-width: 599px) {
	#lower_mv .title_box {
		padding-top: 0.40rem;
	}

	#lower_mv .title_box .title {
		font-size: 0.25rem;
		line-height: 1.3;
	}
}


#lower_mv .title_box .lead {
	font-size: 0.20rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 599px) {
	#lower_mv .title_box .lead {
		font-size: 0.16rem;
	}
}


/*動画*/
/* 動画全体の横幅を指定するためのdiv */
.video-wrap {
	max-width: 80%; /* ここに動画の横幅を指定 */
	margin: auto;
}

/* 動画を囲うdiv */
.video {
	position: relative;
	width:100%; /* 横幅は100%で固定 */
	height:0; /* 高さは0にしておく(padding-topで高さを指定するため) */
	padding-top: 56.25%; /* 高さを指定(16:9) */
}

/* YouTube埋め込み用のiframe */
.video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*資料ダウンロード*/
.siryou_wrap {
	width: 100%;
	margin-top: 1rem;
}
@media screen and (max-width: 599px) {
	.siryou_wrap {
		margin-top: 0.5rem;
	}
}


.siryou_wrap .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.siryou_wrap .list .item {
	width: 23%;
	text-align: center;
}
@media screen and (max-width: 599px) {
	.siryou_wrap .list .item {
		width: 100%;
		margin-bottom: 0.50rem;
	}
}

.siryou_wrap .list .siryou_title {
	font-size: 0.16rem;
	font-weight: bold;
	color: #044d8e;
	margin-bottom: 0.15rem;
	line-height: 1.65;
	height: 0.50rem;
}
@media screen and (max-width: 599px) {
	.siryou_wrap .list .siryou_title {
		height: auto;
	}
}


.siryou_wrap .list .btn_common {
	margin-top: 0.20rem!important;
}

.siryou_wrap .list .btn_common a {
	box-sizing: border-box;
	width: 100%;
}

.siryou_wrap .list .btn_common a::before{
	content: none;
}

.siryou_wrap .list .btn_common a::after {
	background: url(../img/icon_pdf.svg) no-repeat center;
	content: '';
	background-size: cover;
	width: 0.2rem;
	height: 0.25rem;
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s all;
}

.siryou_wrap .list .btn_common.word a::after {
	content: none;
}



/*============================
コース開始前理解チェック
============================*/
#before_cont {
	padding: 1.00rem 0;
	box-sizing: border-box;
}

#before_cont .btn_common.next {
	text-align: center;
	margin-top: 1.50rem;
}

#before_cont .btn_common.next a {
	max-width: 5rem;
	width: 100%;
}

/* ボタン */
.before_btn_next {
	text-align: center;
    margin-top: 0.8rem;
}

.before_btn_next a {
	font-size: 0.32rem;
	color:#044d8e;
	text-decoration: none;
	position: relative;
}

.before_btn_next a::before {
	content: '';
	width: calc(100% + 0.30rem);
	height: 0.50rem;
	position: absolute;
	background: url(../img/icon_arrow.svg) no-repeat center;
	background-size: contain;
	top: 0.10rem;
	left: 0.30rem;
	transition: all .3s;
}

.before_btn_next a:hover {
	opacity: 0.7;
}

.before_btn_next a:hover:before {
	left: 0.35rem;
}

/*============================
講義一覧
============================*/
#lecture_list_cont {
	
}

#lecture_list_cont .lecture_list_box {
	padding: 1.00rem 0;
}
@media screen and (max-width: 599px) {
	#lecture_list_cont .lecture_list_box {
		padding: 0.7rem 0;
	}
}

#lecture_list_cont .lecture_list_box .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}

#lecture_list_cont .lecture_list_box .list .item {
	width: 48%;
	height: 3.50rem;
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 599px) {
	#lecture_list_cont .lecture_list_box .list .item {
		width: 100%;
		height: 2.50rem;
		margin-bottom: 0.5rem;
	}
}


#lecture_list_cont .lecture_list_box .list .item a {
	display: block;
	text-decoration: none;
	color:#fff;
	background: url(../img/list_bg.jpg) no-repeat center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: relative;
}

#lecture_list_cont .lecture_list_box .list .item a:hover {
	opacity: 0.7;
}

#lecture_list_cont .lecture_list_box .list .item a .text_cont {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%);
	text-align: center;
	width: 100%;
}

#lecture_list_cont .lecture_list_box .list .item a .text_cont .title {
	font-size: 0.30rem;
	font-weight: bold;
	line-height: 1.3;
}
@media screen and (max-width: 599px) {
	#lecture_list_cont .lecture_list_box .list .item a .text_cont .title {
		font-size: 0.22rem;
	}
}


#lecture_list_cont .lecture_list_box .list .item a .text_cont span {
	font-size: 0.22rem;
	font-weight: bold;
	display: block;
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 599px) {
	#lecture_list_cont .lecture_list_box .list .item a .text_cont span {
		font-size: 0.18rem;
	}
}

/*============================
講義理解のストラテジー
============================*/
#lecture_detail {
	padding: 1.00rem 0;
}
@media screen and (max-width: 599px) {
	#lecture_detail {
		padding: 0.7rem 0;
	}
}

#lecture_detail .lecture_detail_box {
	margin-bottom: 0.2rem;
}

#lecture_detail .lecture_detail_box {
	
}

dl,
dt,
dd {
	margin: 0;
	padding: 0;
}

#lecture_detail .lecture_detail_box dl {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	#lecture_detail .lecture_detail_box dl {
		padding: 0;
	}
}


#lecture_detail .lecture_detail_box dt {
	padding: 0.10rem 0.20rem;
	border-radius: 10px;
	background: #044d8e;
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
}

#lecture_detail .lecture_detail_box dt::after {
	content: '';
	position: absolute;
	top: 0;
	left: 30%;
	width: 1.00rem;
	height: 1.00rem;
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width: 599px) {
	#lecture_detail .lecture_detail_box dt::after {
		left: 70%;
	}
}

#lecture_detail .lecture_detail_box:nth-child(1) dt::after {
	background-image: url(../img/top_flow_icon_01.svg);
}


#lecture_detail .lecture_detail_box:nth-child(2) dt {
	background: #0E9F80;
}
#lecture_detail .lecture_detail_box:nth-child(2) dt::after {
	background-image: url(../img/top_flow_icon_02.svg);
}


#lecture_detail .lecture_detail_box:nth-child(3) dt {
	background: #8E9A20;
}
#lecture_detail .lecture_detail_box:nth-child(3) dt::after {
	background-image: url(../img/top_flow_icon_03.svg);
}

#lecture_detail .lecture_detail_box:nth-child(4) dt {
	background: #AD791F;
}
#lecture_detail .lecture_detail_box:nth-child(4) dt::after {
	background-image: url(../img/top_flow_icon_04.svg);
}

#lecture_detail .lecture_detail_box dl .step {
	width: 0.45rem;
}

#lecture_detail .lecture_detail_box dl .step img {
	width: 100%;
}


#lecture_detail .lecture_detail_box dl .text {
	font-size: 0.16rem;
	font-weight: bold;
	box-sizing: border-box;
	padding-left: 0.20rem;
	padding-right: 0.2rem;
	letter-spacing: 0.4em;
	line-height: 1.3;
	width: calc(100% - 0.45rem);
}


#lecture_detail .lecture_detail_box dd {
	padding: 20px;
	border-radius: 10px;
	margin-top: 10px;
	background: #fff;
}

#lecture_detail .lecture_detail_box span::before,
#lecture_detail .lecture_detail_box span::after {
	content: '';
	display: block;
	width: 15px;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

#lecture_detail .lecture_detail_box span::after {
	background: #fff;
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}

#lecture_detail .lecture_detail_box .active::after {
	transform: rotate(0);
	transition: 0.5s;
}

#lecture_detail .next_arrow {
	text-align: center;
	margin: 0.80rem 0;
}
@media screen and (max-width: 599px) {
	#lecture_detail .next_arrow {
		margin: 0.40rem 0;
	}
	#lecture_detail .next_arrow img {
		width: 0.60rem;
	}
}

/*字幕付き*/
#lecture_detail .jimaku {
	margin-top: 0.70rem;
}

#lecture_detail .jimaku h3 {
	font-size: 0.26rem;
	font-weight: bold;
	color: #044d8e;
	text-align: center;
	margin-bottom: 0.20rem;
}

/*ボタン*/
#lecture_detail .btn_common.btn_pdf {
	text-align: center;
	box-sizing: border-box;
	padding: 0.30rem 0;
	
}

#lecture_detail .btn_common.btn_pdf a::before {
	content: '';
	background: url(../img/icon_pdf.svg) no-repeat center;
	background-size: contain;
	width: 0.2rem;
	height: 0.3rem;
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s all;
}

/*次へリンク*/
.lecture_list .link {
	margin-top: 0.50rem;
}

.lecture_list .link ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}

.lecture_list .link li.listbtn {
	padding: 0 2rem;
}
@media screen and (max-width: 599px) {
	.lecture_list .link li.listbtn {
		padding: 0 0.4rem;
	}
}


.lecture_list .link li a {
	color: #000;
	font-size: 0.16rem;
	text-decoration: none;
}

.lecture_list .link li a:hover {
	opacity: 0.7;
}

.lecture_list .link li a span {
	padding: 0 0.10rem;
	display: inline-block;
	vertical-align: middle;
}