@charset "UTF-8";

/* Language btn */

.btn_lang{
	margin-right: 24px;
}
.btn_lang i{
	width: 35px;
	height: 35px;
	margin-right: 10px;
}
.btn_lang i img{
	width: 35px;
	vertical-align: baseline;
}
.btn_lang a{
	display: flex;
    align-items: center;
	padding-left: 10px;
}
.btn_lang_sp{
	position: fixed;
	bottom: 0;
	right: 0;
	display: none;
}
.btn_lang_sp a{
	display: block;
	line-height: 64px;
	width: 64px;
	text-align: center;
	background: #000;
	color: #fff;
	font-size: 8px;
}
.lang{
	margin-left: 30px;
	padding:3px 25px;
	cursor: pointer;
	font-weight: 800;
	background: rgba(255,255,255,0.7) url("../images/icon_earth.png") no-repeat left 5px center;
	background-size: 15px auto;
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-size: 12px;
    @media screen and (max-width: 767px) {
        font-size: 10px;
    }
}
.lang::after{
	position: absolute;
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    transition: transform 0.3s ease; /* アニメーション追加 */
    
}
.lang.is-active::after {
    transform: rotate(225deg) translateY(-3px); /* 180度回転させて上向きに + 位置調整 */
}
.lang_wrap{
	position: absolute;
    z-index: 10;
	font-family: 'Noto Serif JP', serif;
    color:#000;
	align-self: center;
    right:25px;
    top:25px;
    @media screen and (max-width: 767px) {
        right:-5px;
        top:40px;
    }
}
.list_lang{
	position: absolute;
	background: rgba(255,255,255,0.7);
	display: none;
	padding-left: 30px;
	margin-left: 30px;
	width: calc(100% - 30px);
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    list-style: none;
    @media screen and (max-width: 767px) {
        font-size: 10px;
    }
}
.list_lang li a{
	display: block;
	padding: 8px 0;
    color:#000;
    @media screen and (max-width: 767px) {
        padding: 5px 0;
    }
}
.list_lang li a:hover{
	opacity: .6;
}
