@charset "utf-8";
/*======================



area_btn.css
2022/11 エリア切替対応用css



======================*/
#sp_area_choice{
	display: none;
	position: fixed;
	z-index: 2147483646;
    bottom: 60px;
    left: 16px;
}

#sp_area_choice .area_btn {
    display: inline-block;
    padding: 9px 9px 9px 32px;
    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: 5px;
	background-color: #fff;
    color: #27313b;
    text-align: left;
    line-height: normal;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,メイリオ,Meiryo,ＭＳ Ｐゴシック,MS PGothic,Padauk,sans-serif;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    /*width: 100%;*/
    cursor: pointer;
    z-index: 1;
}
#sp_area_choice .area_btn svg{
	pointer-events: none;
    position: absolute;
    height: 20px;
    width: 20px;
    z-index: 2;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    fill: #6e7c89;
}
#sp_area_choice .area_btn:hover {
    opacity: 0.8;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#sp_area_choice .area_contents_wrap {
    position: relative;
    width: 100%;
}

#sp_area_choice .area_contents {
    text-align: left;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 9;
	transition: all .25s cubic-bezier(.03,.63,.355,1);
	transform-origin: left bottom;
    transform: scale(0);
    pointer-events: none;
    opacity: 0;
}
#sp_area_choice .area_contents.is-open{
	animation: floating-bounced .25s forwards;
	pointer-events: auto;
	opacity: 1;
}
@keyframes floating-bounced{
	0% {
	    transform: scale(0);
	}
	85% {
	    transform: scale(1.02);
	}
	100% {
	    transform: scale(1);
	}
}
#sp_area_choice .area_contents li.area-switch {
    background: #fff;
    color: rgba(39,49,59,.7);
    transition: all .2s linear;
    white-space: nowrap;
    position: relative;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 12px;
    line-height: normal;
    cursor: pointer;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,メイリオ,Meiryo,ＭＳ Ｐゴシック,MS PGothic,Padauk,sans-serif;
}
#sp_area_choice .area_contents li.area-switch:hover {
    cursor: pointer;
	background-color: #dee5ec;
    color: #27313b;
    -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;
}
#sp_area_choice .area_contents li.area-switch.selected {
    background-color: #dee5ec;
    color: #27313b;
    position: relative;
}
#sp_area_choice .area_contents li.area-switch.selected::before{
	top: calc(50% - 4px);
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 12px;
    background-color: #40b87c;
}

@media screen and (max-width: 767px) {
    #sp_area_choice{
        bottom: 0;
        right: calc(100px + 2vw);
        left: auto;
    }
    #sp_area_choice .area_btn {
        padding: 3vw 16px 3vw 40px;
    }
    #sp_area_choice .area_contents {
        left: auto;
        right: 0;
        transform-origin: right bottom;
    }
}
