:root {
    --primary-color: rgb(255 242 0 / 1);
    --secondary-color: #fbd100;
    --main-bg: #fff200;
    --main-text: #222;
    --nav-hover: #ffe600;
    --nav-active: #fff799;
    --box-bg: #fffbe0;
    --shadow: 0 2px 8px rgba(0,0,0,0.07);
    --navbar-bg: #fff;
    --icon-color: #50627d;
    --page-background: rgb(255 242 0 / 1);
    --button-color: rgb(255 242 0 / 1);
    --row-hover: #FFC600;
    --bg-success: #5cb85c;
    --bg-danger: #d9534f;
    --bg-warning: #f0ad4e;
    --bg-info: #5bc0de;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    /*background: var(--page-background);*/
    color: var(--main-text);
}

.c-pointer {
    cursor: pointer;
}

.font-bold {
    font-weight: 600;
}

.text-black {
    color: black!important;
}

.dflex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dflex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

.page-header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff807 !important;
    position: fixed;
    z-index: 100;
    background-size: contain;
    background-repeat: repeat;
}

.page-header .page-logo img {
    height: 50px;
}

.page-hemburger img {
    display: none;
    width: 0px;
    cursor: pointer;
}

.page-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page-user-name {
    margin-left: 20px;
}

.page-user-name span {
    font-size: 26px;
    font-weight: 600;
}

.page-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-menu-container ul {
    display: flex;
    margin: 0px 20px 0px 20px;
}

.page-menu-container ul li {
    list-style: none;
    width: 150px;
    text-align: center;
    cursor: pointer;
}

.page-menu-container ul li:hover {
    font-weight: 600;
}

.page-menu-text {
    flex: 4;
}

.page-menu-button {
    flex: 1;
    padding: 0px 10px;
}

.page-menu-button button {
    width: 80px;
    height: 30px;
    border: 1px solid #e1d8d8;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 2px;
}

.page-mobile-login {
    display: none;
}

.regist-title {
    font-weight: 600;
    font-size: 20px;
}

.regist-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 700px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0px 25px 45px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    margin-bottom: 50px;
}

.regist-form-title {
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    background-color: #6e6c6c;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.regist-item-container {
    padding: 20px;
    margin-bottom: 100px;
}

.regist-item {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 5px 0px 5px;
    margin-top: 5px;
}

.regist-item-key {
    flex: 1;
}

.regist-item-value {
    flex: 2;
    height: 40px;
    display: flex;
    align-items: center;
}

.regist-item-value input[type="text"] {
    width: 100%;
    height: 36px;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 0px 10px 0px 10px;
}

.regist-item-value input[type="radio"] {
    width: 100%;
    height: 20px;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 0px 10px 0px 10px;
}

.regist-item-value select {
    width: 100%;
    height: 36px;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 0px 10px 0px 10px;
}

.regist-input-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 120px;
}

.regist-radio-group {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 5px 0px 5px;
    margin-top: 5px;
}

.regist-radio-item {
    width: 90px;
}

.regist-radio-item input[type="radio"] {
    transform: scale(1.5);
    margin-right: 5px;

}

.regist-numbered-paragraph
{
    text-indent: -1.5em; 
    padding-left: 2em;
    margin-bottom: 1em;
    font-size: 14px;
}

.regist-consent-container {
    margin-top: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.regist-consent-topic {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 0px 0px 10px 0px;
}

.regist-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.regist-button button {
    width: 166px;
    height: 50px;
    border: 1px solid #e1d8d8;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 2px;
}

.regist-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.regist-image img {
    height: 200px;
    max-width: 250px;
}

.regist-submit-image {
    margin-top: 20px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.regist-submit-image button {
    width: 150px;
    height: 32px;
    border: 1px solid gray;
    border-radius: 5px;
    margin: 5px;
    border-color: lightgray;
}

.regist-item-finish {
    margin-bottom: 10px;
    margin-top: 63px;
    background-color: lightgray;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 5px 0px 5px;
}

.page-tk-container {
    display: flex;
    align-items: center;
    width: 95%;
    height: calc(100vh - 90px);
    flex-direction: column;
    font-size: 20px;
    background-color: white;
    padding: 50px;
}

.tk-text {
    font-size: 36px;
    padding: 10px;
}

.page-content {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-content-image {
    margin-bottom: 2px;
    border-bottom: 2px solid white;
}

.page-content-image img {
    width: 100%;
}

.page-topic {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-topic span {
    font-size: 20px;
    font-weight: 600;
}

.multilines-truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

@media (max-width: 750px) {
    .page-menu-group {
        font-size: 18px;
    }

    .regist-title {
        font-size: 18px;
    }

    .regist-form-container {
        width: 95%;
    }
}


@media (max-width: 580px) {
    .page-menu-group {
        font-size: 18px;
    }

    .page-menu-button {
        display: none;
    }

    .page-mobile-login {
        display: flex;
        justify-content: flex-end;
        position: relative;
        left: 0;
        top: 88px;
        height: 30px;
        padding: 0px 15px 0px 15px;
    }

    .page-mobile-login button {
        width: 80px;
        border: 1px solid #dbd5d5;
        border-radius: 5px;
    }

    .regist-title {
        font-size: 18px;
    }

    .page-header .page-logo img {
        height: 45px;
    }

    .regist-form-container {
        width: 95%;
    }

    .regist-item {
        font-size: 12px;
    }

    .form-check-label {
        font-size: 12px;
    }

    .regist-numbered-paragraph {
        font-size: 12px;
    }

    .tk-text {
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .page-menu-group {
        font-size: 16px;
    }

    .regist-form-title{
        font-size: 16px;
    }

    .regist-title {
        font-size: 16px;
    }

    .regist-item-key {
        font-size: 14px;
    }

    .form-check-label {
        font-size: 12px;
    }

    .regist-consent-container {
        font-size: 12px;
    }

    .regist-numbered-paragraph {
        font-size: 12px;
    }

    .form-check-label {
        font-size: 12px;
    }

    .tk-text {
        font-size: 15px;
    }
}

