@charset "utf-8";

/***************************************************
    共通
/***************************************************/

html, body {
    height: 100%;
    font-size: 10pt;
    font-family: 'Noto Sans JP', 'Yu Gothic Medium', 'Noto Sans Japanese', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
    color: #111;
    -webkit-text-size-adjust:100%;
}

body {
    background: #eee;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fcfcfc;
    z-index: 1;
}

.header-container {
    /* FUJI
    height:50px;
    border-bottom:solid 5px #999;
    */
    height:68px;
/*    box-shadow: 0px 2px 6px #1111110d; */
    display: flex;
    align-items:center;
    justify-content: space-between;
}

.header-container .left {
    display:flex;
}

.medi-logo {
    padding:10px;
}

.medi-logo img {
    width:100px;
}

.header-link {
    display:flex;
    align-items:center;
    justify-content: space-around;
    font-weight: bold;
    width: 60%;
}

.header-link a {
    color: #999;
}

.header-icon-link {
    /* FUJI
    display:flex;
    align-items:center;
    */
    display:flex;
    align-items:center;
    min-width:195px;
    justify-content: space-between;
}

.header-icon-link .link {
    /* FUJI
    position: relative;
    */
    text-align:center;
    cursor: pointer;
}

.header-icon-link i {
    color: #666;
    font-size: 1.3em;
    padding: 0 10px;
    cursor: pointer;
}

.header-icon-link span {
    position: absolute;
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: #C64641;
    border: 2px solid #fff;
    border-radius: 50%;
    /* FUJI
    right: 4px;
    */
    right: 11px;
    top: -4px;
}

.header-separater {
    width: 1px;
    height: 30px;
    background-color: #999;
    margin: 0 10px;
}

.header-account {
    display:flex;
    align-items:center;
}

.header-account .accountPnl{
    display:flex;
    background-color:#fcce40;
    border:solid 2px #fcce40;
    width:240px;
    height:40px;
    justify-content: space-between;
    align-items:center;
    border-radius:50px;
    position: relative;
}

.accountPnl.active{
    background-color:#fff7e0!important;
}

.header-account img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.header-account .name {
    position: absolute;
    left:40px;
    padding-left:10px;
    color: #111111;
    font-weight: bold;
    z-index:30;
}

