@charset 'UTF-8';

/**
 * 共通スタイル
 */
body {
    background-color: #fabf1b;
}

@media (min-width: 992px) {
    .container-fluid {
        max-width: 1440px;
    }
}

/**
 * ヘッダースタイル
 */
.header {
    margin-top: 1rem;
}

.header .content {
    padding: 2rem 0 0 0;

    border-radius: .5rem .5rem 0 0;
    background-color: #fff;
}

/**
 * メインスタイル
 */
.login .main .card {
    background-color: #071732;
}

.main .content {
    border-radius: 0 0 .5rem .5rem;
    background-color: #fff;
}

.main .content .content-body {
    padding: 2rem 0;
}

.main .content .content-body .content-body-title {
    font-size: 1.5rem;

    margin: 0 0 1rem 0;
    padding: 1rem 0;

    border-bottom: 1px solid #dee2e6;
}

.main .content .content-body .content-body-subtitle {
    font-size: 1.25rem;

    margin: 0;
}

/**
 * フッタースタイル
 */
.footer {
    margin: 1rem;
}

/**
 * インポートスタイル
 */
.w-5 {
    width: 5%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

@media (min-width: 576px) {
    .w-sm-3 {
        width: 3%;
    }

    .w-sm-5 {
        width: 5%;
    }

    .w-sm-10 {
        width: 10%;
    }

    .w-sm-15 {
        width: 15%;
    }

    .w-sm-20 {
        width: 20%;
    }

    .w-sm-30 {
        width: 30%;
    }

    .w-sm-35 {
        width: 35%;
    }

    .w-sm-40 {
        width: 40%;
    }

    .w-sm-45 {
        width: 45%;
    }

    .w-sm-50 {
        width: 50%;
    }

    .w-sm-75 {
        width: 75%;
    }

    .w-sm-100 {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .w-md-3 {
        width: 3%;
    }

    .w-md-5 {
        width: 5%;
    }

    .w-md-10 {
        width: 10%;
    }

    .w-md-15 {
        width: 15%;
    }

    .w-md-20 {
        width: 20%;
    }

    .w-md-30 {
        width: 30%;
    }

    .w-md-35 {
        width: 35%;
    }

    .w-md-40 {
        width: 40%;
    }

    .w-md-45 {
        width: 45%;
    }

    .w-md-50 {
        width: 50%;
    }

    .w-md-75 {
        width: 75%;
    }

    .w-md-100 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .w-lg-3 {
        width: 3%;
    }

    .w-lg-5 {
        width: 5%;
    }

    .w-lg-10 {
        width: 10%;
    }

    .w-lg-15 {
        width: 15%;
    }

    .w-lg-20 {
        width: 20%;
    }

    .w-lg-30 {
        width: 30%;
    }

    .w-lg-35 {
        width: 35%;
    }

    .w-lg-40 {
        width: 40%;
    }

    .w-lg-45 {
        width: 45%;
    }

    .w-lg-50 {
        width: 50%;
    }

    .w-lg-75 {
        width: 75%;
    }

    .w-lg-100 {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .w-xl-3 {
        width: 3%;
    }

    .w-xl-5 {
        width: 5%;
    }

    .w-xl-10 {
        width: 10%;
    }

    .w-xl-15 {
        width: 15%;
    }

    .w-xl-20 {
        width: 20%;
    }

    .w-xl-30 {
        width: 30%;
    }

    .w-xl-35 {
        width: 35%;
    }

    .w-xl-40 {
        width: 40%;
    }

    .w-xl-45 {
        width: 45%;
    }

    .w-xl-50 {
        width: 50%;
    }

    .w-xl-75 {
        width: 75%;
    }

    .w-xl-100 {
        width: 100%;
    }
}

/**
 * 共通
 */
.datepicker {
    padding: .375rem .75rem !important;
}

.datepicker-dropdown {
    margin-top: 7rem;
}

/**
 * フォーム
 */
.step-navi {
    position: relative;

    overflow: hidden;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;

    text-align: center;

    *zoom: 1;
}

.step-navi ol {
    padding: 0;
}

.step-navi .step {
    line-height: 40px;

    position: relative;

    display: inline-block;
    float: left;

    box-sizing: border-box;
    width: 5%;
    padding: 0 5px 0 5px;

    background-color: #dee2e6;
}

.step-navi .step:before,
.step-navi .step:after {
    position: absolute;
    left: -5px;

    display: block;

    width: 20px;
    height: 20px;

    content: '';

    border-left: 2px solid #fff;
    background-color: #dee2e6;
}

.step-navi .step:after {
    top: 0;

    -webkit-transform: skew(30deg);
    transform: skew(30deg);
}

.step-navi .step:before {
    bottom: 0;

    -webkit-transform: skew(-30deg);
    transform: skew(-30deg);
}

.step-navi .step:first-child {
    border-radius: 5px 0 0 5px;
}

.step-navi .step:first-child:before,
.step-navi .step:first-child:after {
    content: none;
}

.step-navi .step:last-child {
    border-radius: 0 5px 5px 0;
}

.step-navi .step.current {
    font-weight: bold;

    color: #fff;
    background-color: #eb6129;
}

.step-navi .step.current:before,
.step-navi .step.current:after {
    background-color: #eb6129;
}

.regist-form .form-inline-text {
    line-height: 1.5;

    display: inline-block;

    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);

    text-align: center;
}

.table {
    border-top: 1px solid #dee2e6 !important;
}

.table .label-name {
    font-weight: 300;

    display: block;

    width: auto;
    padding: .3rem .75rem;

    border-width: 0 1px 1px 1px;
}

.table .label-value {
    display: block;

    width: auto;

    border-width: 0 1px 1px 1px;
}

@media (min-width: 768px) {
    .table .label_group_name {
        vertical-align: middle;
    }

    .table .label-name {
        display: table-cell;

        width: 25%;

        vertical-align: middle;
    }

    .table .label-value {
        display: table-cell;

        width: 75%;

        vertical-align: middle;

        background-color: #fff;
    }
}

/* 全体 */
.notes-wrap {
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 画像＋テキスト横並び */
.notes-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* 左：画像 */
.notes-image {
    flex: 0 0 30%;
}

.notes-image img {
    width: 100%;
}

/* 右：テキスト */
.notes-content {
    flex: 1;
    text-align: left;
}

.notes-content p {
    font-size: 1rem;
}

/* 確認済みボタン中央寄せ */
.form-checklist {
    text-align: center;
}

/* スマホ */
@media (max-width: 560px) {
    .notes-row {
        flex-direction: column;
        text-align: center;
    }
}

/**
 * フォーム部品
 */

.form-checklist .form-check-btn {
    display: none;
}

.form-checklist .form-check-btn+label {
    display: inline-block;
    position: relative;
    height: calc(2.875rem + 2px);
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding: .5rem 3rem .5rem 4rem;
    align-items: center;
    font-size: 1.25rem;
    color: #EC6628;
    text-align: center;
    border: 2px solid #EC6628;
    border-radius: 2rem;
    cursor: pointer;
}

.form-checklist .form-check-btn+label::before {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 2rem;
    width: 20px;
    height: 20px;
    border: 1px solid #EC6628;
    border-radius: 4px;
}

.form-checklist .form-check-btn:checked+label {
    background-color: #EC6628;
    border: 1px solid #EC6628;
    color: #fff;
}

.form-checklist .form-check-btn:checked+label::before {
    border: 1px solid #fff;
}

.form-checklist .form-check-btn:checked+label::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 2.25rem;
    width: 12px;
    height: 22px;
    transform: rotate(40deg);
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
}