@charset "UTF-8";

input[type="file"] {
    display: none;
}

.header {
    padding-top: 61px;
    position: relative;
}

@media only screen and (max-width: 1680px) and (min-width: 1280px) {
    .header {
        padding-top: 65px;
    }
}

@media screen and (min-width: 1680px) {
    .header {
        padding-top: 69px;
    }
}
@media screen and (max-width: 750px) {
    .header {
        padding-top: 49px;
    }
}
.header-content {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.header-bg {
    background: #DCDDDD;
    height: 0;
    width: 100%;
    position: relative;
    padding-bottom: 25%;
}

.header-personal {
    margin-top: -111px;
    margin-left: 35px;
    display: flex;
    flex-direction: column;
}
.header-icon-container {
    z-index: 1;
    width: fit-content;
    position: relative;
}
.header-icon {
    border-radius: 50%;
    height: 146px;
    width: 146px;
    display: block;
    background: #FFF;
}

.icon-setting-bg {
    margin-top: -146px;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
    position: absolute;
    visibility: hidden;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .icon-setting-bg {
        margin-top: -120px;
    }
}
.personal-info {
    font-weight: bold;
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}

.link__container {
    margin-right: 40px;
    display: flex;
    align-items: start;
    column-gap: 10px;
}
.link-item {
    border-radius: 50px;
    padding: 10px;
}
.link-item:hover {
    box-shadow: 0 0 8px grey;
}

.header-personal__name {
    font-size: 2.5rem;
}

.header-personal__user-name {
    font-size: 1.6rem;
    margin-top: 9px;
}

.header-personal__address {
    background: #f8f8f7;
    border-radius: 20px;
    height: 34px;
    margin-top: 20px;
    padding: 7px 18px;
    width: 183px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vip-status {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.vip-status__popup {
    visibility: hidden;
    width: 500px;
    color: #000;
    text-align: center;
    font-size: 1.22rem !important;
    font-weight: normal !important;
    line-height: 1.22;
    padding: 20px;
    font-family: "Noto Sans JP", sans-serif;
    background: #f2f2f2;
    position: absolute;
    top: 40px;
    z-index: 9999;
}
@media screen and (max-width: 750px) {
    .vip-status__popup {
        width: 300px;
        left: -40px;
    }
}
.vip-status__popup:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: 100%;
    border-color: transparent transparent #f2f2f2 transparent;
    border-width: 10.5px;
    left: 4.5px;
}
@media screen and (max-width: 750px) {
    .vip-status__popup:before {
        left: 40px;
    }
}
.p-top01__extra--info:hover .vip-status__popup {
    visibility: visible;
}
.claim-mark-img {
    background: url(/assets/img/index/icon_info.png) no-repeat center center;
    padding-left: 30px !important;
    background-size: 20px 20px;
    font-size: 20px !important;
}
.user-deal-value {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}
@media screen and (max-width: 750px) {
    .user-deal-value {
        flex-direction: column;
        row-gap: 10px;
    }
}
.user-value {
    font-weight: bold;
    font-size: 1.4rem;
}
.user-value__value {
    margin-top: 4px;
}
.eth-amount-description {
    font-weight: initial;
    font-size: 1rem;
    margin-top: 4px;
}
.vip-status__container {
    margin-top: 20px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    row-gap: 4px;
}
@media screen and (max-width: 750px) {
    .vip-status__container {
        overflow-x: scroll;
    }
}
.vip-status__item {
    display: flex;
    justify-content: center;
}
.vip-status__label {
    font-size: 1.5rem;
    color: #FFF;
    border-radius: 5px 0 0 5px;
    width: 30%;
    padding: 4px 0;
}
@media screen and (max-width: 750px) {
    .vip-status__label {
        width: 40%;
    }
}
.vip-status__conditions {
    color: #000;
    border-radius: 0 5px 5px 0;
    text-align: center;
    font-weight: initial;
    width: 70%;
    padding: 4px 0;
}
@media screen and (max-width: 750px) {
    .vip-status__label {
        width: 60%;
    }
}
.vip-status__item:nth-of-type(1) .vip-status__label{
    background: rgba(58,170,218,1);
}

.vip-status__item:nth-of-type(1) .vip-status__conditions {
    background: rgba(58,170,218,0.07);
}
.vip-status__item:nth-of-type(1) .vip-status__conditions.focus {
    border: 2px solid rgba(58,170,218);
    border-left: none;
}
.vip-status__item:nth-of-type(2) .vip-status__label{
    background: rgba(100,107,185,1);
}

.vip-status__item:nth-of-type(2) .vip-status__conditions {
    background: rgba(100,107,185,0.07);
}
.vip-status__item:nth-of-type(2) .vip-status__conditions.focus {
    border: 2px solid rgba(100,107,185);
    border-left: none;
}
.vip-status__item:nth-of-type(3) .vip-status__label{
    background: rgba(131,81,176,1);
}

.vip-status__item:nth-of-type(3) .vip-status__conditions {
    background: rgba(131,81,176,0.07);
}
.vip-status__item:nth-of-type(3) .vip-status__conditions.focus {
    border: 2px solid rgba(131,81,176);
    border-left: none;
}
.vip-status__item:nth-of-type(4) .vip-status__label{
    background: rgba(156,55,163,1);
}

.vip-status__item:nth-of-type(4) .vip-status__conditions {
    background: rgba(156,55,163,0.07);
}
.vip-status__item:nth-of-type(4) .vip-status__conditions.focus {
    border: 2px solid rgba(156,55,163);
    border-left: none;
}
.vip-status__item:nth-of-type(5) .vip-status__label{
    background: rgba(132,40,140,1);
}

.vip-status__item:nth-of-type(5) .vip-status__conditions {
    background: rgba(132,40,140,0.07);
}
.vip-status__item:nth-of-type(5) .vip-status__conditions.focus {
    border: 2px solid rgba(132,40,140);
    border-left: none;
}
.vip-status__item:nth-of-type(6) .vip-status__label{
    background: rgba(110,27,118,1);
}

.vip-status__item:nth-of-type(6) .vip-status__conditions {
    background: rgba(110,27,118,0.07);
}
.vip-status__item:nth-of-type(6) .vip-status__conditions.focus {
    border: 2px solid rgba(110,27,118);
    border-left: none;
}
.vip-status__item:nth-of-type(7) .vip-status__label{
    background: rgba(84,11,93,1);
}

.vip-status__item:nth-of-type(7) .vip-status__conditions {
    background: rgba(84,11,93,0.07);
}
.vip-status__item:nth-of-type(7) .vip-status__conditions.focus {
    border: 2px solid rgba(84,11,93);
    border-left: none;
}

.vip-program {
    text-align: initial;
    font-weight: bold;
    margin-top: 20px;
}

.vip-program__title {
    font-size: 1.2rem;
    font-weight: initial;
}
.appeal-item__image {
    max-width: 100%;
    margin-top: 10px;
}
.header-personal__address img {
    height: 100%;
    margin-right: 10px;
    width: auto;
}
.address-copy__container {
    margin-left: 100px;
}
.address-copied {
    display: none;
    position: absolute;
    color: #FFF;
    background: #000;
    padding: 2px;
    font-size: 5px;
    top: 0;
    right: 10px;
    border-radius: 5px;
}
.header-personal__address-copy img {
    height: 18px;
    margin-right: 0;
}

.header-personal__address-copy:hover {
    cursor: pointer;
}

.header-personal__deal-inner {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.header-personal__deal-item {
    border-left: 1px solid #cbcccc;
    height: 64px;
    padding: 0 10px;
    width: 100%;
    max-width: 164px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-personal__deal-item:first-child {
    border-left: none;
    padding-left: 0;
}
.header-personal__deal-item-label {
    font-size: 1.3rem;
}
.header-personal__deal-item-value {
    font-size: 1.8rem;
}
.head-personal__profile {
    margin-top: 20px;
    font-size: 1.3rem;
}
.head-personal__profile-introduction {
    line-height: 2.3;
    margin-top: 9px;
    color: #868686;
    font-size: 1.2rem;
}
.header-user-info__container {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 20px;
}

.header-user-info__btn {
    display: inline;
    background: #FFF;
    color: #000;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 6px 0 rgb(230 230 230);
}
.arrow-close {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
}
.header-user-info__btn:hover .arrow-close {
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
}
.header-user-info__btn:hover {
    background: #000;
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
}
.arrow-open {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(45deg);
}
.header-user-info__btn:hover .arrow-open {
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
}
.header-user-info__list {
    z-index: 1;
    position: absolute;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0 2px 6px 0 rgb(230 230 230);
    padding: 20px;
    row-gap: 10px;
    margin-top: 20px;
}
.header-user-info__item {
    display: flex;
    align-items: center;
}
.user-info__icon {
    max-width: 15px;
}
.user-info__label {
    margin-left: 20px;
}
.header-edit__btn {
    background: #FFF;
    color: #000;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 6px 0 rgb(230 230 230);
}
.header-wallet-info {
    border-bottom: 1px #ccc solid;
    padding-bottom: 10px;
}
.header-sns-info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 10px;
}
.header-edit__btn:hover {
    background: #000;
    color: #FFF;
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .header-content {
        display: flex;
        width: 100%;
        margin: 0;
        flex-direction: column;
        align-items: center;
    }
    .header-bg {
        height: 180px;
    }
    .header-personal {
        margin-top: -100px;
        width: 100%;
        justify-content: space-evenly;
    }
    .header-personal__name {
        font-size: 2.4rem;
    }

    .header-personal__deal-item {
        flex-direction: column-reverse;
        align-items: center;
    }
    .header-personal__deal-item-value {
        margin-left: 0;
    }
    .header-icon {
        height: 120px;
        width: 120px;
    }
    .header-edit {
    }
}
.background-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    display: block;
}
.profile-setting-bg {
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
    position: absolute;
    visibility: hidden;
    cursor: pointer;
}
.header-bg:hover .profile-setting-bg {
    visibility: initial;
}
.header-icon-container:hover .icon-setting-bg {
    visibility: initial;
}
.profile-setting__icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 30px;
    height: 30px;
}
.profile-edit__btn {
    background: #000;
    position: absolute;
    border-radius: 30px;
    color: #FFF;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    display: none;
    transition: initial;
}
.profile-edit__btn:hover {
    text-decoration: none;
    color : #FFF;
}
.profile-edit__btn:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 10px solid transparent;
    border-top: 10px solid #000;
}
.profile-edit__text {
    font-size: 1.3rem;
}
.profile-edit__icon {
    margin-left: 10px;
}
.p-top01__extra--info {
    position: relative;
}
