@charset "UTF-8";


/* base
------------------------------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
  line-height: 1;
  margin: 0;
  padding: 0;
}

html { font-size: 62.5%; }

body {
  min-width: 1240px;
  min-height: 600px;
  height: 100dvh;
  background: #fff;
  color: #222;
  font-family: YakuHanJPs, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;  
  font-display: optional;
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-wrap: wrap;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;  
}

a { color: #009363; }

a,
input[type="submit"] {
  cursor: pointer;
  transition: opacity 300ms;
}

a:hover,
input[type="submit"]:hover {
  text-decoration: none;
  opacity: 0.5;
}


/* ヘッダー
------------------------------------------------------------------------------------*/
.header_wrap {
  width: 100%;
  height: 44px;
  background: #005CB9;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items:center;
  padding: 0 16px 0 12px;
}

.header_logo_wrap {
  font-size: 1.4rem;
  display: flex;
  position: relative;
  top: 1px;
}

.header_logo_link {
  width: 128px;
  position: relative;
  top: -2px;
  margin-right: 16px;
}

.header_logout_wrap { font-size: 1.4rem; }

.header_logout_link {
  color: #fff;
  margin-left: 24px;
}


/* サイドナビ
------------------------------------------------------------------------------------*/
.side_navi_wrap {
  width: 48px;
  height: calc(100% - 44px);
  background: #eee;
}

.side_navi_li {
  height: 48px;
  display: grid;
  align-items: end;
  position: relative;
}

