* {
  margin: 0;
  padding: 0;
}

.input_text_new {
  margin-right: 2rem;
}

html {
  font-size: 16px;
  font-family: YuGothic, "Yu Gothic", "Yu Gothic UI", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

span.required {
  color: red;
}

.card_list > table,
.card_list > table > thead > tr > th,
.card_list > table > tbody > tr > td {
  border: solid 1pt;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  cursor: pointer;
}

main.contents {
  margin: 100px 0 0 200px;
}

header#admin {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #1d2327;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
}

header#admin .in_header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0;
}

header#admin .in_header__title h1 a {
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 12px;
}

header#admin .in_header .nav {
  width: 50%;
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}

header#admin .in_header .nav__item {
  color: #fff;
}

header#admin .in_header .nav__item a {
  color: #fff;
  padding: 8px;
}

header#admin .in_header .nav__item a:hover {
  opacity: 0.7;
}

.sidebar .inSidebar {
  background: #1d2327;
  position: fixed;
  width: 170px;
  top: 0;
  bottom: 0;
  padding: 90px 8px 8px 8px;
}

.sidebar .inSidebar__parentNav {
  overflow: scroll;
  height: 100%;
}

.sidebar .inSidebar__parentNav--item {
  padding: 6px 0;
}

.sidebar .inSidebar__parentNav--item a {
  display: block;
  color: #fff;
}

.sidebar .inSidebar__parentNav--item a:hover {
  color: #2271b1;
}

.sidebar .inSidebar__parentNav--item a.accordion-title {
  position: relative;
  color: #c0c0c0;
}

.sidebar .inSidebar__parentNav--item a.accordion-title:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 80%;
}

.sidebar .inSidebar__parentNav--item a.accordion-title.open:after {
  transform: rotate(225deg);
}

.sidebar .inSidebar__parentNav--item .inSidebar__parentNav--childNav#accordion {
  display: block;
}

.sidebar .inSidebar__parentNav--item .inSidebar__parentNav--childNav > li {
  padding-left: 8px;
}

.sidebar .inSidebar__parentNav--item .inSidebar__parentNav--childNav > li > a {
  display: block;
  color: #fff;
  padding: 2px 4px;
}

.sidebar .inSidebar__parentNav--item .inSidebar__parentNav--childNav > li > a:hover {
  color: #2271b1;
}

#dashboard.contents .inContents__wrap {
  margin: 40px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

#dashboard.contents .inContents__wrap--sec {
  position: relative;
  width: calc(100% - 40px);
  margin: auto;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
}

#dashboard.contents .inContents__wrap--sec-title h3 {
  text-align: center;
}

#dashboard.contents .inContents__wrap--sec-title h3 a {
  color: #2271b1;
  padding: 4px;
  margin: 0 12px;
}

#dashboard.contents .inContents__wrap--sec-title h3 a:hover {
  opacity: 0.7;
}

#dashboard.contents .inContents__wrap--sec-content {
  width: 100%;
  height: 400px;
}

#dashboard.contents .inContents__wrap--sec-content .imgLink {
  width: calc(50% - 20px);
}

#dashboard.contents .inContents__wrap--sec-content .imgLink a {
  display: block;
}

#dashboard.contents .inContents__wrap--sec-content .imgLink a img {
  width: 100%;
}

#dashboard.contents .inContents__wrap--sec-content .imgLink a p {
  text-align: center;
}

body {
  background: #eff0f4;
}

body .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

body .container p {
  width: 20%;
}

body .contents .inContents {
  margin: 0 16px 40px 0;
}

body .contents .inContents__title {
  margin-bottom: 12px;
}