.header-account .menuBtn{
    border-radius: 50px;
    background-color: #fff;
    color:#666666;
    height: 40px;
    width: 40px;
    padding: 9px;
    font-size:22px;
    cursor: pointer;
    border:solid 2px #fcce40;
    position: absolute;
    right:-3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuPnl {
    position: absolute;
    top: 21px;
    left: -2px;
    width: 200px;
    height: auto;
    color:#111111;
    font-weight: bold;
    background-color: #fff;
    border: solid 2px #fcce40;
    display: none; 
    border-radius: 0px 0px 20px 20px;
    padding:15px 20px 5px 20px;
    text-align: left;
    z-index: -1; 
}

.menuPnl div{
    padding:10px;
    cursor:pointer;
}

.menuPnl.active {
    display:block;
    transition: appear .5s ease;
}

.hamburger-line {
    /* 線の長さと高さ */
    width: 100%;
    height: 3px;
    /* バーガー線の色 */
    background-color: #666666;
    /* バーガー線の位置基準として設定 */
    position: relative;
    transition: .3s;
    border-radius: 5px;
}
    
/***** 上下のバーガー線 *****/
.hamburger-line::before,
.hamburger-line::after {
    content: "";
    /* 基準線と同じ大きさと色 */
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666666;
    transition: .3s;
}
  
.hamburger-line::before {
    /* 上の線の位置 */
    top: 17px;
    transform: translateY(-10px);
    border-radius: 5px;
}
    
.hamburger-line::after {
    /* 下の線の位置 */
    bottom: 17px;
    transform: translateY(10px);
    border-radius: 5px;
}

/***** ハンバーガーメニューオープン時 *****/
.hamburger-line.open {
    /* 真ん中の線を透明に */
    background-color: transparent;
}
  
.hamburger-line.open::before,
.hamburger-line.open::after {
    content: "";
    transition: .3s;
}
  
.hamburger-line.open::before {
    /* 上の線を傾ける */
    top: 0px;
    transform: rotate(45deg);
}
  
.hamburger-line.open::after {
    /* 下の線を傾ける */
    bottom: 0px;
    transform: rotate(-45deg);
}

@keyframes appear {
    0%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
}
/* FUJIMOTO 
.header-account .name {
    color: #666;
}
*/

.side-menu {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 38;
	color: #333;
	overflow: visible;
    width: 200px;
    background-color: #eee;
    z-index: 2;
}

.side-menu .subMenu {
    padding: 6px 6px 6px 12px;
    margin-bottom: 7px;
}

.side-menu .subMenu:not(.subMenuSelected):hover {
    color: #FABD00;
    cursor: pointer;
}

.side-menu .subMenu .ico {
    width:30px;
    height:30px;
    display: flex;
    align-items: center;
    padding-left: 3px;
    margin-right: 8px;
}
.side-menu .subMenuTitle {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.side-menu .subMenu.subMenuSelected {
    background-color: #FEE7A0;
    border-radius: 6px;
}

.custom-select:disabled {
    color: #212529;
}

.row {
    margin-bottom: 30px;
}

/******** 処理中表示 ********/
.proc-modal {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    align-items: center;
    display: none;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: 9999;
}
.proc-modal.is-active {
    display: flex;
}
.proc-modal .modal-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(10, 10, 10, 0.205);
}
.proc-modal .modal-content {
    margin: 0 20px;
    max-height: calc(100vh - 160px);
    overflow: auto;
    position: relative;
    width: 100%;
    background: transparent;
}
.modal-content { 
    background: #FFFFFF;
}

.modal-content .btnArea {
    display:flex;
    align-items:center;
    justify-content:center;
}

#subChangeStatus_formChangeStatus .btnArea {
     justify-content:flex-end;
}

/******** タブ ********/
.tabHeaders {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
    border-bottom: 3px solid #e7e7e7;
}

.tabHeader {
    flex: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #FEE7A0;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 0; /* ※幅は自動で決まるようにしているが、widthがないと何故か等分されなかった */
    margin-right: 8px;
    box-shadow: 0px 1px 6px #11111129;
    cursor: pointer;
}

.tabHeader:last-child {
    margin-right: 0;
}

.tabHeader:hover {
    background-color: #e7f8fc !important;
}

.tabHeader.active {
    background-color: #e7e7e7 !important;
}

.tabHeaderTitle {
    line-height: 1;
}

.tabHeaderTitle.active  {
    color: #212529;
}

.tabContent {
    padding: 1rem;
    margin-left:1rem;
    margin-right: 1rem;
}

.active .tabHeaderStep {
    color: #ffffff !important;
}

.tabHeaderStep {
    color: #ff0000;
    font-weight: bold;
    line-height: 1;
}

.tabContentTitle {
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    padding: 5px 0px 15px 0px;
}

/******** 検索条件 ********/
.searchContainer {
    padding: 10px 0 20px 0;
    margin-bottom: 10px;
    box-shadow: 1px 2px 0px #1111110D;
    border-radius: 6px;
    background-color: #fff;
}

.searchContainer .btnArea {
    display:flex;
    align-items:center;
    justify-content:center;
}

/******** 一覧 ********/
.table {
    border-collapse:separate;
    border-spacing:0px 8px;
}

.table tbody {
    border-radius: 6px;
}

.table thead th {
    border:none;
    padding: 10px 15px 10px 15px;
    /* min-width: 100px; */
    font-size:12px;
}

.table tbody tr{
    box-shadow: 1px 2px 0px #1111110D;
    padding: 0px 15px;
}

.table tbody tr:hover {
    background-color: #FFF7E0;
}

.table tbody td {
    border-bottom: 1px solid #eee;
    border-top: none;
    text-align: left;
    padding: 20px 15px 20px 15px;
    /* min-width: 100px; */
    vertical-align: middle;
    background: #fff;
     height:53px;
    font-size:12px;
}

