@charset "UTF-8";
/* CSS Document */
.seminar_info{
	display: none;
}
.cm_ttl_wrap{
	padding-bottom:0px
}
.seminar_page {
    margin-bottom: 120px;
    padding-right: 42px;
}
.seminar_list {
    width: 100%;
    max-width: 810px;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.seminar_list li {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% / 3 - 40px);
    margin-bottom: 40px;
}
.seminar_list li .name {
    font-size: 0.8em;
    color: #56b691;
    letter-spacing: 1px;
    line-height: 140%;
    margin-bottom: 5px;
}
.seminar_list li .date {
    font-size: 0.8em;
    color: #000;
    letter-spacing: 1px;
    line-height: 140%;
    margin-bottom: 5px;
}
.seminar_list li .img_wrap {
    position: relative;
}
.seminar_list li .img_wrap .address {
    position: absolute;
    color: #000;
    font-size: 0.8em;
    line-height: 100%;
    background: #ffffff;
    padding: 0.5em 1em;
    right: 0;
    top: 0;
    border-radius: 0 0 0 10px;
	z-index:3;
}
.seminar_list li.end .img_wrap::before {
    content: "このセミナーは終了致しました";
    position: absolute;
    color: #ffffff;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(84,182,144,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85em;
    line-height: 120%;
}
.seminar_list li .img_wrap .img {
    overflow: hidden;
    max-height: 158px;
}
.seminar_list li .img_wrap .img img {
    transition: all ease 300ms;
}
.seminar_list li .img_wrap .img:hover img{
	transform:scale(1.05);
}

.more_btn_wrap {
    width: 100%;
    max-width: 810px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    padding-right: 25px;
    text-align: right;
}
.more_btn_wrap .more_btn {
    background: #55b692;
    display: inline-block;
    color: #ffffff;
    font-size: 0.75em;
    line-height: 100%;
    padding: 0.6em 4em;
    position: relative;
    overflow: hidden;
    transition: all ease 300ms;
	cursor: pointer;
}
.more_btn_wrap .more_btn:hover{
	background:#ffffff;
	color:#55b692;
}
.more_btn_wrap .more_btn::after {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    background: #fff;
    position: absolute;
    right: -5px;
    top: -10px;
    transform: rotate(25deg);
}

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

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

}
@media screen and (max-width: 530px){
.seminar_page {
	padding-right: 0;
	}
.his_list {
    margin-bottom: 30px;
}
.seminar_list li {
    width: calc(100% - 40px);
    margin-bottom: 20px;
}
.seminar_list li .img_wrap .img {
	max-height: none;
	}
}