/*------------------------------------------------------------------------------------------
新検索用ヘッダーメニュー css
------------------------------------------------------------------------------------------*/

.FlexBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.FlexBox:after {
    content: initial;
}

.FlexBox--justify {
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.FlexBox--middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.FlexBox__item {
    display: block;
}

.pull-right {
    float: right;
}


/* global.css を強制変更-----------------------------*/

.headerFixed #header .headerRightLogin li {
    float: left;
    padding-top: 11px;
}

.myHeaven {
    border: none;
}

.myHeaven img {
    top: 0px;
    width: 20px;
}


/*-----------------------------*/


/* global.css を強制変更-----------------------------*/

.headerFixed #header .headerRightLogin {
    padding: 5px 0 0 0;
}

.headerFixed #header .headerRightLogin .myHeaven a {
    padding: 5px 5px;
    height: 18px;
    line-height: 18px;
}

.headerFixed #header .headerRightLogin .myHeaven a img {
    width: 20px;
    height: auto;
    vertical-align: middle;
    display: initial;
}


/*-----------------------------*/


/*mypageglobal.css を強制変更-----------------------------*/

.myArea a {
    margin-top: 3px;
}


/*-----------------------------*/

.headerRightLogin {
    float: right;
    text-align: right;
    padding: 5px;
}

.headerRightLogin li {
    font-size: 10px;
    vertical-align: middle;
}

.headerRightLogin .myHeaven a {
    display: block;
    text-align: center;
    height: auto;
    font-weight: 700;
    position: relative;
    color: #fff;
    top: 1px;
    background-color: #d00;
    border-radius: 5px;
    margin-top: 3px;
    padding: 5px;
}

.headerRightLogin .hamburger {
    position: relative;
    width: 44px;
    top: 5px;
    float: left;
}

.hamburger p {
    padding: 0;
    margin: 0;
    position: relative;
    top: 0px;
    right: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    text-align: center;
    font-weight: bold;
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 25px;
    height: 18px;
    margin: 0 auto 3px;
    text-align: left;
    left: -10px;
}

.menu-trigger:before {
    /*    content: "●";
    position: absolute;
    top: -13px;
    right: -5px;
    color: #DD0000;
    font-size: 25px;
    z-index: 1;*/
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    color: #DD0000;
    font-size: 25px;
    z-index: 1;
    width: 10px;
    height: 10px;
    background: #DD0000;
    border-radius: 50%;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #484e5c;
    border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 8px;
}

.menu-trigger span:nth-of-type(3) {
    top: 16px;
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}


/* cssで行うモーダル-----------------------------*/

.modal-window {
    -webkit-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    line-height: 1.3;
    display: none;
}

.modal-window:target {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.is-active.modal-window {
    display: block;
}

.modal-window:target {
    display: block;
}

.modal-window .modal-inner {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    margin-left: 0;
    width: 300px;
    overflow-x: hidden;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    height: 100vh;
}

.modal-window .modal-close {
    display: block;
    text-indent: -100px;
    overflow: hidden;
}

.modal-window .modal-close:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEElEQVR42gEFAPr/AAAAAMwA0QDNTiUx4gAAAABJRU5ErkJggg==");
    height: 100vh;
}

.modal-window .modal-close:after {
    content: '\00d7';
    position: absolute;
    top: 0;
    right: 300px;
    z-index: 20;
    padding: 2px 8px;
    font-size: 50px;
    text-decoration: none;
    text-indent: 0;
    color: white;
}