/* .table tbody tr:first-child td:first-child {
    border-top-left-radius: 6px;
}

.table tbody tr:first-child td:last-child {
    border-top-right-radius: 6px;
}

.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
} */

.table tbody tr td:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.table tbody tr td:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.table .row_up, table .row_down {
    cursor: pointer;
}

.table input[type=text],
.table select {
    min-height: auto!important;
}

.table:not(.pagination-table) td {
    height: 73px;
}


.table:not(.pagination-table) .form-check-label {
    height: 100%;
}

.table:not(.pagination-table) .form-check-label::before {
    top: 0;
    margin-top: 0;
}

.table:not(.pagination-table) .form-check-label::after {
    top: 15%;
    margin-top: 0;
}

caption {
    caption-side: top;
    padding-top: unset;
    padding-bottom: unset;
}

.paginate-top {
    font-size: 20px;
    font-weight: bold;
    color: #111111;
    margin: 20px 0px 20px 0px;
}

.paginate-caption {
    /* display:flex;
    align-items:center;
    justify-content:space-between;
    padding:5px 10px; */
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:5px 10px;
    background-color: #DDDDDD;
    box-shadow:1px 2px 0px #1111110D;
    border-radius: 6px;
    font-size:12px;
    font-weight: normal;
    height:40px;
}

.paginate-caption .btn{
    font-size:12px;
    width: 121px;
    height: 30px;
    background: #FCCE40;
    border: 1px solid #FABD00;
    border-radius: 6px;
    padding-left:5px;
}

.page-link {
    border:none;
    position: relative;
    display: block;
    padding: 0.6rem 0;
    margin-left: 5px;
    line-height: 1;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-radius: 30px;
}

.page-item:last-child .page-link {
    border-radius: 30px;
}

.pagination-table .chkCol {
    width: 5%;
    text-align:center;
}
.pagination-table .editListCol {
    width: 5%;
    text-align:center;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    color: #111111;
    margin: 0px 0px 10px 0px;
}

/******** 入力項目 ********/
.inputContainer {
    padding: 10px 0 20px 0;
    margin-bottom: 10px;
    box-shadow: 0px 1px 6px #11111129;
    border-radius: 10px;
    background-color: #fff;
    padding:1rem;
}

/******** 入力項目 ********/
.form-control {
    color: #111111;
    border: 1px solid #bbbbbb;
}
.form-control:focus {
    box-shadow: none;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #f6f6f6;
}
.form-control::placeholder {
    color:#BBBBBB;
}
.custom-select:focus {
    box-shadow: none;
}

input[type=text].error,
input[type=date].error,
input[type=month].error,
input[type=password].error,
select.error,
textarea.error {
    border-color: red;
    background: #ffe8e8;
}

.fileNameLabel.error {
    outline: 1px solid red;
    background: #ffe8e8;
}

input[type=checkbox].error,
input[type=radio].error {
    outline: 2px solid red;
    outline-offset: 2px;
}

.inputLabel {
    position: relative;
    width: 12em;
    min-width: 12em;
    /* padding-right: 24px;
    text-align: right; */
    height: 20px;
    text-align: left;
    padding: 0.5px 24px 0px 8px;
    border-left: solid 3px #FCCE40;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.7px;
    margin-bottom: 0.5rem;
    /* margin-left: 1rem; */
}
.inputLabel.notBorder {  
    border:none;
  }

.inputLabel.required:after {
/*
    position: absolute;
    top: 2px;
    right: 8px;
    color: #ff0000;
    font-size: .8em;
    font-weight: bold;
    content: "必須";
*/
    color: #E8421C;
    font-size: .8em;
    font-weight: bold;
    content: "\A必須";
    white-space: pre;
}

.valueLabel {
    width: 100%;
}

.fileNameLabel {
    width: 100%;
    height: calc(2.25rem + 2px);
    padding-left: 5px;
    display: flex;
    align-items: center;
}

button.btn {
    width:140px;
    border-radius: 6px;
}

button.btnGlass {
    width: 35px;
    height: 35px;
}

