/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

span.navbar-brand, a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    font-size: 1rem !important;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.required:after {
    color: var(--nta-error, red);
    content: "*";
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji","IPA明朝"
}


.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

#ntaarea {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    font-size: var(--nta-font-size-sm, 16px);
    font-family: var(--nta-font-family, "BIZ UDPGothic", "Noto Sans JP", "Noto Sans", sans-serif);
    color: var(--nta-text, #222222);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/*============================================================================
    ここからカスタム
============================================================================*/

/*----------------------------------------------------------------------------
    CSS変数定義（デザイントークン）
    ※ XDデザイン確定値。変更時はここのみ修正すること。
----------------------------------------------------------------------------*/
:root {
  /* レイアウト */
  --nta-navbar-height: 48px;   /* ナビバー固定高さ（JS参照用: getComputedStyle(document.documentElement).getPropertyValue('--nta-navbar-height')） */

  /* カラーパレット */
  --nta-primary:          #9BDFBD;  /* ナビバー背景・プライマリボタン背景 */
  --nta-primary-dark:     #31634A;  /* ナビバーテキスト色 */
  --nta-primary-light:    #C2E8D5;  /* アクセントカード背景（チャットログ等） */
  --nta-table-header-bg:  #E8F5EF;  /* テーブルヘッダー背景 */
  --nta-bg:               #FFFFFF;  /* ページ背景・カード背景 */
  --nta-bg-muted:         #EEEEEE;  /* グレー背景エリア（住所・グラフエリア等） */
  --nta-highlight-bg:     #FFF6BC;  /* 数値ハイライト背景 */
  --nta-text:             #222222;  /* 基本テキスト色・ボタンテキスト色 */
  --nta-border:           #CCCCCC;  /* ボーダー色 */
  --nta-error:            #dc3545;  /* エラー色 */
  --nta-error-bg:         #f8d7da;  /* エラー背景色 */

  /* タイポグラフィ */
  --nta-font-family:      "BIZ UDPGothic", "Noto Sans JP", "Noto Sans", sans-serif;
  --nta-font-size-xl:     64px;     /* 数値ハイライト（チャット回数等） */
  --nta-font-size-lg:     40px;     /* 大きな数値テキスト（年・月等） */
  --nta-font-size-md:     32px;     /* サブ数値（/500、/3,000回等） */
  --nta-font-size-base:   24px;     /* 画面タイトル・カードタイトル・ラベル */
  --nta-font-size-sm:     16px;     /* 本文・フォーム・テーブル */
  --nta-font-size-xs:     10px;     /* Ver表示（共通ヘッダー） */
  --nta-font-weight-bold: 700;      /* 太字 */

  /* コンポーネント */
  --nta-card-radius:           16px;            /* カード・グレーエリア角丸 */
  --nta-btn-radius:            4px;             /* プライマリボタン角丸 */
  --nta-btn-secondary-radius:  8px;             /* セカンダリボタン角丸 */
  --nta-btn-padding:           0.25rem 0.75rem; /* ボタンパディング（form-controlと統一） */
}

.bg-nta {
    background-color: var(--nta-primary, #9BDFBD) !important;
}

.nav-title {
    text-align: center;
    color: white;
    height: 35.5px;
}

.side-menu {
    background-color: var(--nta-primary-dark, #31634A);
    height: auto;
    min-height: 100vh;
    width: 35.5px !important;
}

/*@media (min-width: 992px) {*/
.side-menu-lg {
    min-width: 213px !important;
    max-width: 213px !important;
}
/*}*/

.side-menu ul {
}

    .side-menu ul li {
        color: white;
    }

        .side-menu ul li a {
            color: white !important;
        }

h1 {
    border-bottom: solid 3px var(--nta-primary, #9BDFBD);
    font-weight: bold;
    padding-bottom: 0.25rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.slide_label {
    border: none;
    background: none;
}

input.slide_label:disabled {
    color: #212529;
}

.card-body {
    padding: 0.25rem;
}

label {
    vertical-align: middle;
    font-weight: bold;
    /*    height: 100%;
    align-items: center !important;
    display: flex !important;
*/
}

.btn-nta {
    background-color: var(--nta-primary, #9BDFBD);
    color: var(--nta-text, #222222);
    font-size: var(--nta-font-size-sm, 16px);
    font-family: var(--nta-font-family, "BIZ UDPGothic", sans-serif);
    padding: 0.25rem 0.75rem;
    height: calc(1.5em + 0.5rem + 2px);
    border-radius: var(--nta-btn-radius, 4px);
    border: none;
    line-height: 1.5;
}

.btn-nta-secondary {
    background-color: var(--nta-bg, #FFFFFF);
    color: var(--nta-text, #222222);
    font-size: var(--nta-font-size-sm, 16px);
    font-family: var(--nta-font-family, "BIZ UDPGothic", sans-serif);
    padding: 0.25rem 0.75rem;
    height: calc(1.5em + 0.5rem + 2px);
    border: 1px solid var(--nta-border, #CCCCCC);
    border-radius: var(--nta-btn-secondary-radius, 8px);
    line-height: 1.5;
}

.ui-datepicker-current-day .btn-nta {
    min-width: auto !important;
    padding: 0.5rem;
}

.btn-nta:hover {
    background-color: var(--nta-primary-dark, #31634A);
    color: var(--nta-bg, #FFFFFF);
}

.btn.btn-nta:disabled,
.btn.btn-nta[disabled] {
    background-color: var(--nta-primary, #9BDFBD);
    color: var(--nta-text, #222222);
    opacity: 0.65;
}

.btn.btn-nta:focus,
.btn.btn-nta:focus-visible {
    background-color: var(--nta-primary-dark, #31634A);
    color: var(--nta-bg, #FFFFFF);
    /*outline: 2px solid var(--nta-primary-dark, #31634A);
    outline-offset: 2px;*/
    box-shadow: none;
}

.btn.btn-nta:active {
    background-color: var(--nta-primary-dark, #31634A);
    color: var(--nta-bg, #FFFFFF);
}

.btn-nta-secondary:hover {
    background-color: #D5D5D5;
    color: var(--nta-text, #222222);
    border-color: #AAAAAA;
}

.btn-nta-secondary:focus,
.btn-nta-secondary:focus-visible {
    background-color: #D5D5D5;
    color: var(--nta-text, #222222);
    box-shadow: none;
}

.btn.btn-nta-secondary:active {
    background-color: #D5D5D5;
    color: var(--nta-text, #222222);
}


.table-nta th {
    vertical-align: middle !important;
    text-align: center !important;
    background-color: var(--nta-table-header-bg, #E8F5EF);
    border-color: var(--nta-border, #CCCCCC);
    overflow-x: auto;
    white-space: nowrap;
}

.table-nta tbody td, .table-nta tbody th {
    vertical-align: middle !important;
    overflow-x: auto;
    white-space: nowrap;
}

.table-nta {
    position: sticky;
    top: -1px;
    z-index: 1;
    background-color: white;
    table-layout: fixed;  /* 列幅を固定（各画面でth/tdにwidthを指定すること） */
}

.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
    /*background-color:white !important;*/
}

body {
}

.alert {
    margin-bottom: 0;
    padding: .1rem .5rem;
}

.fc-white {
    color: white !important;
}

.fc-red {
    color: var(--nta-error, #dc3545)!important;
}

.nav-title:hover {
    color: white !important;
}


.side-li1 {
    margin-bottom: 20px;
    list-style: none;
    padding-left: 5px;
}

    .side-li1:before {
        content: "■"
    }

.side-li2 {
    list-style: none;
    padding-left: 10px;
}

    .side-li2:before {
        content: "▼"
    }


.side-li3 {
    list-style: disc;
    margin-left: 10px;
}

.side-ul2 {
    padding-left: 9.94px;
}

.side-ul3 {
    padding-left: 16.33px;
}

.bg-mintcream {
    background-color: mintcream !important;
}

.print-on {
    display: none;
}

@media print {

    body {
        font-family: IPA明朝;
    }

    .print-off {
        display: none;
    }

    .print-on {
        display: block;
    }

    table,
    .table {
        border-collapse: inherit !important;
    }

    .table-bordered {
        border-spacing: inherit !important;
    }

    .col-1-5, .col-4-5 {
        position: relative;
        width: 100%;
        padding-right: 10.65px;
        padding-left: 10.65px;
    }

    @media (min-width: 1200px) {
        .offset-1-5 {
            margin-left: 12.499999%;
        }

        .offset-5-5 {
            margin-left: 45.83333315%;
        }

        .col-1-5 {
            flex: 0 0 12.499999%;
            max-width: 12.499999%;
            padding-right: 0 !important;
        }
    }
}

.no-1,
.no-3 {
    width: 53.25px !important;
}

.no-2 {
    width: 106.5px !important;
}

.col-1-5, .col-4-5 {
    position: relative;
    width: 100%;
    padding-right: 10.65px;
    padding-left: 10.65px;
}

.offset-1-5 {
    margin-left: 12.499999%;
}

.offset-5-5 {
    margin-left: 45.83333315%;
}

.col-1-5 {
    -ms-flex: 0 0 12.499999;
    flex: 0 0 12.499999%;
    max-width: 12.499999%;
    padding-right: 0 !important;
}


.fc-black {
    color: black !important;
}


.fc-blue {
    color: blue !important;
}


.fc-green {
    color: green !important;
}

.text-break-all {
    word-break:break-all;
}

.outer {
    /*    display: flex;
    justify-content: center;
    align-items: center;
*/
}

.inner {
    /*    position: absolute;
    top: 550px;
    right: 0;
    bottom: 30vh;
    left: 0;
    margin: auto;
    width: 80%;
    height: 3.2rem;
*/
    margin-top: 100px;
}

.input-validation-error {
    background-color: var(--nta-error-bg, #f8d7da) !important;
}

.form-group {
    margin-bottom: 0.75rem !important;
}

hr {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

ul {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* 本文リストの項目間隔（サイドメニュー・ドロップダウン等には影響させない） */
main ul li {
    margin-bottom: 0.35rem;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: none !important;
}

.table {
    margin-top: 0.5rem !important;
    margin-bottom: 0.75rem !important;
}

h1, .h1 {
    font-size: 1.775rem;
}

h2, .h2 {
    font-size: 1.42rem;
}

h3, .h3 {
    font-size: 1.2425rem;
}

h4, .h4 {
    font-size: 0.95rem;
}

h5, .h5 {
    font-size: 0.8875rem;
}

h6, .h6 {
    font-size: 0.71rem;
}

.form-control {
    font-size: var(--nta-font-size-sm, 16px);
    padding: 0.25rem 0.5rem;
    height: calc(1.5em + 0.5rem + 2px);
    font-family: var(--nta-font-family, "BIZ UDPGothic", sans-serif);
}

select.form-select {
    font-size: var(--nta-font-size-sm, 16px);
    height: calc(1.5em + 0.5rem + 2px);
    font-family: var(--nta-font-family, "BIZ UDPGothic", sans-serif);
    /* padding・appearance・▼アイコンはBootstrapデフォルトに任せる */
}

.page-link {
    padding: 0.3rem 0.4rem;
}

.btn {
    font-size: 0.5rem;
}

/* NTAボタンはfont-sizeを個別指定するため.btnの上書きを無効化 */
.btn.btn-nta,
.btn.btn-nta-secondary {
    font-size: var(--nta-font-size-sm, 16px);
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 10.65px;
    padding-left: 10.65px;
}

.row {
    margin-right: -10.65px;
    margin-left: -10.65px;
}

.container-fluid {
    padding-right: 10.65px;
    padding-left: 10.65px;
}

p {
    margin-bottom: 1rem;
}




#collapseExample {
    height: auto !important;
    display: none !important;
    transform: translateX(-100%);
    transition: 0.35s transform;
    -webkit-transition: height 0.05s ease;
    transition: height 0.05s ease;
}

    #collapseExample.show {
        display: block !important;
        transform: translateX(0);
    }

.font-1 {
    font-size: 1.25rem;
    padding: 3px;
    height: auto;
    min-height: 100vh;
}





@media (min-width: 768px) {
    .bd-links {
        position: -webkit-sticky;
        position: sticky;
        top: 5rem;
        display: block !important;
        height: calc(100vh - 0rem);
        padding-left: .25rem;
        margin-left: -.25rem;
        overflow-y: auto;
    }
}

.bd-links {
    overflow: auto;
    font-weight: 600;
}

.bd-sidebar {
    grid-area: sidebar;
}

aside {
    display: block;
}

.bd-links .btn {
    padding: .25rem .5rem;
    font-weight: 600;
    color: rgba(0,0,0,0.65);
    background-color: none;
    border: 0;
}


header a {
    color: white;
}

.navbar {
    padding: 0px;
    height: var(--nta-navbar-height);
}

    .navbar a:hover {
        color: white !important;
    }

.dropdown-menu {
    background-color: var(--nta-primary-dark, #31634A) !important;
    padding: 0.25rem 0;                                              /* 上下に少し余白を持たせる */
    font-size: var(--nta-font-size-sm, 16px);
    border-radius: var(--nta-btn-secondary-radius, 8px) !important; /* CSS変数で角丸を管理 */
}

.dropdown-header {
    color: var(--nta-primary, #9BDFBD) !important;  /* primaryカラーでタイトルを視認しやすく */
    font-size: 0.75rem;
    font-weight: var(--nta-font-weight-bold, 700);
    padding-left: 1rem;                             /* リンクとのインデント差をつける */
    padding-top: 0.5rem;
}

.dropdown-item {
    background-color: var(--nta-primary-dark, #31634A) !important;
    height: 30px;
    color: var(--nta-bg, #FFFFFF) !important;
    padding-left: 1.75rem;                          /* ヘッダーより深くインデント */
}

    .dropdown-item:hover {
        height: 30px;
        background-color: var(--nta-primary, #9BDFBD) !important; /* primaryカラーに統一 */
        color: var(--nta-text, #222222) !important;               /* 明るい背景に合わせて暗色テキスト */
    }

.dropdown-divider {
    /* --nta-primary の透過色（CSS変数では透過指定できないため直値だが変数ベースで管理） */
    border-color: rgba(155, 223, 189, 0.3) !important;
    margin: 0.25rem 0;
}

.dropright .dropdown-menu {
    margin-top: -1px;
    margin-left: -1px;
}
/*.dropright:hover .dropdown-menu {
    display: block;
}
*/
.dropright:hover {
    display: block;
}

.col-form-label {
    padding-top: 0px;
    padding-bottom: 0px;
}

.form-control {
    margin-top: 0px;
}

.table th {
    color: #495057;
    background-color: var(--nta-table-header-bg, #E8F5EF);
    border-color: var(--nta-border, #CCCCCC);
}

main a {
    text-decoration: underline;
}

.dropdown {
    height: 30px;
}

.dropdown-menu {
    margin-top: -1px !important;
}

.nav-link {
    padding: .45rem;
}

.system-navi ul {
    width: auto;
    padding: 0px;
}

    .system-navi ul li {
        width: auto;
        float: left !important;
        list-style: none;
        margin: 0;
    }


.dataTables_scrollBody table {
    position: inherit;
    top: -7.5px;
}

.dataTables_scrollBody thead {
    visibility: hidden;
}


table tbody th, table tbody td, th {
    padding: 0.35rem !important;
}

.system-navi {
    width: calc(100vw - 300px);
}

@media (min-width: 1200px) {
    .system-navi {
        width: auto;
    }
}

.sys-active {
    /*color: #ff0000;*/
    border-bottom: solid 3px white;
    padding-bottom: 0px;
}

    .sys-active:hover {
        /*color: white !important;*/
    }

.table-responsive {
    overflow-x: hidden !important;
}

/*添付ファイル*/
.custom-file-control {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 1.5rem;
    padding: .5rem 1rem;
    line-height: 1.5;
    color: #464a4c;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    overflow: hidden;
}

.custom-file-input:disabled + .custom-file-control {
    background-color: #e9ecef;
}

.custom-file-control::before {
    position: absolute;
    top: -4px;
    right: -1px;
    bottom: -1px;
    z-index: 6;
    display: block;
    height: 2.5rem;
    padding: .5rem 1rem;
    line-height: 1.5;
    color: #464a4c;
    background-color: #eceeef;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0 .25rem .25rem 0;
}

.custom-file-control::before {
    content: "参照";
    font-size: 8px;
}

/*ラジオとチェックの位置ずれ修正*/
input[type="radio"], input[type="checkbox"] {
    position: relative;
    top: 5px;
}

.nta_datepicker {
    width: 130px;
    font-size: var(--nta-font-size-sm, 16px);
    padding: 0.25rem 0.5rem;
    height: calc(1.5em + 0.5rem + 2px);
    font-family: var(--nta-font-family, "BIZ UDPGothic", sans-serif);
    border: 1px solid var(--nta-border, #CCCCCC);
    border-radius: 4px;
    color: var(--nta-text, #222222);
}

.taniEn {
    padding-top: 0.5em
}

/***********************共通の幅指定**********************/
/*共通で使用するものはsite.cssで記載*/
/*共通でないものは各画面のcssで記載*/

.w_year {
    width: 40px;
}

.w_month {
    width: 30px;
}

.w_bango_nen {
    width: 30px;
}

.w_bango_remban {
    width: 55px
}

.w_bango_eda {
    width: 30px;
}

.w_koji_no {
    width: 70px;
}

.w_chc_shiten_select {
    width: 85px;
}

.w_chc_jigyojo_select {
    width: 120px;
}

.w_chc_kenshu_select {
    width: 70px;
}

.w_szc_konyukb_select {
    width: 100px;
}

.w_shohizei {
    max-width: 70px;
}

.w_szc_kingaku {
    width: 85px;
}

/*============================================================================
    共通コンポーネント（NTA全画面共通）
============================================================================*/

/* ---- カード ---- */
.nta-card {
    background-color: var(--nta-bg, #FFFFFF);
    border: 2px solid var(--nta-border, #CCCCCC);
    border-radius: var(--nta-card-radius, 16px);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.nta-card-accent {
    background-color: var(--nta-primary-light, #C2E8D5);
    border: none;
    border-radius: var(--nta-card-radius, 16px);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.nta-card-accent:hover {
    opacity: 0.85;
}

/* ---- カードタイトル ---- */
.nta-card-title {
    font-size: var(--nta-font-size-base, 24px);
    font-weight: var(--nta-font-weight-bold, 700);
    color: var(--nta-text, #222222);
    margin-bottom: 0.5rem;
}

/* ---- アイコン円 ---- */
.nta-icon-circle {
    background-color: var(--nta-bg, #FFFFFF);
    border-radius: 78px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

/* ---- 数値ハイライト ---- */
/* 数値全体（value + sub）をラップする要素に適用 */
.nta-count-highlight {
    display: inline-block;
    box-shadow: inset 0 -30px 0 var(--nta-highlight-bg, #FFF6BC);
    padding: 0 0.25rem;
    line-height: 1.2;
}

.nta-count-value {
    font-size: var(--nta-font-size-xl, 64px);
    font-weight: var(--nta-font-weight-bold, 700);
    color: var(--nta-text, #222222);
    line-height: 1.2;
}

.nta-count-sub {
    font-size: var(--nta-font-size-md, 32px);
    font-weight: var(--nta-font-weight-bold, 700);
    color: var(--nta-text, #222222);
}

.nta-count-label {
    font-size: var(--nta-font-size-base, 24px);
    font-weight: var(--nta-font-weight-bold, 700);
    color: var(--nta-text, #222222);
    margin-bottom: 0.5rem;
}

/* ---- グレー背景エリア（住所・グラフエリア等） ---- */
.nta-bg-area {
    background-color: var(--nta-bg-muted, #EEEEEE);
    border-radius: var(--nta-card-radius, 16px);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

/*============================================================================
    レイアウト（コンテンツ幅制限）
    PC専用：1280px〜1920px対応
    最大幅1200px・中央寄せ・左右余白あり
============================================================================*/
.container {
    max-width: 1200px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/*============================================================================
    パスワード表示切替（共通）
    ブラウザ標準のパスワード表示アイコンを非表示にし、アプリ側のトグルボタンに統一する
============================================================================*/

/* Edgeのネイティブ目アイコンを非表示 */
input[type="password"]::-ms-reveal {
    display: none;
}

/* パスワード入力欄 + トグルボタンのラッパー */
.nta-password-group {
    position: relative;
    display: flex;
    align-items: center;
}

.nta-password-group .form-control {
    padding-right: 2.5rem; /* ボタン分の余白 */
}

/* トグルボタン（入力欄の右端に重ねる） */
.nta-password-toggle {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    color: var(--nta-text, #222222);
    cursor: pointer;
    line-height: 1;
    font-size: 1rem;
    opacity: 0.6;
}

.nta-password-toggle:hover {
    opacity: 1;
}

/*============================================================================
    フッター
============================================================================*/
.nta-footer {
    background-color: var(--nta-bg-muted, #EEEEEE);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--nta-font-size-xs, 10px);
    color: var(--nta-text, #222222);
    width: 100%;
    margin-top: auto;
    z-index: 100;
    padding: 0 1.5rem;
}

.nta-footer a {
    color: var(--nta-text, #222222);
    text-decoration: underline;
    margin: 0 0.5rem;
}

.nta-footer a:hover {
    color: var(--nta-primary-dark, #31634A);
}
