@charset "UTF-8";

/* エンゲージメントポイント ポイント窓 root */
.engp-point-window {
    width: 100%;
    margin: auto auto;
    text-align: center;
    font-size: 16px;
}

/* エンゲージメントポイント ポイント窓 タイトル部分 */
.engp-point-window .title {
    font-size: 32px;
    margin: 0;
}

/* エンゲージメントポイント ポイント窓 フォーム部分 */
.engp-point-window .input {
    width: 320px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
}
.engp-point-window .input .atmark {
    position: absolute;
    font-size: 28px;
    margin-left: 12px;
    line-height: 28px;
    top: calc(50% - 14px);
    pointer-events: none;
}
.engp-point-window .input .screen-name-input {
    width: calc( 100% - 48px);
    padding: 16px;
    padding-left: 44px;
    background: #fff;
    font-size: 16px;
    line-height: 1;
    border-radius: 10px 0 0 10px;
}
.engp-point-window .input .submit input {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.engp-point-window .input, .engp-point-window .input input {
    margin: auto;
    border: none;
}
.engp-point-window .input .submit {
    position: relative;
    width: 48px;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}
.engp-point-window .input .submit:before {
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
    top: calc( 50% - 7px);
    left: calc( 50% - 7px);
}
.engp-point-window .input .submit:after {
    width: 5px;
    height: 1px;
    background: #fff;
    top: calc( 50% + 7px);
    left: calc( 50% + 6px);
    transform: rotate(45deg);
}
.engp-point-window .input .submit input {
    -webkit-appearance: none;
    border-radius: 0;
    background: #e83328;
}
.engp-point-window .input .submit:before, .engp-point-window .input .submit:after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
}

/* エンゲージメントポイント ポイント窓 メッセージ部分 (エラー表示等) */
.engp-point-window .message {
    color: #f00;
    text-align: center;
    margin-top: 4px;
}

/* エンゲージメントポイント ポイント窓 ポイント数部分 */
.engp-point-window .result {
    margin: auto;
    width: 288px;
    max-width: 768px;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 16px;
    padding-top: 40px;
    font-weight: bold;
    line-height: 1;
    background: #fff;
    border-radius: 10px;
}
.engp-point-window .result .point {
    margin-bottom: 8px;
    text-align: center;
}
.engp-point-window .result .point span {
    white-space: nowrap;
    display: inline-block;
    font-size: 76px;
}
.engp-point-window .result .point-unit {
    text-align: right;
}

/* エンゲージメントポイント ポイント窓 ランキング部分 */
.engp-point-window .ranking {
    margin: auto;
    width: 320px;
    text-align: right;
    font-weight: bold;
}
.engp-point-window .ranking div {
    display: inline;
}

/* エンゲージメントポイント ポイント窓 表示制御用 */
.engp-point-window .hidden {
    display: none;
}