.side_navi_li:nth-of-type(3) {
  border-top: #eee solid 1px;
  border-image: linear-gradient(to right,#eee 4px,#707070 4px 44px,#eee 44px);
  border-image-slice: 1;
  height: 52px;
}

.side_navi_description {
  height: 28px;
  background: #eee;
  border: #aaa solid 1px;
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
  display: grid;
  place-items: center;
  position: absolute;
  top: 10px;
  left: 52px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  padding: 0 16px;
  transition: opacity 300ms;
}
.side_navi_li:hover .side_navi_description { opacity: 1; }

.side_navi_description:before{
  content: "";
  border: 6px solid transparent;
  border-right: 10px solid #eee;
  position: absolute;
  top: 50%;
  left: -15px;
  z-index: -1;
  margin-top: -6px;
}
.side_navi_description:after{
  content: "";
  border: 6px solid transparent;
  border-right: 10px solid #aaa;
  position: absolute;
  top: 50%;
  left: -17px;
  z-index: -2;
  margin-top: -6px;
}

.side_navi_li:nth-of-type(1) .side_navi_description { top: 13px; }
.side_navi_li:nth-of-type(2) .side_navi_description { top: 9px; }
.side_navi_li:nth-of-type(3) .side_navi_description { top: 13px; }


/* コンテンツ
------------------------------------------------------------------------------------*/
.contents_wrap {
  flex: 1;
  order: 1;
  position: relative;
}

.scroll_wrap {
  --inside_h: calc(44px + 24px + 46px + 24px);
  height: calc(100dvh - var(--inside_h));
  border: #aaa solid 1px;
  border-radius: 0 0 8px 8px;
  overflow: auto;
}
.scroll_wrap_pager_on {
  --inside_h: calc(44px + 24px + 46px + 58px);
  height: calc(100dvh - var(--inside_h));
}
.scroll_wrap_gray { background: #f1f1f1; }

/* コンテンツタイトル */
.list_header_wrap {
  height: 46px;
  background: #4D4D4D; 
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px 0 16px;
}

.list_header_tit {
  color: #fff;
  background: url(/images/tit_slash.svg) left 37px top 0px no-repeat;
  font-size: 2rem;
  display: flex;
  align-items: center;
}
.list_header_tit_icon {
  width: 29px;
  margin-right: 29px;
}

.list_header_btns_wrap {
  display: flex;
}

.list_header_btns_new,
.list_header_btns_edit,
.list_header_btns_registration,
.list_header_btns_delete,
.list_header_btns_back {
  width: 110px;
  height: 30px;
  background: #fff;
  border: #009363 solid 1px;
  border-radius: 4px;
  color: #009363;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  display: grid;
  place-items: center;
  margin-left: 16px;
}

.list_header_btns_back {
  border: #4D4D4D solid 1px;
  color: #4D4D4D;
}

/* 検索 */
.list_header_search_wrap {
  height: 30px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.list_header_search_wrap_disabled {
  opacity: 0.4;
  pointer-events: none;
}

.list_header_search_inner {
  height: 30px;
  background: #fffdf7;
  border: #ac8400 solid 1px;
  border-radius: 4px;
  color: #222;
  font-size: 1.3rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.list_header_search_date_wrap {
  display: flex;
  align-items: center;
}

.list_header_search_date_inputDate_wrap {
  position: relative;
}
.list_header_search_date_inputDate_wrap::after {
  content: "";
  width: 100%;
  height: 6px;
  border-color: #ac8400;
  border-style: solid;
  border-width: 0 1px 1px 1px;  
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.list_header_search_date_inputDate {
  height: 20px;
  background: none;
  border: none;
  outline: none;
  font-size: 1.3rem;
  padding: 0 6px;
}

.list_header_search_shop_wrap {
  background: linear-gradient(to bottom, #444 1px, transparent 1px) top left / 1px 2px repeat-y;
  display: flex;
  align-items: center;
  margin-left: 12px;
  padding-left: 12px;
}

.list_header_search_shop_select_wrap {
  position: relative;
}
.list_header_search_shop_select_wrap::after {
  content: "";
  width: 100%;
  height: 6px;
  border-color: #ac8400;
  border-style: solid;
  border-width: 0 1px 1px 1px;  
  display: block;
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

.list_header_search_shop_select { 
  width: 150px;
  height: 20px;
  background: url(/images/pulldown_icon.svg) #fffdf7 right 6px center no-repeat;
  background-size: 15px;
  border: none;
  border-radius: 0;
  outline: none;
  color: #353535;
  font-size: 1.3rem;
  list-style: 1;
  position: relative;
  margin: 0;
  padding: 0 6px;
  -webkit-appearance: none;
}

.list_header_search_submit {
  width: 62px;
  height: 22px;
  background: url(/images/search_icon.svg) #fffdf7 right 6px top 5px no-repeat;
  background-size: 13px;
  border: none;
  border-left: #AC8401 solid 1px;
  color: #ac8400;
  font-size: 1.4rem;
  font-weight: bold;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-appearance: none;
  margin-left: 16px;
  padding-right: 12px;
}

.list_header_btns_detailSearch {
  width: 102px;
  height: 30px;
  background: url(/images/searchDetail_icon.svg) #ac8400 right 6px top 8px no-repeat;
  background-size: 18px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  display: grid;
  place-items: center;
  margin-left: 8px;
  padding-right: 16px;
}
.list_header_btns_detailSearch_disabled {
  opacity: 0.4;
  pointer-events: none;
}


/* 検索エラー
------------------------------------------------------------------------------------*/
.search_error_wrap {
  background: #fae6e5;
  border-bottom: #aaa solid 1px;
  border: #c00 solid 1px;
  padding: 16px 12px 16px 32px ;
}

.search_error_txt {
  --fs: 1.4rem;
  --fh: 1.6rem;
  color: #c00;
  font-size: var(--fs);
  font-weight: bold;
  line-height: var(--fh);
  margin: calc(0px + ((var(--fs) - var(--fh)) / 2)) 0;
  padding-top: 6px;
}
.search_error_txt:first-of-type { padding-top: 0; }


/* 確認モーダル
------------------------------------------------------------------------------------*/
.confirmationModal_wrap {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transition: opacity 250ms;
  pointer-events: none;
}

.confirmationModal_wrap_open {
  opacity: 1;
  pointer-events: auto;
}

.confirmationModal_inner {
  width: 700px;
  height: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  top: 50%;
  margin: 0 auto;
  padding: 72px 16px;
  transform: translateY(-50%);
}

.confirmationModal_txt {
  font-size: 2.8rem;
  font-weight: bold;
}

.confirmationModal_btn_wrap {
  width: 566px;
  display: flex;
  justify-content: space-between;
  margin: 72px auto 0;
}

.confirmationModal_btn_wrap a:first-of-type,
.confirmationModal_btn_wrap a:last-of-type {
  width: 270px;
  height: 56px;
  border: #005CB9 solid 2px;
  border-radius: 12px;
  color: #005CB9;
  font-size: 2.2rem;
  font-weight: bold;
  text-decoration: none;
  display: grid;
  place-items: center;
}

.confirmationModal_btn_wrap a:last-of-type {
  background: #005CB9;
  color: #fff;
}


/* エラーモーダル
------------------------------------------------------------------------------------*/
.errorModal_wrap {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transition: opacity 250ms;
  pointer-events: none;
}

.errorModal_wrap_open {
  opacity: 1;
  pointer-events: auto;
}

.errorModal_inner {
  width: 700px;
  height: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  top: 50%;
  margin: 0 auto;
  padding: 72px 16px;
  transform: translateY(-50%);
}

.errorModal_txt {
  font-size: 2.8rem;
  font-weight: bold;
}

.errorModal_btn {
  width: 270px;
  height: 56px;
  border: #005CB9 solid 2px;
  border-radius: 12px;
  color: #005CB9;
  font-size: 2.2rem;
  font-weight: bold;
  text-decoration: none;
  display: grid;
  place-items: center;
  margin: 72px auto 0;
}