.accountInfo{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 56px;
    align-items: center;
    margin: 0 auto auto auto;
    padding-right: 20.5px;
    max-width: 980px;
}
@media screen and (max-width: 767px) {
    .accountInfo{
        flex-direction: column;
        align-items: flex-end;
        height: 64px;
        margin: 8px 0px;
        padding: 0px;
    }
}

/* メニューが開いている場合のみ非表示 */
.accountInfo.open{
    display: none;
}

.accountInfo-pontaPoint{
    display: none;
}

.accountInfo-userID {
    display: flex;
    position: relative;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .accountInfo-userID {
        height: 24px;
        padding-right: 7px;
    }
}

.accountInfo-userID span:first-of-type{
    display: flex;
    width: 32px;
    height: 32px;
    border: solid 1px #EB5505;
    border-radius: 4px;
    font-weight: bold;
    color: #EB5505;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    box-sizing: border-box;
    font-size: 20px;
    line-height: 24px;
}
@media screen and (max-width: 767px) {
    .accountInfo-userID span:first-of-type {
        height: 20px;
        width: 20px;
        font-size: 14px;
    }
}

.accountInfo-userID .userID {
    display: block;
    font-size: 14px;
    line-height: 21px;
    height: 20px;
    color: #1B1B1B;
}
@media screen and (max-width: 767px) {
    .accountInfo-userID .userID {
        display: flex;
        align-items: center;
    }
}

.eyeIcon {
    display: inline-block;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    cursor: pointer;
    margin-left: 8px;
    vertical-align: middle;
    border: none;
    background-image: url("/webcontent/responsible/image/icon/close.png");
}
@media screen and (max-width: 767px) {
    .eyeIcon {
       display: flex;
       align-items: center;
       height: 20px;
       width: 20px;
    }
}

.eyeIcon.open {
  background-image: url("/webcontent/responsible/image/icon/open.png");
}

.accountInfo-pontaPoint{
    padding-left: 8px;
    display: flex;
    align-items: center;
    color: #333333 !important;
    cursor: pointer;
    border-left: solid 1.5px #E6E6E6;
    text-decoration: none;
    height: 32px;
    margin-left: 8px;
}
@media screen and (max-width: 767px) {
    .accountInfo-pontaPoint {
        height: 24px;
        border: none;
        padding-right: 10px;
    }
}

.accountInfo-pontaPoint:hover {
  text-decoration: none;
}

.accountInfo-pontaPoint::before{
    content: "";
    background-image: url(/webcontent/responsible/image/icon/point_icon.png);
    width: 26px;
    height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    margin: -3px 8px -3px 0px;
}
@media screen and (max-width: 767px) {
    .accountInfo-pontaPoint::before {
        height: 20px;
        width: 20px;
        background-size: 20px 20px;
    }
}

.accountInfo-pontaPoint#connected::before{
    display: inline-block;
    content: "";
    background-image: url(/webcontent/responsible/image/icon/new_Ponta_icon.png);
    width: 96px;
    background-size: contain;
    margin-right:-6px;
}

.accountInfo-pontaPoint span:first-of-type{
    font-size:16px;
    max-height: 24px;
    line-height: 24px;
}
@media screen and (max-width: 767px) {
    .accountInfo-pontaPoint span:first-of-type {
        font-size: 14px;
    }

    .accountInfo-pontaPoint span:last-of-type {
        font-size: 12px;
    }
}

.accountInfo-pontaPoint span:nth-of-type(2){
    width: 11px;
    height: 20px;
    font-size: 14px;
    line-height: 21px;
    margin-left: 2px;
    text-align: right;
}

.accountInfo-pontaPoint::after{
    display: inline-block;
    content: "";
    background-image: url(/webcontent/responsible/image/arrow/icon_right_arrow_64.png);
    width: 10px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
}
@media screen and (max-width: 767px) {
    .accountInfo-pontaPoint::after {
        width: 10px;
        height: 10px;
        background-size: 10px 10px;
    }
}

@media screen and (max-width: 767px) {
    .accountInfo-border {
        display: block;
        margin: 8px 0;
        width: 100vw;
        border-top: solid 1px #DBDBDB;
    }
}