body .contents .inContents__search {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

body .contents .inContents__search .input_text {
  width: 50%;
  margin: 0 8px 0 0;
}

body .contents .inContents__search .input_text label {
  display: block;
}

body .contents .inContents__search .input_text input {
  box-sizing: border-box;
  display: block;
  padding: 4px;
  font-size: 1.1rem;
  width: 100%;
}

body .contents .inContents__search .input_submit input[type=submit] {
  padding: 8px 30px;
  border-radius: 30px;
}

body .contents .inContents__form {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

body .contents .inContents__form form {
  width: 100%;
}

body .contents .inContents__form form .form_sec {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-wrap: wrap;
}

body .contents .inContents__form form .form_sec .input_form {
  display: flex;
  width: 100%;
}

body .contents .inContents__form form .input_form_noti .input_text,
body .contents .inContents__form form .input_form_noti textarea {
  width: 100%;
}

body .contents .inContents__form form .input_form_noti textarea {
  height: 500px;
}

body .contents .inContents__csv {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: auto;
}

body .contents .inContents__data {
  border-radius: 8px;
  background: #fff;
  overflow-x: scroll;
}

body .contents .inContents__data--item {
  border-bottom: 1px solid #ccc;
  padding: 12px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 0.9rem;
  gap: 55px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  box-sizing: border-box;
}

body .contents .inContents__data--item.heading {
  border-bottom: 2px solid #ccc;
  font-weight: bold;
}

body .contents .inContents__data--item p {
  width: 120px;
  padding: 4px 8px;
  flex-shrink: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

body .contents .inContents__data--item p a {
  color: #2271b1;
}

body .contents .inContents__data--item:last-child {
  border-bottom: 0px;
}

.text-danger {
  color: #ff5b57 !important;
  font-size: 12px;
}

.input_text {
  width: calc(50% - 20px);
  margin: 0 auto 24px 0;
}

.input_text label {
  display: block;
}

.input_text input {
  box-sizing: border-box;
  display: block;
  padding: 4px;
  font-size: 1.1rem;
  width: 100%;
}

.input_radio {
  width: calc(50% - 20px);
  margin: 0 auto 24px 0;
}

.input_radio label.radio_lavel {
  display: block;
}

.input_radio input[type=radio] {
  box-sizing: border-box;
  padding: 4px;
  font-size: 1.1rem;
}

.input_radio input[type=radio] + label {
  padding: 8px 8px 8px 4px;
  margin-right: 4px;
  font-size: 1.05rem;
}

.input_submit {
  margin: 20px 0;
  text-align: center;
}

.input_submit input[type=submit] {
  padding: 8px 80px;
  font-size: 1rem;
  border-radius: 30px;
  background: #f1d661;
}

.input_submit input[type=submit]:hover {
  opacity: 0.7;
}

.input_button {
  margin: 20px 0;
  text-align: center;
}

.input_button input[type=button] {
  padding: 8px 80px;
  font-size: 1rem;
  border-radius: 30px;
  background: #f1d661;
}

.input_button input[type=button]:hover {
  opacity: 0.7;
}

.input_file {
  text-align: center;
}

.input_file input {
  padding: 4px;
  font-size: 1rem;
}

.download_btn {
  margin: 20px 0;
  text-align: center;
  width: 100%;
}

.download_btn a {
  padding: 12px 60px;
  font-size: 1rem;
  border-radius: 30px;
  background: #000;
  color: #fff;
}

.add_card_btn {
  margin: 20px 10px;
  text-align: center;
}

.add_card_btn a {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  background: #f1d661;
}


.download_csv {
  margin: 20px 0;
  text-align: center;
  width: 100%;
  min-width: 7rem;
}

.download_csv a {
  padding: 12px;
  font-size: 1rem;
  border-radius: 30px;
  background: #f1d661;
  color: #000;
  border: 1px solid #000;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pager {
  margin: 24px 0;
}

.pager .pagination {
  text-align: center;
}

.pager .pagination li {
  display: inline-block;
  background: #ccc;
  text-align: center;
  border-radius: 3px;
}

.page-link {
  padding: 0.6rem 1.2rem;
  display: inline-block;
}

.pager .pagination li a {
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.pager .pagination li a.active {
  color: #000;
  background: #ffffff;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .page-item.active {
  background-color: #ffffff;
}

li.page-item:hover {
  background: #8b8989;
}

li.page-item.disabled:hover {
  cursor:not-allowed;
}

.sign {
  position: relative;
  height: 100vh;
  min-height: 300px;
}

.sign .inSign {
  width: 36%;
  max-width: 400px;
  margin: auto;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sign .inSign__text {
  margin-bottom: 18px;
}

.sign .inSign__text h2 {
  text-align: center;
  margin-bottom: 8px;
}

.sign .inSign__text p {
  padding: 0 12px;
  font-size: 0.9rem;
}

.sign .inSign__form {
  padding: 30px;
  background: #fff;
  margin-bottom: 20px;
}

.sign .inSign__form form .input_box {
  margin: 0 0 14px 0;
}

.sign .inSign__form form .input_box label {
  display: block;
}

.sign .inSign__form form .input_box input[type=text],
.sign .inSign__form form .input_box input[type=password] {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 4px;
  font-size: 1.1rem;
}

.sign .inSign__form form .submit_box {
  margin-top: 20px;
  text-align: center;
}

.sign .inSign__form form .submit_box input[type=submit] {
  padding: 8px 80px;
  font-size: 1rem;
  border-radius: 30px;
  background: #f1d661;
}

.sign .inSign__link {
  padding: 0 12px;
}

.sign .inSign__link p a {
  font-size: 0.9rem;
  color: #555d66;
}

.sign .inSign__link p a:hover {
  color: #2271b1;
}

.table td, .table th {
  padding: 0.75rem 0.5rem;
  vertical-align: top;
  font-size: 0.9rem;
}

.table th {
  border-bottom: 2px solid #ccc;
}

.table td {
  border-bottom: 1px solid #ccc;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  text-align: left;
  border-collapse: collapse;
}

.table td a {
  color: #2271b1;
}

.arrow-up, .arrow-down {
  position: relative;
}
.arrow-up::before {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 0 5px 10px 5px;
  border-color: transparent transparent #000 transparent;
  right: -15px;
  top: 2px;
}

.arrow-down::before {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
  right: -15px;
  top: 2px;
}