button.btn.w-60px {
    width:60px;
}

button.primary {
    font-weight: bold;
    width: 140px;
    height: 40px;
    border-radius: 6px;
}

button.secondary {
    background: #fff;
    color: #111;
    font-weight: bold;
    width: 140px;
    height: 40px;
    border-radius: 6px;
}

button.tertiary {
    background: #ddd;
    color: #111;
    font-weight: bold;
    width: 140px;
    height: 40px;
    border-radius: 6px;
}
button.addCond,
button.dispCond {
    background: #FCCE40;
    color: #111;
    border: 2px solid #fcce40;
    font-weight: bold;
    width: 239px;
    height: 40px;
    vertical-align: middle;
    border-radius: 6px;
}
button.addCond.rotate {
    background: #BBBBBB;
    border: 2px solid #BBBBBB;
}

.dli-plus {
    display: inline-block;
    vertical-align: middle;
    color: #FFFFFF;
    line-height: 1;
    top: -2px;
    width: 20px;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
    transition: .3s;
}
.dli-plus::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}
.dli-plus.rotate {
    transform: rotate(-45deg); 
}

button.btn.h-30 {
    height: 30px;
}

input[type=text],input[type=password], select:not(.sel-per-page) {
    min-height: 40px;
}

input[type=text], input[type=password], select, textarea {
    border-radius: 6px!important;
}

.checkbox-lists {
    width: 100%;
    overflow: revert;
}

input[type=checkbox], input[type=radio] {
    display: none;
}
input[type=checkbox]:not(.btn-check) + label, input[type=radio] + label {
    box-sizing: border-box;
    cursor: pointer;
    padding: 0 0 0 40px;
    position: relative;
    width: auto;
}

input[type=checkbox]:not(.btn-check) + label::before {
    position: absolute;
    top: 25%;
    left: 0px;
    display: block;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    content: '';
    background: #fff;
    border-radius: 4px;
    border: 2px solid #bbb;
}
.pagination-table input[type=checkbox]:not(.btn-check) + label::before {
    width: 20px;
    height: 20px; 
    margin-left: 10px;
}
.paginate-caption input[type=checkbox]:not(.btn-check) + label::before {
    margin-left: 12px;
    margin-top: -12px;
}
.paginate-caption .chkAllTarget-label{
    margin-right:10px;
    color:#111111;
}
.paginate-caption .dispCount-label{
    margin-right:10px;
    color:#111111;
}
.paginate-caption .separator{
    margin:0px 15px 0px 0px;
    width: 0px;
    height: 28px;
    border: 1px solid #BBBBBB;
    align-items: center;
}
input[type=checkbox]:not(.btn-check) + label::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
    display: block;
    height: 15px;
    width: 10px;
    left: 10px;
    margin-top: -7px;
    position: absolute;
    top: 35%;
    transform: rotate(45deg);
    opacity: 0;
}

.pagination-table input[type=checkbox]:not(.btn-check) + label::after {
    height: 12px;
    width: 7px;
    left: 17px;
    margin-bottom: 2px;
}
.paginate-caption input[type=checkbox]:not(.btn-check) + label::after {
    left: 19px;
    top: -2px;
}

input[type=checkbox]:not(.btn-check):checked + label::before {
    color: #111111; 
    background: #fcce40; 
    border: 1px solid #fcce40;
}
input[type=checkbox]:not(.btn-check):is(.error) + label::before {
    border: 1px solid red;
    background: #ffe8e8;
}
input[type=checkbox]:not(.btn-check):is(.error) + label::after {
    border-right-color: red;
    border-bottom-color: red;
}
input[type=checkbox]:not(.btn-check):checked + label::after {
    opacity: 1;
}

label.btn-check-label input[type=checkbox].btn-check {
    margin-right: 5px;
}

label.btn-check-label span {
    border: 2px solid #bbb;
    border-radius: 1em; 
    padding: 2px 1em; 
    display: inline-block;
    min-width : 62px;
    text-align: center;
    background-color: #FCFCFC;
}
label.btn-check-label span:hover {
    cursor: pointer;
}

