@font-face {
    font-family: 'Meiryo';
    src: url('../font/meiryo.ttc') format('opentype');
}

body {
    font-family: "Meiryo", メイリオ, "ＭＳ Ｐゴシック", "proxima nova", Arial, sans-serif;
}

.content-master {
    min-height: calc(100vh - 128px);
    max-width: 875px;
    margin: 0 auto;
}

.screen-title {
    font-size: 22px;
}

.screen-title-sub{
    font-size: 12px;
}

@media screen and (max-width: 575.98px) {
    .screen-title {
        font-size: 15px;
    }
    .container .description {
        font-size: 12px;
    }
    .screen-title-sub{
        font-size: 10px;
    }
}

@media screen and (width: 780px) {
    .screen-title {
        font-size: 25px;
    }
    .container .description {
        font-size: 15px;
    }
}


/* ========================================FONT=============================================== */

.font-9 {
    font-size: 9px !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-24 {
    font-size: 24px !important;
}


/* ========================================BUTTON=============================================== */

.sk-btn {
    border: none;
    align-items: center;
    font-size: 13px;
    padding: 7px 24px;
    text-align: center;
    line-height: 15px;
    border-radius: 5px;
}

a.sk-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.sk-btn-black {
    color: #ffffff;
    background-color: #595757;
}

.sk-btn-spacing-lg {
    letter-spacing: 10px;
    padding: 10px 68px !important;
}

.sk-btn-spacing-md {
    letter-spacing: 10px;
    padding: 7px 50px !important;
}

.sk-btn-padding-lg {
    padding: 8px 68px !important;
}

.sk-btn:disabled {
    background-color: #9d9d9d;
}

.sk-btn-red {
    background: #BF0D23;
    border-radius: 20px;
    color: #ffffff;
    font-size: 12px;
    padding: 7px 10px;
}

.sk-btn-blue {
    background: #036EB4;
    border-radius: 20px;
    color: #ffffff;
}


/* ========================================ERROR=============================================== */

p.error {
    color: red;
    text-align: left;
    font-size: 10px;
}

input.error, select.error {
    border: solid 1px red;
}


/* ========================================OTHER=============================================== */

.card {
    background-color: #F3F4F4;
    border: solid 1px #C5C6C6;
}

.screen-title img {
    margin-bottom: 3px;
}


/* ========================================FORM=============================================== */

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}


/* ========================================RANK INFO(IN MYPGAGE)=============================================== */

.rank-info {
    margin: 30px auto;
    padding: 30px;
    background-color: #F3F4F4;
}

.rank-info .top-left {
    text-align: center;
    border-right: 1px solid #D8D9D9;
}

.rank-info .top-left h3 {
    font-size: 22px;
}

.rank-info .top-left p {
    font-size: 15px;
    padding: 20px 0px 0px 0px;
}

.rank-info .top-right {
    padding-left: 50px;
    margin-top: 10px;
    font-size: 15px;
}
.rank-info img {
    height: 40px;
    max-width: 230px;
}

@media (max-width: 575.98px) {
    .rank-info {
        margin: 15px auto;
    }
    .rank-info .top-left h3 {
        font-size: 22px;
    }
    .rank-info .top-left p {
        font-size: 15px;
    }
    .rank-info .top-right {
        font-size: 15px;
    }
    .rank-info .top-left img {
        width: 129px;
    }
    .rank-info .top-left {
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #D8D9D9;
    }
    .rank-info .top-right {
        text-align: center;
        padding-left: 0px;
    }
}

@media (width: 780px) {
    .rank-info .top-left h3 {
        font-size: 25px;
    }
    .rank-info .top-left p {
        font-size: 25px;
    }
    .rank-info .top-right {
        font-size: 25px;
    }
}


/* ========================================LOADING========================================= */

.loading {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #80808054;
    z-index: 9999;
}

.lds-spinner {
    color: official;
    display: inline-block;
    position: fixed;
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* ===================================PAGINATE============================== */

.pagination {
    justify-content: end;
}

.page-link {
    border: none;
    border-radius: 50%;
    color: #000000;
    margin: 0 5px;
    padding: 0.25rem;
    min-width: 23px;
    font-size: 12px;
    text-align: center;
}

.page-link:hover {
    color: #ffffff;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #9B9C9C;
}

.page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

@media (max-width: 780px) {
    .pagination {
        justify-content: center;
        margin-top: 30px;
    }
    /* .page-link {
        padding: 0.25rem 0.75rem;
        font-size: 28px;
    } */
}


/* ===============================================Spacing=========================================== */

.mt-input {
    margin-top: 35px;
}


/* ===============================================Note=========================================== */

p.note {
    color: #495057;
    text-align: left;
    font-size: 12px;
}