.modal-window {
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.main-sidebar-wrapper {
    position: relative;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1em;
}

.main-sidebar-title {
    background: #F0F4F7;
    padding: 10px 8px;
    font-size: 12px;
    color: #758794;
    border-bottom: 1px solid #DDE2E6;
    font-weight: bold;
}

.main-sidebar-list>li {
    border-bottom: 1px solid #DDE2E6;
    position: relative;
}

.main-sidebar-list>li.last {
    margin-bottom: 20px;
}

.main-sidebar-list>li a {
    display: block;
    padding: 15px 10px;
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.main-sidebar-list>li a.main-sidebar_myheaven {
    background-image: url(../img/iconBtnBig06.gif);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 35px;
    padding-right: 35px;
}

.main-sidebar-list>li a.search {
    background-image: url(../img/search_area_gray.png);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 30px;
    min-height: auto;
    height: 19px;
    min-height: 19px;
}

.main-sidebar-list>li a.ippan {
    color: #3366cc;
}

.main-sidebar-list>li a.ippan img {
    vertical-align: middle;
    margin-right: 5px;
    position: absolute;
    top: 10px;
}

.main-sidebar-list>li a.ippan span {
    padding-left: 30px;
}

a.select_area {
    background-color: #2cbd22;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
}

.either input[type=radio] {
    display: none;
    margin: 0;
}

.either input[type=radio] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    line-height: 30px;
    cursor: pointer;
}

@media (min-width: 1px) {
    .either input[type=radio] + label {
        padding: 0 0 0 24px;
    }
    .either input[type=radio] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;
        background: #FFF;
    }
    .either input[type=radio] + label::before {
        border: 2px solid #ccc;
        border-radius: 30px;
    }
    .either input[type=radio]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .either input[type=radio]:checked + label::after {
        left: 5px;
        width: 8px;
        height: 8px;
        margin-top: -4px;
        background: #4D8CFF !important;
    }
    /* either */
    .either {
        position: relative;
        display: inline-block;
        border: 1px solid #ccc;
        width: 100px;
        border-radius: 2px;
        margin-right: 10px;
        margin-top: 2px;
    }
    .either input[type=radio] + label {
        float: left;
        display: block;
        width: 50%;
        margin-right: 0;
        padding: 0;
        overflow: hidden;
        text-align: center;
        position: static;
    }
    .either input[type=radio] + label::before {
        content: attr(data-label);
        top: 0;
        bottom: 0;
        z-index: 1;
        display: block;
        width: 50%;
        height: auto;
        margin-top: 0;
        text-align: center;
        color: transparent;
        background: transparent;
        border: 0 none;
        border-radius: 0;
    }
    .either input[type=radio] + label:last-child::before {
        left: 50%;
        right: 0;
    }
    .either input[type=radio]:checked + label::before {
        color: #fff;
    }
    .either input[type=radio] + label::after {
        border-radius: 0;
    }
    .either input[type=radio]:first-child + label::after {
        content: none;
    }
    .either input[type=radio] + label + input[type=radio] + label::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 0;
        display: block;
        width: auto;
        height: auto;
        margin: auto;
        border: 2px solid #fff;
        -webkit-transition: all 200ms;
        transition: all 200ms;
        background: #FF7BAE;
        border-radius: 4px;
    }
    .either input[type=radio]:checked + label + input[type=radio] + label::after {
        left: 0;
        right: 50%;
    }
    .either input[type=radio] + label + input[type=radio]:checked + label::after {
        left: 50%;
        right: 0;
    }
}

div[data-simplesidebar="mask"] {
    background-image: url(../img/batu.png);
    background-repeat: no-repeat;
    background-size: 35px;
    background-position: right 300px top 0px;
    background-color: rgba(0, 0, 0, 0.5);
}

div#search-sel-btn {
    border-radius: 5px;
    padding: 5px 5px 7px 5px;
    text-align: center;
    background: -webkit-gradient(linear, center top, center bottom, from(#3EA1FF), to(#108AFF));
    color: white;
    font-size: 12px;
    background-size: 42px 30px;
    -webkit-background-size: 42px 30px;
    -moz-background-size: 42px 30px;
    left: 2px;
    position: absolute;
    top: 2px;
    width: 60px;
    line-height: 18px;
}

div#search-sel-btn p {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
}

div#search-sel-btn p span {
    display: none;
}

