/*--------------------------------------------------------
講師一覧
--------------------------------------------------------*/
.teacher_list_block{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap:30px 20px;
	gap:12px 20px;
	margin-bottom: var(--margin_bottom_s);
}
@media only screen and (min-width: 738px){
	.teacher_list_block{
		margin-bottom: var(--margin_bottom_ml);
	}
}
.teacher_list_block .teacher_list_item{
    box-sizing: border-box;
    padding: 0px;
    border-radius: 20px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    text-align: center;
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
	box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, .05);
	cursor:pointer;
	gap:15px;
    transition: all .6s ease;/*  hover時にほわっと影を増やす*/
}
@media only screen and (min-width: 738px){
	.teacher_list_block .teacher_list_item{
		width:calc((100% - 20px)/2);
	}
}
.teacher_list_block .teacher_list_item:hover{
     box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
}
.teacher_list_block .teacher_list_item a{
	color:#606060;
}
.teacher_list_block .teacher_list_item .image_frame_only_top_radius {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.teacher_list_block .teacher_list_item .image_frame_only_top_radius img{
	margin-bottom:0;
}
.teacher_list_block .teacher_list_item .teacher_content{
    box-sizing: border-box;
    display:flex;
    flex-direction: column;
    width: 100%;
    padding: 0 15px 15px 15px;
    flex-grow:1;/* 余白いっぱいに広げる 横並びの時スケジュールを見るボタンの高さを揃えるのに必要 */
    gap:15px;
}
.teacher_list_block .teacher_list_item .teacher_content .profile_link{
	font-size:15px;
	color:#5193f7;
	display:block;
	transition: all .6s ease;
	font-weight:bold;
}
.teacher_list_block .teacher_list_item .teacher_content .profile_link:hover{
	opacity:0.7;
}
.teacher_list_block .teacher_list_item .teacher_content .profile_link i{
	margin-left:10px;
	color:#5193f7;
}
div.button_block{
    display: flex;
    flex-direction: column;
    width:100%;
}
button.btn_submit {
    position: relative;
    display: inline-block;
    padding:20px 30px;
    color: #fff;
    z-index: 1;
    border:none;
    background:none;
    outline: none;
    cursor:pointer;
    font-weight:bold;
    font-size:15px;
	width:80%;
	margin-bottom:15px;
}
 button.btn_submit:before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background:#5193f7;
    transition: all .3s;
 }
button.btn_submit:hover:before {
  right: 0;
  transform: scale(1.1);
  background: #5193f7;
}
button.btn_submit i{
    margin-left:10px;
    margin-right:0px;
}
/*--------------------------------------------------------
タグ
--------------------------------------------------------*/
.tag_block{
    display:flex;
    gap:8px;
    flex-wrap: wrap;
    flex-grow: 1; /* 残りのスペースをすべて使用 */
}
.tag_block .tag{
    display:inline-block;
    background:#99c2ff;
    background:#e8f1ff;
    color:#fff;
    color:#606060;
    font-weight:bold;
    padding:3px 10px;
    border-radius:5px;
    font-size:14px;
    height:30px;
}
.tag_block .tag.yellow{
    background:#fff0db;
    color:#ea9c2e;
    font-weight:bold;
}
.tag_block .tag i{
    margin-left:2px;
}
/* JASRACの許諾マーク */
footer div.copyright .jasrac_img{
    margin-right:auto;
    margin-left:auto;
}
footer div.copyright .jasrac_img img{
    width:48px;
    height:48px;
}
/* JASRACの許諾番号 */
footer div.copyright .jasrac_txt{
    font-size:10px;
    margin:0 auto 10px auto;
}