/****************************************
　　　　　　　　　Style Setting
*****************************************/

/*基本情報*/
/*html::-webkit-scrollbar {
  display: none;
}*/
html,body {
  margin: 0;
  padding: 0;
}
html.scroll-ban{
  overflow: hidden;
}

/*初期設定*/
body {
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body{
    font-family: 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  }
}
* {
  box-sizing: border-box;
}
.page-wrap {
  padding-left: 100px;
  padding-right: 100px;
}
.page-size {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1180px) {
  .page-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

@media screen and (max-width: 568px) {
  .page-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*フォント*/
h1,h2,h3,h4,h5,a,p {
  padding: 0;
  margin: 0;
}
/*frontのh1はヘッダーに利用されている場合*/
h1.front-h1 {
  font-size: 0;
}
.front-h0 {
  font-size: 0;
}

/*リンク*/
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/*イメージ*/
img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.object-fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: 'object-fit: cover;';
}

/*リスト*/
ul,ol,li {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*テーブル*/
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,th {
  padding: 0;
}
input,button,select,textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*フォーム*/
input[type="text"],
input[type="number"],
input[type="email"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + label {
  background: #ff0000;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}
button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance:textfield;
}

/*レスポンシブ*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*内部スクロール*/
.scorll-target {
  padding-top: 64px;
  margin-top: -64px;
}

/*=================================
  header
=================================*/
.block-header {
  position: relative;
}
.block-header .inner {
  padding: 0 13px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block-header .inner-left,
.block-header .inner-right {
  display: flex;
  align-items: center;
}
.contact{
  margin-right: 15px;
}
.contact a{
  display: inline-block;
}
.head-nav-block i{
  margin-right: 5px;
}
.head-nav-block {
  font-size: 15px;
}
.logout{
  font-size: 15px;
  letter-spacing: 2px;
  /*height: 18px;*/
}
.logout i{
  /*font-size: 14px;*/
}
.header-tab {
  margin-left: 60px;
  transition: 0.2s;
}
.header-tab-list {
  display: flex;
  align-items: flex-end;
  transform: translateY(2px);
}
.header-tab-item {
  margin-right: 7px;
}
.header-tab-item:first-child {
  opacity: .5 !important;
  /*pointer-events: none;*/
}
.header-tab-item a {
  display: flex;
  padding: 4px 16px;
  font-size: 15px;
  align-items: center;
  background: #fff;
  border-radius: 5px 5px 0 0;
}
.header-tab-item a i {
  margin-right: 8px;
  font-size: 12px;
  transition: 0.1s;
}
.header-tab-item a:hover i {
  transform: rotate(15deg);
}
.block-nav-btn{
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 30px;
}
.block-nav-btn span{
  position: absolute;
  left: 7px;
  display: block;
  background: #fff;
  width: 15px;
  height: 1px;
  transition: all .4s;
}
.block-nav-btn span:nth-of-type(1){
  top: 8px;
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}
.block-nav-btn span:nth-of-type(2){
  top: 14px;
  transition: all .25s .25s;
  opacity: 1;
}
.block-nav-btn span:nth-of-type(3){
  bottom: 9px;
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards;
}
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.block-nav-btn.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(6px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}
.block-nav-btn.active span:nth-of-type(2){
  opacity: 0;
}
.block-nav-btn.active span:nth-of-type(3){
  bottom: 7px;
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.block-nav-btn.active + .header-tab {
  margin-left: 170px;
}
@media screen and (max-width: 767px) {
  .block-header .inner {
    padding: 0 10px;
  }
  .logout {
    font-size: 13px;
    letter-spacing: 0;
    height: auto;
  }
  .header-tab-item a {
    padding: 8px;
    font-size: 10px;
  }
  .header-tab {
    margin-left: 16px;
  }
  .block-nav-btn.active + .header-tab {
    margin-left: 20px;
  }
  .block-header .inner-right {
    font-size: 10px;
  }
  .contact {
    margin-right: 8px;
  }
  .head-nav-block {
    font-size: 12px;
  }
  .logout i {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .logout {
    font-size: 0;
  }
  .admin-logout {
    font-size: 10px;
  }
  .contact {
    margin-right: 12px;
  }
  .contact .side-nav-txt {
    font-size: 0;
  }
  .head-nav-block i {
    margin: 2px 0 0;
  }
}

/*=================================
  footer
=================================*/
footer {
  position: relative;
  margin-top: -35px;
}
.copy {
  padding: 8px;
  font-size: 12px;
  color: #868686;
  text-align: right;
}
@media screen and (max-width: 767px) {
  footer {
    margin: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.16);
  }
  .copy {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/*=================================
  main
=================================*/
.block-main {
  position: relative;
  display: flex;
  min-height: calc(100vh - 40px);
  background: #FCFEFF;
}
.modal-bg {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(124,124,124,.56);
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  z-index: 2;
}
.show-modal .modal-bg {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .block-main {
    min-height: calc(100vh - 40px);
  }
}

/*=================================
  side-bar
=================================*/
.block-side {
  width: 40px;
  min-width: 40px;
  /*padding: 10px 0;*/
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,.16);
  transition: 0.2s;
}
.side-nav-item a {
  display: flex;
  height: 40px;
  padding: 0 10px;
  font-size: 0;
  align-items: center;
}
.side-nav-item a i {
  width: 20px;
  margin-top: -1px;
  margin-right: 14px;
  font-size: 16px;
  text-align: center;
}
.side-nav-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.side-nav-sub {
  margin-left: 33px;
  display: block;
}
.side-nav-item .side-nav-sub i {
  display: inline-block;
  margin-right: 6px;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
}

.side-nav-item.active a,
.side-nav-item a:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.block-side.active {
  width: 210px;
  min-width: 210px;
}
.block-side.active .side-nav-item a {
  padding: 0 10px 0 10px;
}
.block-side.active .side-nav-item a,
.block-side.active .side-nav-item .side-nav-sub i {
  -webkit-animation: FONT 0s ease alternate 0.4s forwards;
  animation: FONT 0s ease alternate 0.4s forwards;
}
.block-side.active .side-nav-item a:hover {
  text-decoration: none;
}
.block-side .note {
  display: block;
  font-size: 0;
  text-align: center;
}
.block-side.active .note {
  -webkit-animation: FONT_S 0s ease alternate 0.4s forwards;
  animation: FONT_S 0s ease alternate 0.4s forwards;
}
@-webkit-keyframes FONT {
  0% {
    font-size: 0;
  }
  100% {
    font-size: 15px;
  }
}
@keyframes FONT {
  0% {
    font-size: 0;
  }
  100% {
    font-size: 15px;
  }
}
@-webkit-keyframes FONT_S {
  0% {
    font-size: 0;
  }
  100% {
    padding: 12px 0 8px;
    font-size: 12px;
  }
}
@keyframes FONT_S {
  0% {
    font-size: 0;
  }
  100% {
    padding: 12px 0 8px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .block-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    min-width: 0;
    min-height: 100%;
    overflow-y: auto;
    z-index: 100;
  }
  .side-nav-item a {
    height: 48px;
    padding: 0 16px;
  }
  .side-nav-item a i {
    width: 18px;
    margin-right: 6px;
    font-size: 18px;
  }
  .side-nav-sub {
    margin-left: 24px;
  }
  .block-side.active {
    width: 10px;
    min-width: 174px;
  }
  .block-side.active .side-nav-item a {
    padding: 0 9px;
  }
  @-webkit-keyframes FONT {
    0% {
      font-size: 0;
    }
    100% {
      font-size: 13px;
    }
  }
  @keyframes FONT {
    0% {
      font-size: 0;
    }
    100% {
      font-size: 13px;
    }
  }
  @-webkit-keyframes FONT_S {
    0% {
      font-size: 0;
    }
    100% {
      padding: 12px 0 8px;
      font-size: 11px;
    }
  }
  @keyframes FONT_S {
    0% {
      font-size: 0;
    }
    100% {
      padding: 12px 0 8px;
      font-size: 11px;
    }
  }

  .side-nav-block {
    flex-wrap: nowrap;
  }
  .active .side-nav-txt {
    font-size: 12px;
    white-space: nowrap;
  }
}

/*=================================
  page-content
=================================*/
.block-content {
  width: 100%;
  /*padding: 12px 32px 140px;*/
  padding: 6px 16px 72px;
  overflow: hidden;
}
.block-tit {
  display: flex;
  min-height: 36px;
  /*padding-bottom: 4px;*/
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: bold;
  border-bottom: 1px solid #E6E6E6;
  align-items: center;
}
.block-tit {
  padding: 4px 0;
  justify-content: space-between;
}
.block-under-tit {
  margin: -4px 0 10px;
  line-height: 1.4;
  font-weight: bold;
  color: #666;
  font-size: 12px;
}
.tit-logo {
  width: 220px;
  height: auto;
  font-size: 0;
}
.tit-logo-mhlw {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .block-content {
    padding: 9px 16px 64px;
  }
  .sec_04 .contact-txt table {
    font-size: 12px;
  }
  .block-tit {
    min-height: 52px;
    margin-bottom: 20px;
    padding-bottom: 4px;
    font-size: 16px;
  }
  .selection-btn-area {
    display: block;
    padding: 20px 0 0;
  }
  .block-under-tit {
    font-weight: normal;
  }
  .tit-logo {
    width: 110px;
  }
  .tit-logo-mhlw {
    width: 90px;
  }
}

.c-shadow {
  background: #fff;
  border-radius: 5px;
  /*box-shadow: 3px 3px 5px rgba(0,0,0,.16);*/
  box-shadow: 1px 3px 12px 0 rgba(0,0,0,.16);
}
.c-select-txt {
  margin-right: 24px;
  white-space: nowrap;
}

.c-table-striped-block {
  overflow: hidden;
}
.c-select-area .btn {
  margin: 10px auto;
}
.c-table-striped-top {
  display: flex;
  margin-bottom: 9px;
  align-items: flex-end;
  justify-content: space-between;
}
.c-table-top-left {
  display: flex;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.5;
  border-bottom: 1px solid #E6E6E6;
  align-items: flex-end;
}
.c-table-top-right {
  display: flex;
  width: 120px;
  justify-content: flex-end;
}
.c-table-num {
  margin: 0 20px 0 22px;
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: bold;
}
.c-table-scroll-block {
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
}
.c-table-striped {
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
}
.c-table-striped thead th {
  /*height: 56px;*/
  height: 32px;
  font-weight: bold;
  white-space: nowrap;
}
.c-table-striped th {
  /*height: 50px;*/
  height: 30px;
  font-weight: normal;
  border: 1px solid #E6E6E6;
}
.c-table-striped td {
  padding: 2px;
  border: 1px solid #E6E6E6;
  font-size: 14px;
}
.c-table-striped a {
  padding: 4px;
}
.c-table-striped .error {
  color: #ED5A5B;
}
.c-table-striped button {
  padding: 0;
  background: none;
  border: 1px solid transparent;
  border-width: 1px 0;
}
.c-table-striped button:hover {
  text-decoration: underline;
}
.c-table-striped button.mod-del {
  color: #ED5A5B;
}
.c-table-striped tr:nth-child(2n) {
  background: #EEF5FC;
}
.c-table-striped-pagenation {
  text-align: center;
}
.c-table-striped-pagenation ul {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
}
.c-table-striped-pagenation li {
  margin: 0 10px;
}
.c-table-striped-pagenation li span {
  padding: 0 1px;
  border-bottom: 2px solid;
}
.c-table-striped-pagenation li a {
  padding: 4px 8px;
  line-height: 1;
}
.page-item.active .page-link {
  background-color: transparent;
}
.page-item:first-child .page-link li,
.page-item:last-child .page-link li {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-table-top-left {
    font-size: 18px;
  }
  .c-table-num {
    margin: 0 16px;
    font-size: 24px;
  }
  .c-table-striped {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px){
  .c-table-scroll-block {
    margin-bottom: 0;
    overflow-x: auto;
  }
  .c-table-striped {
    min-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .c-select-txt {
    display: block;
    margin: 0 0 8px;
  }
  .c-table-top-left {
    font-size: 14px;
  }
  .c-table-num {
    margin: 0 4px;
    font-size: 16px;
  }
  .c-table-striped-top {
    display: block;
  }
  .c-table-top-left {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .c-table-top-right button {
    margin-left: auto;
  }
  .c-table-striped thead th {
    height: 30px;
  }
  .c-table-striped th {
    height: 30px;
  }
  .c-table-striped-pagenation ul {
    display: inline-flex;
    width: auto;
    max-width: 320px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .c-table-striped-pagenation li {
    margin: 0 3px;
    letter-spacing: -7px;
  }
  .c-table-striped-pagenation li a,
  .c-table-striped-pagenation li span {
    letter-spacing: 0;
  }
}


.block-top-btn-area {
  display: flex;
  margin-bottom: 10px;
  letter-spacing: 2px;
  justify-content: flex-end;
  align-items: center;
}
.c-table-noborder-wrap {
  width: 100%;
  /*max-width: 800px;*/
  margin: 0 auto;
  padding: 12px 12px 16px;
  border-radius: 0;
}
.c-table-noborder-top {
  display: flex;
  margin-bottom: 10px;
  justify-content: flex-end;
}
.c-table-noborder input.c-table-input-num{
  display: block;
  width: 64px;
  height: 40px;
  padding: 0 8px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
}
.c-table-noborder {
  width: 100%;
  max-width: 630px;
  margin: -16px auto 0;
  text-align: center;
  border-spacing: 0 16px;
  border-collapse: inherit;
}
.c-table-noborder thead th {
  font-size: 18px;
}
.c-table-noborder tbody th {
  padding: 0 8% 0 0;
  text-align: right;
  font-weight: normal;
}
.c-save-btn,
.c-register-btn {
  display: flex;
  justify-content: center;
  margin: 12px 0;
}
@media screen and (max-width: 767px) {
  .block-top-btn-area {
    margin-bottom: 24px;
    /*flex-wrap: wrap;*/
  }
  .c-table-noborder-top {
    margin-bottom: 32px;
  }
  .c-table-noborder-wrap {
    padding: 16px 12px 32px;
  }
  .c-table-noborder {
    width: 500px;
  }
  .c-table-noborder thead th {
    font-size: 16px;
  }
}

.c-table-form-wrap {
  /*width: 100%;
  max-width: 600px;*/
  /*width: 60%;*/
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.c-table-form {
  width: 100%;
 /* margin-top: -32px;*/
  text-align: left;
  border-spacing: 0 8px;
  border-collapse: inherit;
}
.c-table-form th {
  /*width: 35%;*/
  width: 20%;
  min-width: 196px;
  padding: 0 20px 0 0;
  font-size: 15px;
  font-weight: bold;
}
.c-table-form th span {
  font-size: 80%;
}
.c-table-form td input[type="text"],
.c-table-form td input[type="password"],
.c-table-form td input[type="mail"]{
  max-width: 740px;
}
@media screen and (max-width: 767px) {
  .c-table-form th,
  .c-table-form td {
    display: block;
  }
  .c-table-form {
    margin-top: -20px;
    border-spacing: 0 20px;
  }
  .c-table-form th {
    width: 100%;
    padding: 0 0 8px;
  }
}
.c-select-inner {
  display: flex;
  padding: 24px 56px;
  padding: 0 10px 20px;
  align-items: center;
  /*max-width: 600px;*/
  max-width: 1400px;
  margin: 0 auto 36px;
}
.report-wrap .c-select-inner {
  /*display: flex;*/
  /*padding: 24px 56px;*/
  padding: 0 10px 20px;
  align-items: center;
  /*max-width: 600px;*/
  margin: 0 auto 36px;
  display: none;
}
.c-select-mark {
  margin: 0 24px;
}
.c-select-area {
  margin-bottom: 24px;
  border-radius: 0;
}
.c-accordion{
  background: #d46875;
  color: #fff;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.c-accordion:hover{
  opacity: .8;
}
.c-accordion-btn{
  font-size: 20px;
}
.open .c-accordion-btn{
  transform: rotate(45deg);
}
.c-search-table-wrap{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c-search-table{
  width: 49%;
}
.c-search-table th{
  text-align: right;
  padding: 10px;
  min-width: 190px;
  font-size: 14px;
}
.c-search-table td{
  padding: 4px 0;
  min-width: 230px;
}


@media screen and (max-width: 767px) {
  .c-select-inner {
    margin-bottom: 24px;
    /*padding: 14px 12px;*/
  }
  .c-select-mark {
    display: block;
    margin: 2px 0;
  }
  .c-select-area {
    margin-bottom: 32px;
  }
  .c-search-table{
    width: 92%;
  }
}
@media screen and (max-width: 540px){
  .c-accordion{
     padding: 10px;
  }
  .c-search-table th,
  .c-search-table td{
    display: block;
    padding: 5px 0;
    text-align: left;
  }
}

.c-back-btn:not(:last-child) {
  margin-right: 32px;
}
.c-table-gather {
  width: 100%;
  max-width: 1000px;
  margin: -16px auto 0;
  text-align: left;
  border-spacing: 0 6px;
  border-collapse: inherit;
  font-size: 15px;
}
.c-table-gather tbody th {
  width: 40%;
  padding: 0 4% 0 0;
  text-align: right;
  font-weight: bold;
}
.c-table-gather tbody th {
  padding: 0 0 4px;
}
@media screen and (max-width: 767px) {
  .c-back-btn:not(:last-child) {
    margin-right: 8px;
  }
  .c-table-gather {
    margin-top: -4px;
    font-size: 12px;
  }
  .c-table-gather tbody th,
  .c-table-gather tbody td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .c-table-gather tbody th {
    padding: 0 0 8px;
  }
  .report-tit {
    margin-bottom: 16px;
    padding: 12px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  .custom-select .arrow:before {
    font-size: 12px !important;
  }
}

.c-select-inner-btw {
  justify-content: space-between;
}
.c-select-item {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: space-between;
}
.c-select-item:not(:last-child) {
  padding-right: 7.8%;
}
@media screen and (max-width: 768px) {
  .c-select-inner-btw {
    display: block;
  }
  .c-select-item:not(:last-child) {
    padding: 0 0 12px;
  }
  .c-select-item {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 767px){
  .c-select-item {
    display: block;
  }
  .c-table-top-right {
    width: 100%;
  }
}

.c-edit-btn:not(:last-child) {
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .c-edit-btn:not(:last-child) {
    margin-right: 12px;
  }
}

.c-select-tit {
  font-size: 18px;
  font-weight: bold;
}
.c-check-inner {
  display: flex;
  align-items: center;
}
.c-check-tit {
  margin-right: 22px;
  white-space: nowrap;
}
.c-check-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-check-list .check-box:not(:last-child) {
  margin-right: 40px;
}
.c-table-striped td .check-box {
  width: 44px;
  margin: 0 auto;
  padding-left: 12px;
}
.c-download-btn {
  display: flex;
  margin-bottom: 56px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-check-inner {
    display: block;
  }
  .c-check-tit {
    display: block;
    margin: 0 0 8px;
  }
}
.c-back-btn {
  display: flex;
  justify-content: center;
}

/*=================================
  ログイン/パスワードリセット
=================================*/
.login-content {
  display: flex;
  min-height: 100vh;
  padding: 60px 32px;
  align-items: center;
  justify-content: center;
}
.login-content .login-wrap {
  width: 100%;
  padding: 0;
}
.c-login-img{
  max-width: 115px;
  width: 80%;
  margin: 0 auto 40px;
}
.c-login-img img{
  width: 100%;
}
.c-login--item{
  margin: 0 auto 32px;
  max-width: 350px;
  width: 80%;
}
.c-login--item:last-child{
  margin-bottom: 52px;
}
.c-login--btn{
  max-width: 220px;
  margin: 0 auto 40px;
}

.custom-select.arrow-select::before {
  display: none !important;
}

input,
select,
textarea {
  -webkit-appearance: none; 
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .login-content {
    justify-content: inherit;
  }
  .block-side {
    min-height: calc(100vh - 40px);
  }
  .c-table-gather {
    border-spacing: 0 16px;
  }
}

@media screen and (max-width: 480px) {
  .toasted-container.top-right {
    top: auto !important;
    bottom: 0;
  }
}