div#search-sel-btn p span.on {
    display: block;
}

div#search-sel-btn select {
    border: none;
    background: transparent;
    color: white;
    width: 100%;
    background-image: url(//img.cityheaven.net/img/button/smartphone/menu_menu2.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
}

.fuchi_waku {
    background-image: url(../img/fuchiko_waku.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 90px;
    padding: 18px 10px 0px 40px;
    box-sizing: border-box;
    font-weight: bold;
    color: #ff1a68;
    line-height: 1.3rem;
}

.fuchi_img {
    width: 90px;
    position: absolute;
    top: 5px;
    left: 30px;
}

.fuchi_sub {
    padding-left: 42px;
    background-image: url(../img/fuchiko_arrow.png);
    background-position: left 10px top -10px;
    background-size: 25px;
    background-repeat: no-repeat;
    padding-bottom: 5px;
}

.fuchi_girlname {
    font-size: 12px;
    font-weight: bold;
}

.fuchi_shopname {
    font-size: 10px;
    margin-top: 5px;
}

.slide {
    position: relative;
}
/* 追加 */
.headerFixed #header .headerRightLogin{
	padding:5px;
	float:right;
	text-align:right;
}
.headerFixed #header .headerRightLogin li{
	text-align:center;
	width:40px;
	float:left;
	line-height:12px;
	padding:0;
	margin-top:-2px;
}
.headerFixed #header .headerRightLogin li.keep-icon a{
	display:block;
	padding:0;
	text-align:center;
	margin:0!important;
}
.headerFixed #header .headerRightLogin li.keep-icon a img{
	max-width:32px;
}
.headerFixed #header .headerRightLogin li.keep-icon a span.keep-badge{
	position:absolute;
	top:0!important;
	right:0;
	color:#fff;
	font-size:10px;
	line-height:15px;
	z-index:1;
	width:15px;
	height:15px;
	background:#dd0000;
	border-radius:50%;
}
.headerFixed #header .headerRightLogin li.keep-icon p{
	padding: 0;
	margin: auto;
	position: absolute;
	bottom: -8px;
	right: 0;
	transform: scale(0.8);
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
	text-align: center;
	font-weight: bold;
	opacity: 1;
	color: #484e5c;
	left:0;	
}
.headerFixed #header .headerRightLogin li.myheaven-icon{
	position:relative;
	text-align:center;
	font-size:10px;
	line-height:12px;
}
.headerFixed #header .headerRightLogin li.myheaven-icon a{
	margin:0;
}
.headerFixed #header .headerRightLogin li.myheaven-icon a img{
	width:32px;
	margin-left:2px;
}
.headerFixed #header .headerRightLogin li.myheaven-icon p{
	padding: 0;
	margin: 0;
	position: absolute;
	bottom:-8px;
	right: 0;
	transform: scale(0.8);
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
	text-align: center;
	font-weight: bold;
	opacity: 1;
	color: #484e5c;
	letter-spacing:-2px;
	left:0;
}
.headerFixed #header .headerRightLogin .hamburger{
	line-height:12px;
	top:7px;
	width:40px;
}
.headerFixed #header .headerRightLogin .hamburger a.menu-trigger{
	width:26px;
	left:0;
	height:18px;
	margin:0 auto 3px;
	text-align:left;	
}
.headerFixed #header .headerRightLogin .hamburger a.menu-trigger span{
	position:absolute;
	left:0;
	width:100%;
	height:4px;
	background-color:#484e5c;
	border-radius:4px;
}
.headerFixed #header .headerRightLogin .hamburger p{
	top:0px;
	color:#484e5c;
}

@media screen and (max-width:374px) {
.headerFixed #header .headerRightLogin li.myheaven-icon p {
letter-spacing:-3px;
}
.headerFixed #header .headerRightLogin .hamburger p{
letter-spacing:-1px;
}
}
ul.main-sidebar-list a{
	color:#222;
}