label.btn-check-label input[type=checkbox].btn-check:checked + span {
    color: #111111; 
    background: #fcce40; 
    border: 2px solid #fcce40;
}

input[type=radio] + label::before {
    position: absolute;
    top: 25%;
    left: 0px;
    display: block;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    content: '';
    /* background: transparent; */
    background: #fff;
    border-radius: 50%;
    border: 1px solid #bbb;
}
input[type=radio] + label::after {
    content: '';
    display: block;
    left: 5px;
    margin-top: -5px;
    position: absolute;
    top: 25%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0;
}
input[type=radio]:checked + label::after {
    opacity: 1;
    background: #fcce40; 
    /* background: #0075ff; */
}

/******** datepicker ********/
.datepicker th.dow {
    color: #bbb;
    font-weight: normal;
}

.datepicker td.day {
    background-color: #eee;
    border: 2px solid #fff;
    border-radius: 0px;
    color: #3B4043;
    width: 35px;
    height: 25px;
}

.datepicker td.today {
    background-image: none!important;
    background-color: #eee!important;
    border: 2px solid #fff!important;
    color: #3B4043!important;
}

.datepicker td.active {
    background-image: none!important;
    background-color: #999!important;
    border: 2px solid #fff!important;
    color: #3B4043!important;
}

.datepicker th.clear {
    background: #ddd;
    height: 30px;
    color: #111
}

.datepicker-months span.month {
    background-color: #eee;
    border-radius: 0px;
    color: #3B4043;
    height: 40px;
    line-height: 40px;
}

.datepicker-months span.active {
    background-image: none!important;
    background-color: #999!important;
    color: #3B4043!important;
}

.date-picker-parts {
	position: relative;
	display: inline-block;
	line-height: 1;
    max-width: 150px;
    /* width: 100%; */
}
.datepicker-trigger-ico,
.monthpicker-trigger-ico {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	width: 1em;
	height: 1em;
	text-align: center;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
    color: #495057;
    content: url(/images/common_icon/calendar_g.svg);
}

.date-picker-parts input[type="text"].dp,
.date-picker-parts input[type="text"].mp {
	padding-right: calc(1em + 20px);
}

.date-picker-parts input[type="text"].dp:read-only,
.date-picker-parts input[type="text"].mp:read-only {
    background-color: #fff;
}

.date-picker-parts input[type="text"].dp:focus,
.date-picker-parts input[type="text"].mp:focus {
	outline:0;
}

.date-picker-parts input[type=text].dp.error,
.date-picker-parts input[type=text].mp.error {
    border-color: red;
    background: #ffe8e8;
}

/******** img /********/
img.profile-icon-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eee;
    font-size: 8pt;
    text-align: center;
    line-height:8pt;
}

/******** モーダルダイアログ /********/
.modal.fade .modal-dialog.modal-work {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-fit-contents {
    max-width: 80vw;
}

/* セレクトボックスの矢印デザイン変更 */
.custom-select {
    background-image: url(/images/common_icon/angle_g.svg);
    background-size: 10px 10px;
}

/***************************************************
    各項目のテキスト幅
/***************************************************/
.nameCol {
    width: 286px;
}
.mailCol {
    width: 350px;
}
.kinmusakiCol {
    width: 604px;
}
.shozokuCol {
    width: 604px;
}
.passwordCol {
    width: 350px;
}
.todofukenCol {
    width: 186px;
}
.yubinNo1Col {
    width: 74px;
}
.yubinNo2Col {
    width: 74px;
}
.jusho1Col {
    width: 686px;
}
.jusho2Col {
    width: 604px;
}
.kyomiCol {
    width: 604px;
}
.name40bCol {
    width: 290px;
}
.name50bCol {
    width: 490px;
}
.name60bCol {
    width: 590px;
}
.name100bCol {
    width: 990px;
}
.name120bCol {
    width: 1190px;
}
.telCol {
    width: 120px;
}
.statusCol {
    width: 200px;
}
.atesakiCol {
    width: 80px;
}
.ninzuCol {
    width: 70px;
}
.timeCol {
    width: 70px;
}

/***************************************************
    ログイン
/***************************************************/
#loginFormContainer {
    width: 100%;
    height: 100vh;
    background-image: url(/images/login-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.login-outer-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-outer-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-inner-box {
    width: 30vw;
    min-height: 50vh;
    aspect-ratio: 7/8;
    font-size: 12pt;
}

.login-inner-box.right {
    padding-top: 20px;
    padding-left: 40px;
}

.login-inner-box.left {
    border:1px solid #999;
    border-radius: 20px;
    background: #fff;
}

.login-inner-box.left .input-area {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    align-items: center;
}

.login-input-label {
    margin: 0 5px 10px 5px;
}

.login_input_box {
    margin:0 5px 20px 5px;
}

.login-input {
    /* margin: 0 5px 20px 5px; */
    font-size: 12pt;
    height: unset;
    padding:15px;
}

.login-button {
    text-align: center;
    width: 100%;
    padding: 0 20px 40px 20px;
}

#btnLogin, #btnAnotherLogin {
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    color: #fff;
    background: #14add0;
    font-size: 12pt;
}

#btnAnotherLogin {
    position: relative;
    background: #4cc764;
}

