@charset "UTF-8";
/* CSS Document */
.history_page {
    margin-bottom: 120px;
    padding-right: 42px;
}
/*ヒストリー*/
.bg_wrap{
	background:url(../image/history/fv.jpg) no-repeat center / cover;
}
.history_voicelist{
	background-color:#eeefef;
    padding-bottom: 80px;
}
.his_list {
    display: flex;
    flex-wrap: wrap;
	width:100%;
	/*max-width:810px;*//*２個版*/
    max-width: 1200px;
	margin-left:auto;
	margin-right:auto;
}
.his_list li {
    margin-right: 25px;
    margin-left: 25px;
    margin-bottom: 50px;
/*    width: calc(50% - 50px);*//*２個版*/
    width: calc(33% - 50px);
    background: #ffffff;
    transition: all ease 300ms;
}
.his_list li:hover{
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
}
.his_list li .text_wrap {
    padding: 1em 1.2em;
    position: relative;
    color: #5a6461;
	
}
.his_list li .text_wrap .address {
	position: absolute;
    top: 0;
    right: 0;
    color: #ffffff;
    background: #55b692;
    width: 100px;
    text-align: center;
    font-size: 0.8em;
    line-height: 140%;
    padding: 0.4em 0px;
}
.his_list li .text_wrap .num {
    color: #55b692;
    font-weight: normal;
    font-size: 1.2em;
    margin-bottom: 8px;
}
.his_list li .text_wrap .text,
.his_list li .text_wrap .name {
    font-size: 0.935em;
    line-height: 160%;
    margin-bottom: 10px;
}


.more_btn_wrap {
    width: 100%;
    max-width: 810px;/*２個版*/
    max-width: 1200px;
    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;
}
.more_btn_wrap .more_btn:hover{
	background:#ffffff;
	color:#55b692;
}
.more_btn_wrap .more_btn::after {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    background: #eeefef;
    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){
.history_page {
	padding-right: 0;
	}
.his_list {
    margin-bottom: 30px;
}
.his_list li {
    width: calc(100% - 50px);
    margin-bottom: 25px;
}
}