@charset "UTF-8";
/*--------------------------------------------------
カラー設定
濃いレッド　　　　　　　#D10043
背景ブラック　　　　　　#00041B
オレンジ　　　　　　　　#F4A43B
ピンク　　　　　　　　　#F43BD2


@media screen and (max-width: 795px) {

}

@media screen and (max-width: 420px) {

}
--------------------------------------------------*/

/*==================================================
単位について
==================================================*/

/*テキストブロック*/
.text_block1 {
	display: block;
	widht: 100%;
	padding: 10px;
	background-color: #F6F6F6;
	border: 1px solid #BEBEBE;
	border-radius: 8px;
	
}

/*取得可能単位数table*/
.unit_table_1 td {
	text-align: center;
}

/*カテゴリータイトル*/
.category_title {
	display: inline-block;
	margin: 6px 0;
	padding: 4px 14px;
	background-color: #686666;
	color: white;
}

/*不正受講タイトル*/
.topic {
	position: relative;
	padding-left: 30px;
	border-bottom: 1px solid #BDBDBD;
	font-size: 17px;
	font-weight: 600;
}
.topic::before,
.topic::after {
	position: absolute;
	content: "";
	width: 4px;
	height: 17px;
	transform: skewX(-30deg);
}
.topic::before {
	background-color: #FCAFBF;
	top: 0;
	left: 6px;
}
.topic::after {
	background-color: #FE6080;
	top: 0;
	left: 14px;
}

/*不正受講*/
.unfair {
	padding: 10px 20px;
	border: 1px solid #CBCBCB;
	border-radius: 8px;
	background-color: rgba(255,255,255,0.3);
}

/*単位テーブル*/
.unit_table tr > th {
	width: 6em;
	text-align-last: justify;
}

/*プロフィール（dl）*/
.profile {
	display: flex;
	flex-wrap: nowrap;
}
.profile dt {
	width: 8em;
}
.profile dd {
	margin-left: 0;
	flex: 1;
	font-size: 85%;
}
@media screen and (max-width: 420px) {
	.profile {
		display: block;
	}
}