#btnAnotherLogin:before {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    content: "";
    width: 45px;
    height: 45px;
    background-image: url(/images/LINE_APP_Android.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/***************************************************
    会員登録TOP
/***************************************************/
#frmNewEntry {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.newEntryContainer {
    width:50%;
    min-width: 375px;
    height:calc(100vh - 3em);
    padding:20px;
}

.newEntryContainer .inner {
    width: 100%;
    height:80%;
    margin: auto;
}

.newEntryContainer .box {
    border:1px solid #999;
    border-radius: 10px;
    width:100%;
    height:100%;
    padding: 2em;
}

.newEntryContainer .box {
    border:1px solid #999;
    border-radius: 10px;
    width:100%;
    height:100%;
    padding: 2em;
}

.newEntryContainer .box-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#frmNewEntry button {
    width: 95%;
    height: 4em;
}

@media screen and (max-width: 820px) {
    .newEntryContainer {
        width:100%;
        height: fit-content;
    }

    #frmNewEntry .inputLabel {
        width: 100%;
        text-align: left;
    }
}
/***************************************************
    個人情報同意
/***************************************************/
#frmNewEntryStep1 {
    max-width: 800px;
    margin: auto;
    padding:20px;
}

#frmNewEntryStep1 .header_title_label {
    font-size: 24px;
    text-align: center;
    margin-bottom:30px;
    font-weight: bold;
}

#frmNewEntryStep1 .title_label {
    font-size: 20px;
    text-align: left;
    margin-bottom:10px;
    font-weight: bold;
}

#frmNewEntryStep1 .chkAgreeArea {
    display: flex;
    justify-content: space-evenly;
}

.form-check-label.chkAgree {
    font-size: 14px;
    font-weight: bold;
}

#chkAgree {
    margin-right: 0.8em;
    -webkit-transform: scale(1.5) translateY(-0.03em);
    transform: scale(1.5) translateY(-0.03em);
}

#frmNewEntryStep1 button {
    width: 10em;
    height: 3em;
    font-size: 1.2em;
}

#frmNewEntryStep1 .btnArea {
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}

/***************************************************
    新規会員申込
/***************************************************/
#frmNewEntryStep2 button {
    width: 10em;
    height: 3em;
    font-size: 1.2em;
}

#frmNewEntryStep2 .btnArea {
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}

@media screen and (min-width: 821px) {
    #frmNewEntryStep2 input,
    #frmNewEntryStep2 select  {
        margin-left: 10px;
    }
}

