@charset "UTF-8";
/* CSS Document */
.page_img {
	background-image: url("../img/languages/bg_head_languages.jpg");
    width: 57.2%;
}
.page_ttl {
    width: 42.8%;
}
section {
    margin-bottom: 100px;
}

.anchor_wrap {
    display: flex;
    margin-bottom: 30px;
}
.anchor_wrap li {
    background: #b22222;
    text-align: center;
    width: 15%;
    border-radius: 10px;
	margin-bottom: 15px;
    margin-left: 2%;
}
.anchor_wrap li:first-child{
	margin-left: 0;
}
.anchor_wrap .link {
    background: #b22222;
    display: block;
    line-height: 100%;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1em;
    padding: 1.3em 0 1.5em;
    position: relative;
	width: 100%;
    height: 100%;
	border: 1px solid #b22222;
}
.anchor_wrap .link::after {
    content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
    transform: rotate(-135deg);
    left: 0;
    right: 0;
    bottom: 8px;
    margin: auto;
}
.anchor_wrap .link:hover{
    background: #ffffff;
	color: #b22222;
}
.anchor_wrap .link:hover::after{
	border-color:#b22222;
}

.lang_wrap {
	padding-top: 80px;
}

.btn_list {
    display: flex;
    flex-wrap: wrap;
}
.btn_list li{
	width: 31%;
	margin: 0 1% 15px;
}
.btn_list li a {
    display: flex;
    justify-content: space-between;
    background: #fefae6;
    height: 100%;
    border: 1px solid #edd2a3;
    border-radius: 3px;
    color: #000000;
    line-height: 150%;
    align-items: center;
    padding-left: 30px;
	position: relative;
}
.btn_list li a::before{
    content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 2px solid #d9a140;
    border-left: 2px solid #d9a140;
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    left: 8px;
    margin: auto;
}
.btn_list li a:hover{
	background: #edd2a3;
	color: #ffffff;
}
.btn_list li .txt {
    width: calc(100% - 80px);
	padding-right: 1.2em;
	padding-top: 0.7em;
	padding-bottom: 0.7em;
}
.btn_list li.noimg .txt {
    width: 100%;	
}
.btn_list li .img {
    display: flex;
    width: 80px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
	background-size: auto 100%;
}

@media screen and (max-width:900px) {
.anchor_wrap {
    flex-wrap: wrap;
}
.anchor_wrap li {
    width: 32%;
}
.btn_list li {
    width: 48%;
}
}
@media screen and (max-width:600px) {
.btn_list li {
    width: 98%;
}
}
