<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* @font-face {
    font-family: "HgMaruGoThicPro";
    src: url("../fonts/HG-MaruGothic-Pro.woff") format("truetype");
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif ;
}

body {
    font-family: 'Noto Sans JP', sans-serif ;
    font-size: 14px;
    font-weight: 400;
}

.cl-primary {
    color: #00a3d9;
}

.Form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    display: flex;
}
.Form-group &gt; label {
    padding-right: 10px;
    width: 30%;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.Form-group &gt; label &gt; .required {
    display: inline-block;
    padding: 3px 3px;
    font-size: 11px;
}
.Form-group &gt; input,
.Form-group &gt; textarea,
.Form-group &gt; select,
.Form-group &gt; .Form-groupRadio {
    padding-left: 5px;
    width: 60%;
    font-size: 14px;
    border: none;
    outline: none;
    border-radius: 0;
}
.Form-group &gt; p.Msg-error {
    width: 60%;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bbb;
    opacity: 1; /* Firefox */
}
:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbb;
}
::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bbb;
}
.Form-group &gt; input,
.Form-group &gt; select,
.Form-group div &gt; input {
    height: 35px;
}
.Form-group &gt; select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../icons/triangle.svg);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: calc(100% - 7.5px) center;
}
.Form-group-note {
    text-align: left;
    font-size: 12px;
    color: #212529;
}

.Form-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default checkbox */
.Form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    height: 20px;
    width: 20px;
    background: #fff;
    transform: translateY(-50%);
}
/* When the checkbox is checked, add a blue background */
.Form-checkbox input:checked ~ .checkmark {
    background: #fff;
}
/* Create the checkmark/indicator (hidden when not checked) */
.Form-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.Form-checkbox input:checked ~ .checkmark:after {
    content: "";
    display: inline-block;
}
/* Style the checkmark/indicator */
.Form-checkbox .checkmark:after {
    width: 7px;
    height: 16px;
    border: solid #00a3d9;
    border-width: 0 3px 3px 0;
    -webkit-transform: translateX(0px) rotate(45deg);
    -ms-transform: translateX(0px) rotate(45deg);
    transform: translateX(0px) rotate(45deg);
}
.Form-groupRadio {
    display: flex;
}
.Form-groupRadio &gt; label {
    margin-right: 20px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}
.Form-groupRadio input[type="radio"] {
    margin-right: 5px;
    width: 19px;
    height: 19px;
}

/**
 * MODAL
**/
.BasicModal-container .modal-dialog {
    margin: 150px auto;
}
.BasicModal-container .modal-content {
    border: none;
}
.BasicModal-header {
    min-height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px 4px 0 0;
}
.BasicModal-header.info {
    background: #4dc3ff;
}
.BasicModal-header.success {
    background: #00a3d9;
}
.BasicModal-header.error {
    background: #e2747e;
}
.BasicModal-header &gt; i {
    color: #fff;
    font-size: 70px;
}
.BasicModal-content {
    text-align: center;
}
.BasicModal-content .text {
    margin-bottom: 0;
}
.BasicModal-footer {
    text-align: center;
}
.BasicModal-footer &gt; button {
    margin: 0 5px;
    padding: 7px 25px;
    color: #fff !important;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
}
.BasicModal-footer &gt; button &gt; i {
    margin-right: 3px;
}
.BasicModal-footer &gt; button.info {
    background: #33bbff;
}
.BasicModal-footer &gt; button.info:hover {
    background: #0099e6;
}
.BasicModal-footer &gt; button.success {
    background: #00a3d9;
}
.BasicModal-footer &gt; button.success:hover {
    background: #00b6f3;
}
.BasicModal-footer &gt; button.error {
    background: #e2747e;
}
.BasicModal-footer &gt; button.error:hover {
    background: #d7424e;
}

/**
* MESSAGES
*/
.Msg-error {
    display: inline-block;
    color: #ff0000;
    font-size: 13px;
    margin-bottom: 0;
}

/**
* BUTTONS
*/
.button {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background: #00a3d9;
    text-decoration: none;
    text-align: center;
    border: 1px solid #00a3d9;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.button:hover {
    color: #00a3d9;
    background: #fff;
    border: 1px solid #00a3d9;
}
.button.disabled {
    color: #fff;
    background: #999;
    border: 1px solid #999;
    cursor: default;
}
.button-default {
    background: #999;
    border: 1px solid #999;
}
.button-default:hover {
    color: #999;
    background: #fff;
    border: 1px solid #999;
}
.pointer-event-none {
    pointer-events: none;
}

/**
* COLORS
*/
.bg-green {
    background: #85b200;
}
.bg-default {
    background: #666;
}
.bg-orange {
    background: #ff8c1a;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    margin: auto;
}
.carousel-card {
    padding-top: 0px !important;
    display: flex;
    justify-content: center;
}
.carousel-card .carousel{
    width: 30vw;
    height: 23vw;
}
.carousel-inner .carousel-item img {
    object-fit: cover;
}
.carousel-control-link {
    text-decoration: none !important;
}
/* .carousel-control-prev {
    left: calc(50% - 360px);
}
.carousel-control-next {
    left: calc(50% + 200px);
} */
.carousel-control {
    width: 34px;
    height: 34px;
    background-color: #494949;
    border-radius: 25px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jobImage {
    text-align: center;
}
.jobImage img {
    width: 30vw;
    height: 20vw;
    object-fit: cover;
    margin: auto;
}

@media screen and (max-width: 992px) {
    .container {
        max-width: calc(100% - 30px);
    }
    .Form-group &gt; label {
        width: 40%;
    }
    .Form-group &gt; input,
    .Form-group &gt; textarea,
    .Form-group &gt; select,
    .Form-group &gt; .Form-groupRadio {
        width: 60%;
    }
}

@media screen and (max-width: 640px) {
    .container {
        max-width: 100%;
    }
    .SignUp-intro_title {
        margin-bottom: 10px !important;
    }
    .carousel-card {
        float: none;
        padding: 0 !important;
        margin-bottom: 15px;
    }
    .carousel-card .carousel{
        width: 100%;
        height: 50vw;
    }
}

@media screen and (max-width: 575px) {
    .BasicModal-container .modal-dialog {
        max-width: calc(100% - 20px);
    }
    .BasicModal-header {
        min-height: 120px;
    }
    .BasicModal-header &gt; i {
        font-size: 64px;
    }
}

#loading-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10001;
    background: rgba(255,255,255,0.8) url("/candidate/images/loading.gif") center no-repeat;
}

.text-red {
    color: #dc3545!important;
}
</pre></body></html>