@media screen and (max-width: 820px) {
    #frmNewEntryStep2 .col-12,
    #frmNewEntryStep3 .col-12 {
        flex-direction: column;
    }
    
    #frmNewEntryStep2 .inputLabel,
    #frmNewEntryStep3 .inputLabel {
        width: 100%;
        text-align: left;
    }

    #frmNewEntryStep2 .valueLabel,
    #frmNewEntryStep3 .valueLabel {
        font-size: 1.2em;
    }

    #frmNewEntryStep2 input,
    #frmNewEntryStep2 select  {
        margin-top: 5px;
    }

    #frmNewEntryStep2 .inputLabel.required:after,
    #frmNewEntryStep3 .inputLabel.required:after {
        right: unset;
    }
}
/***************************************************
    新規会員確認
/***************************************************/
#frmNewEntryStep3 button {
    width: 10em;
    height: 3em;
    font-size: 1.2em;
}

#frmNewEntryStep3 .btnArea {
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}

/***************************************************
    団体設定
/***************************************************/
#tab {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
}

.sns-icon-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

img.sns-icon {
    position: absolute;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    border: 1px solid #999;
    object-fit: cover;
}

.sns-noimage-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#eee;
    border: 1px solid #999;
    font-size: 8pt;
    text-align: center;
    line-height:8pt;
}

/***************************************************
    会員一覧
/****************************************************/
#tabKaiinList {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
}

.conditionLinkName {
    color: #111111;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.7px;
    margin-left: 5px;
}

/***************************************************
    会員編集
/****************************************************/
#tabKaiinEdit {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
}

#tblEventSchedule thead th {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    text-align: left;
    padding:0 0 0 0;
    border: none;
    border-bottom: 1px solid #dee2e6;
}

#tblEventSchedule tbody td {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    text-align: left;
    vertical-align: top;
    padding: 0;
}

/* #tblEventSchedule tbody td.event,
#tblOndemandSchedule tbody td.event,
#tbkTenjikaiSchedule tbody td.event {
    background-color: #ededed;
} */

#tblEventSchedule tbody td.event-header {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    padding: 10px;
    font-weight: bold;
}

#tblEventSchedule tbody td.oyako,
#tblOndemandSchedule tbody td.oyako {
    /* color: #fff;
    background-color: #00437d; */
    color: #111111;
    background-color: #fcce40; 
}

.chu-row {
    padding: 8px 4px;
    flex-grow: 1;
    height: inherit;
}

.sho-row {
    display: flex;
    color: #212529;
    background-color: #ededed;
    flex-grow: 1;
}

.sho-row .category {
    border-top: 1px solid #dee2e6;
    padding: 8px 4px;
    width: 100%;
}

.sho-row .oyako {
    padding-left: 20px;
    /* background-color: #00437d; */
    background-color: #fcce40; 
}

/***************************************************
    大イベント登録
/****************************************************/
#tabDaiEventEntry {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
    border-bottom: 3px solid #e7e7e7;
}

/***************************************************
    中イベント一覧
/****************************************************/
#tabChuEventList {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
}

#tblChuEventSchedule thead th {
    width: 45px;
    min-width: 45px;
    max-width: 45px;
    text-align: left;
    padding:0 0 0 0;
    border: none;
}

#tblChuEventSchedule tbody td {
    font-size: 8pt;
    width: 45px;
    min-width: 45px;
    max-width: 45px;
    text-align: left;
    vertical-align: top;
    padding: 0;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-top: none;
}

#tblChuEventSchedule tbody td:first-child{
    border-left: 1px solid #dee2e6;
}

#tblChuEventSchedule tbody td.event {
    background-color: #ededed;
    height: 0;
}

#tblChuEventSchedule tbody td.event-header {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    padding: 10px;
    font-weight: bold;
}

#tblChuEventSchedule tbody td.oyako {
    /* color: #fff;
    background-color: #00437d; */
    color: #111111;
    background-color: #fcce40; 
}

/***************************************************
    中イベント登録
/****************************************************/
#tabChuEventEntry {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
}

/***************************************************
    WEB展示会登録
/****************************************************/
#tabTenjikaiEntry {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    padding-top: 0.5rem;
}

/********* エラーメッセージ*******/
.error-row {
    padding-left: 12.7rem!important;
    display: flex;
}

/***************************************************
    ステータス変更 error-row
/***************************************************/
#subChangeStatus_formChangeStatus .error-row { 
    padding-left: 13rem!important;
}

