@charset "utf-8";
/*======================



tw2023_area.css
2023/03 エリア切替ボタン用css



======================*/
#top_area_choice{
	display: none;
	position: fixed;
	z-index: 202;
    bottom: 40px;
    right: 16px;
    display: flex;
    flex-direction: row-reverse;
}

#top_area_choice .area_btn {
    display: inline-block;
    padding: 9px 15px 9px 30px;
    margin: auto;
	box-shadow: 0 0 2px 0 rgb(0 0 0 / 8%), 0 1px 2px 0 rgb(0 0 0 / 10%);
    box-sizing: border-box;
    border-radius: 3px;
	background-color: rgba(0,0,0,.5);
    color: #fff;
    text-align: left;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    /*width: 100%;*/
    cursor: pointer;
    z-index: 1;
}
#top_area_choice .area_btn span{
    white-space: nowrap;
}

#top_area_choice .area_btn:before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    -webkit-mask: url(../png/ico_area.png) no-repeat center center;
    mask: url(../png/ico_area.png) no-repeat center center;
    background: #333;
    width: 16px;
    height: 13px;
    transition: all .3s;
    -webkit-mask-size: contain;
    mask-size: contain;
}

#top_area_choice .area_btn:hover:before{
    background: #fff;
}

#top_area_choice .area_btn:hover {
    cursor: pointer;
    color: #fff;
    background-color: #000;
}

#top_area_choice .area_contents_wrap {
    position: relative;
    width: 100%;
}
#top_area_choice .area-list{
    display: flex;
    flex-direction: row-reverse;
}
#top_area_choice .area_contents {
    text-align: left;
    color: #fff;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    width: 0;
    cursor: pointer;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    z-index: 9;
}
#top_area_choice .area_contents li.area-switch {
    background: #000;
    color: #848484;
    transition: all .2s linear;
    white-space: nowrap;
    position: relative;
    padding: 9px 28px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}
#top_area_choice .area_contents li.area-switch:hover {
    cursor: pointer;
    color: #fff;
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    -ms-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}
#top_area_choice .area_contents li.area-switch.selected {
    color: #fff;
    position: relative;
}
#top_area_choice .area_contents li.area-switch.selected::before{
	top: calc(50% - 5px);
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 12px;
    background-image: url(../png/ico_arrow_rt.png);
    background-size: contain;
    background-repeat: no-repeat;
}