.err_message {
    color: #E8421C;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    min-height: 23px;
    margin: 10px 0px 0px;
    display: none;
}
 .err_message:before{
    content: url(/images/common_icon//caution_r.svg);
    padding-top: 2px;
    display: none;
  }
  .err_message:is(.showmsg){ 
    display: flex;
  }
  .err_message:is(.showmsg):before{ 
    display: flex;
  }
  .err_message_header:is(.showmsg){ 
    display: flex;
  }

/***************************************************
    会員申込画面 error-row
/***************************************************/
#frmNewEntry .error-row
{ 
    padding-left: 12.5rem!important;
}

/***************************************************
    団体設定 error-row
    会員項目登録 error-row
    会員編集 error-row
    イベント関連 error-row
/***************************************************/
/* #formKaiinKomokuEntry .error-row,
#formKaiinEdit .error-row,
#formDaiEventEntry .error-row,
#formChuEventEntry .error-row,
#formShoEventEntry .error-row,
#formKankeishaEntry .error-row,
#formKankeishaTaskEntry .error-row,
#formTenjikaiEntry .error-row,
#formTenjikaiShohinEntry .error-row,
#formDantaiSetting .error-row
{ 
    padding-left: 12.7rem!important;
} */
/***************************************************
    エラー404画面
/***************************************************/

#notFoundContainer
{
    padding:10px;
    margin-top:4%;
}

.notFound-outer-box
{
    width:100%;
    text-align:center;
}

.notFound-num
{
    color:#FFF7E0;
    font-size:320px;
    font-weight:bold;
    letter-spacing:0px;
    line-height:1;
}

.notFound
{
    font-size:32px;
    color:#FCCE40;
    font-weight:bold;
}

.notFound-message
{
    font-size:24px;
    color:#111111;
    font-weight:bold;
}

.notFound-message-sub
{
    font-size:14px;
    color:#3B4043;
    margin-top:30px;
}

#notFoundContainer .btnArea
{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#notFoundForm .urlArea-box
{
    display:flex;
    margin-top:20px;
    justify-content:center
}

#notFoundForm .urlArea
{
    width:604px;
    height:112px;
    font-size:14px;
    color:#666666;
    padding:6px;
    border:solid 1px #BBBBBB;
    border-radius:5px;
    text-align:left;
}

img.btnEditMnu {
    width:25px;
    height:25px;
    border-radius: 50%;
    cursor:pointer;
    padding:5px;
}

img.btnEditMnu.selected {
    background-color:#FEE7A0;
}

.table-menu-panel {
    display: none;
    position: absolute;
    background-color: #ffffff;
    width:120px;
    height:auto;
    border-radius: 6px;
    border:solid 1px #BBBBBB;
}

.table-menu-panel .panel-button{
    display:flex;
    justify-content: flex-start;
    width:118px;
    height:40px;
    align-items:center;
    padding:10px 15px;
    cursor:pointer;
}

.table-menu-panel .panel-button:hover{
    background-color:#FEE7A0;
}

.table-menu-panel .panel-button img{
    margin-right: 10px;
    width:10.69px;
    height:10.85px;
}

.table-menu-panel .panel-button span{
    color:#666666;
    font-size:14px;
}

/* input[type=text]:is(.error) + .exclMark:after,
input[type=date]:is(.error) + .exclMark:after,
input[type=month]:is(.error) + .exclMark:after,
input[type=password]:is(.error) + .exclMark:after,
select:is(.error) + .exclMark:after,
textarea:is(.error) + .exclMark:after {
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0.5rem;
    height: 12px;
    margin: auto;
    content: url(/images/common_icon//caution_r.svg);
}

input[type=text]:is(.error) + .exclMark-out:after,
input[type=date]:is(.error) + .exclMark-out:after,
select:is(.error) + .exclMark-out:after {
    position: absolute;
    right: -1.5rem;
    top: 0;
    bottom: 0.5rem;
    height: 5px;
    margin: auto;
    content: url(/images/common_icon//caution_r.svg);
} */

.exclMarkArea {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    width: 100%;
}