@charset "UTF-8";
/*------------------------
    breakpoint
-------------------------*/
/*------------------------
    カラーリング
-------------------------*/
/*------------------------
    基本
-------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@300;400;500&display=swap");
html,
body {
  height: 100%;
  width: 100%;
  background: #fff;
  scroll-behavior: smooth;
  font-size: 62.5%;
  /*10px*/
}

body {
  font-size: 13px;
  font-family: Roboto, "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium",
    "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", arial, helvetica, clean, sans-serif;
  line-height: 1.7;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  color: #1e1e1e;
}

img img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #206c78;
}

a:hover,
a:focus {
  color: #309da5;
  text-decoration: none;
}

.sup {
  vertical-align: super;
  font-size: smaller;
}

.sub {
  vertical-align: sub;
  font-size: smaller;
}

.caption {
  margin: 20px auto;
  font-size: 1.2rem;
}

.nocpy {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* clearfix */
.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*------------------------
		font size
-------------------------*/
.fs_14 {
  font-size: 1.4rem;
}

.fs_15 {
  font-size: 1.5rem;
}

.fs_16 {
  font-size: 1.6rem;
}

.fs_17 {
  font-size: 1.7rem;
}

.fs_18 {
  font-size: 1.8rem;
}

.fs_19 {
  font-size: 1.9rem;
}

.fs_20 {
  font-size: 2rem;
}

/*------------------------
		spacing
-------------------------*/
.mt_1 {
  margin-top: 1rem;
}

.mt_2 {
  margin-top: 2rem;
}

.mt_3 {
  margin-top: 3rem;
}

.mt_4 {
  margin-top: 4rem;
}

.mt_5 {
  margin-top: 5rem;
}

.mt_6 {
  margin-top: 6rem;
}

.mt_7 {
  margin-top: 7rem;
}

.mt_8 {
  margin-top: 8rem;
}

.mb_1 {
  margin-bottom: 1rem;
}

.mb_2 {
  margin-bottom: 2rem;
}

.mb_3 {
  margin-bottom: 3rem;
}

.mb_4 {
  margin-bottom: 4rem;
}

.mb_5 {
  margin-bottom: 5rem;
}

.mb_6 {
  margin-bottom: 6rem;
}

.mb_7 {
  margin-bottom: 7rem;
}

.mb_8 {
  margin-bottom: 8rem;
}

/*------------------------------------------------------------
		レイアウトパーツ
------------------------------------------------------------*/
.wrap {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}

.inner {
  padding: 16px 32px;
}

.box_inner {
  padding: 16px 0;
}

.field_wrapper {
  margin: 16px 0;
  background: #f7f7f7;
  border-radius: 4px;
}
.field_wrapper.detail_field {
  padding: 0 16px 16px 16px;
  margin-bottom: 32px;
}
.field_wrapper.detail_field:last-child {
  margin-bottom: 0px;
}

.agreement_item {
  margin-bottom: 32px;
}
.agreement_item:last-child {
  margin-bottom: 0;
}

hr {
  width: 100%;
  margin: 5px 0;
}

/*------------------------
		heading
-------------------------*/
h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.3rem;
}

/*------------------------
		GrovalNavi
-------------------------*/
.GrobalNavi {
  width: 212px;
  height: 100%;
  border-right: 1px solid #e0e0e0;
}

.gnavi_wrapper {
  overflow-y: scroll;
  height: 100%;
}

.gnavi_wrapper ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.gnavi_wrapper ul li {
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
}

.gnavi_wrapper ul li a {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  position: relative;
}

.gnavi_wrapper ul li a:hover,
.gnavi_wrapper ul li a.current {
  background: #dcf5f9;
}

.gnavi_wrapper ul li a.current:before {
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  width: 4px;
  height: 24px;
  background: #206c78;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.gnavi_wrapper ul li.child a {
  padding-left: 32px;
}

.gnavi_wrapper ul li a .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

/*------------------------
		header
-------------------------*/
.header {
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1;
  border-bottom: 1px solid #e0e0e0;
}
.header .logo_area {
  width: 212px;
  display: flex;
  align-items: center;
  padding: 32px;
  border-right: 1px solid #e0e0e0;
}
.header .account_navi {
  width: calc(100% - 212px);
  padding: 32px;
  display: flex;
  justify-content: space-between;
}
.header .account_navi .account_item {
  display: flex;
  align-items: center;
  line-height: 1;
}
.header .account_navi .account_item_logo {
  width: 16px;
  height: 16px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 8px;
}
.header .account_navi .account_item_logo img {
  width: 100%;
  height: auto;
}
.header._general {
  justify-content: center;
}
.header._general .logo_area {
  border-right: none;
}
.header._content_wrapped {
  justify-content: center;
  border-bottom: none;
}
.header._content_wrapped .logo_area {
  border-right: none;
}

/*------------------------
		main
-------------------------*/
.main {
  width: calc(100% - 212px);
  height: 100%;
}
.main .scroll_area {
  height: calc(100% - 86px);
  overflow-y: scroll;
}
.main._single {
  width: 100%;
}

.link_text_basic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.4rem;
}
.link_text_basic:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../images/ic_arrow_basic02.svg) center bottom no-repeat;
  background-size: 100% auto;
}

/*-------	breadcroumb -------*/
.breadcroumb_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.breadcroumb_list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}
.breadcroumb_list li:not(.home):before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/ic_arrow_basic01.svg) center left no-repeat;
  background-size: 100%;
}

/*-------	pagenation -------*/
.pagenation {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 32px;
}
.pagenation .field_count {
  width: 80px;
}
.pagenation .icon._rotate {
  transform: rotate(-180deg);
}
.pagenation .form_item_label {
  margin-bottom: 0;
}

/*-------	page_heading -------*/
.page_heading {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}

/*-------	section -------*/
.section_heading {
  padding: 16px 0;
}
.section_heading .sec_title {
  font-weight: bold;
  margin-bottom: 0;
}

.section_content {
  padding: 16px 0;
}
.section_content .search_field .search_item {
  margin-bottom: 16px;
}

/*-------	overlay -------*/
.overlay_window_ {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.8);
  display: none;
  z-index: 999;
}
.overlay_window_._clear {
  background: #cccrgba 255, 255, 255, 0.1;
}
.overlay_window_ .dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 400px;
  padding: 16px;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.overlay_window_ .dialog ._done {
  padding-top: 32px;
  padding-bottom: 32px;
}
.overlay_window_ .dialog.edit_area {
  padding: 0;
  gap: 0;
}
.overlay_window_ .dialog.edit_area .area_heading {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.overlay_window_ .dialog.edit_area .area_heading h2 {
  margin-bottom: 0;
}
.overlay_window_ .dialog.edit_area .area_heading .close-btn {
  background: url(../images/ic_close01.svg) center right no-repeat;
}
.overlay_window_ .dialog.edit_area .area_content {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
}
.overlay_window_ .dialog.edit_area .area_bottom {
  padding: 16px;
}

/*-------	Search -------*/
.sec_search {
  border-bottom: 1px solid #e0e0e0;
}

.sec_search_result {
  padding: 16px 0;
}

/*-------	input field -------*/
.input_field {
  padding: 16px;
}
.input_field .field_item {
  margin-bottom: 16px;
}

/*-------	form -------*/
.form-control {
  font-size: 1.3rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 4px;
  line-height: 1.7;
}
.form-control.form_short_1 {
  width: 40px;
}
.form-control.form_short_2 {
  width: 60px;
}
.form-control.form_short_3 {
  width: 80px;
}
.form-control.form_short_4 {
  width: 120px;
}
.form-control.form_short_x {
  width: auto;
}
.form-control.form_short_100 {
  width: 100%;
}
.form-control.is-invalid {
  background: #fff8d6;
}

.field_unit {
  margin-left: 4px;
  margin-right: 4px;
}

.form_item_label {
  margin-bottom: 8px;
}

.required {
  color: #ff6565;
  margin-left: 4px;
}

.form_period_select {
  display: flex;
  align-items: center;
}

.upload_area {
  background: #f5f5f5;
  padding: 8px;
}
.upload_area #dropArea {
  width: 100%;
  padding: 40px 0;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4) 4px,
      transparent 4px,
      transparent 9px
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4) 4px,
      transparent 4px,
      transparent 9px
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4) 4px,
      transparent 4px,
      transparent 9px
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4) 4px,
      transparent 4px,
      transparent 9px
    );
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 11px 2px, 2px 11px, 11px 2px, 2px 11px;
  background-position: left bottom, left bottom, right top, right top;
}
.upload_area #thumb {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  color: #999999;
}
.upload_area #thumb img {
  max-width: 300px;
}

.file_item_box {
  display: flex;
  gap: 16px;
}
.file_item_box .file_item {
  width: 180px;
  border: 1px solid #e0e0e0;
}
.file_item_box .file_item .file_name {
  background: #f5f5f5;
  padding: 8px;
  gap: 4px;
  color: #206c78;
  display: flex;
  align-items: center;
}
.file_item_box .file_item .file_various {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  color: #fff;
}

/*-------	input field -------*/
.field_item {
  margin: 8px 0;
}
.field_item dl.item {
  margin-top: -8px;
  margin-bottom: -8px;
}
.field_item.change_table dl.item {
  margin-top: 0px;
  margin-bottom: 0px;
}
.field_item .item {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.field_item .item .item_label {
  width: 140px;
  padding: 16px 0;
  font-weight: normal;
  margin: 0;
}
.field_item .item .item_content {
  width: calc(100% - 140px - 8px);
  padding: 16px 0;
  margin: 0;
}
.field_item .item .item_content._changing {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 0;
}
.field_item .item .item_content._changing .content_before {
  width: 50%;
  padding: 16px 0;
}
.field_item .item .item_content._changing .content_after_label {
  width: 50%;
  padding: 16px 0;
}
.field_item .item .item_content._changing .content_after {
  width: 50%;
  padding: 16px 0;
  position: relative;
  background: #fff8d6;
}
.field_item .item .item_content._changing .content_after:after {
  position: absolute;
  top: calc(50% - 8px);
  left: -7px;
  content: "";
  border-right: 10px solid transparent;
  border-bottom: 17.3205px solid #999999;
  border-left: 10px solid transparent;
  transform: rotate(90deg);
}
.field_item .item.no_border {
  border-bottom: none;
}

/*-------	form_error_area -------*/
.form_error_area {
  margin: 16px 0;
}
.form_error_area .error_content {
  padding: 8px 16px;
  background: #fff3f3;
  color: #dc3545;
}

/*-------	notice_number -------*/
.notice_number {
  font-size: 1.3rem;
  line-height: 1;
  padding: 5px 8px;
  color: #fff;
  background: #ff6565;
  border-radius: 16px;
  margin-right: 4px;
}

/*-------	btn -------*/
.btn_box {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.btn {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 1.4rem;
  padding: 4px 8px;
  color: #206c78;
  background-color: #fff;
  border-color: #206c78;
  border-radius: 4px;
}
.btn.btn-primary {
  color: #fff;
  background-color: #206c78;
  border-color: #206c78;
}
.btn.btn-primary:hover {
  background: #309da5;
  border-color: #309da5;
}
.btn.btn-outline-primary {
  color: #206c78;
  background-color: #fff;
  border-color: #206c78;
}
.btn.btn-outline-primary:hover {
  color: #309da5;
  border-color: #309da5;
}
.btn.btn-secondary {
  color: #fff;
  background-color: #afafaf;
  border-color: #afafaf;
}
.btn.btn-secondary:hover {
  background: #309da5;
  border-color: #309da5;
}
.btn.btn-outline-secondary {
  color: #afafaf;
  background-color: #fff;
  border-color: #afafaf;
}
.btn.btn-outline-secondary:hover {
  color: #309da5;
  border-color: #309da5;
}
.btn.btn-outline-blue {
  color: #0098d8;
  background-color: #fff;
  border-color: #0098d8;
}
.btn.btn-outline-blue:hover {
  opacity: 0.8;
}
.btn.btn-outline-red {
  color: #ff6565;
  background-color: #fff;
  border-color: #ff6565;
}
.btn.btn-outline-red:hover {
  opacity: 0.8;
}
.btn.btn-with-arrow {
  position: relative;
  display: flex;
  align-items: center;
}
.btn.btn-with-arrow:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(../images/ic_arrow_basic01.svg) center left no-repeat;
  background-size: 100%;
}
.btn.btn-with-arrow.arrow_reverse:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(../images/ic_arrow_basic01.svg) center right no-repeat;
  transform: scale(-1, 1);
  background-size: 100%;
}
.btn.btn-with-arrow.arrow_reverse:after {
  display: none;
}
.btn.btn-small-text {
  font-size: 1.3rem;
  padding: 3px 4px;
}
.btn.btn-flex {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/*-------	table -------*/
.table_wraper {
  margin-top: 8px;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.table_basic {
  width: 100%;
  background: #fff;
}
.table_basic a:hover {
  color: #309da5;
  text-decoration: underline;
}
.table_basic tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.table_basic tbody tr:last-child {
  border-bottom: none;
}
.table_basic tbody tr th .label {
  margin: 8px 0;
  padding: 4px 8px;
  font-weight: normal;
  border-right: 1px solid #e0e0e0;
}
.table_basic tbody tr th._date {
  width: 13%;
  min-width: 120px;
  text-align: center;
}
.table_basic tbody tr th._option {
  width: 13%;
  min-width: 120px;
  text-align: center;
}
.table_basic tbody tr th._checkbox {
  width: 5%;
  min-width: 30px;
  text-align: center;
}
.table_basic tbody tr th._amount {
  width: 12%;
  min-width: 120px;
}
.table_basic tbody tr th:first-child .label {
  margin-left: 16px;
}
.table_basic tbody tr th:last-child .label {
  padding-right: 16px;
  border-right: none;
}
.table_basic tbody tr td.item_row .item {
  margin: 8px 0;
  padding: 0 8px;
}
.table_basic tbody tr td.item_row._changing {
  background: #fff8d6;
}
.table_basic tbody tr td.item_row._checkbox {
  width: 5%;
  min-width: 30px;
}
.table_basic tbody tr td.item_row._room-num {
  width: 7%;
  min-width: 80px;
}
.table_basic tbody tr td.item_row._name {
  width: 10%;
  min-width: 100px;
}
.table_basic tbody tr td.item_row._various {
  width: 8%;
  min-width: 110px;
  /* 申込受付
  /* 契約手続
  &._applied .item {
  	background: #AEE1EA;
  }
  /* 審査
  &._screen .item {
  	background: #dbeac6;
  }
  /* キャンセル
  &._cancel .item {
  	background: #E9D5D5;
  }
  /* NG
  &._ng .item {
  	background: #EAD2AE;
  }
  /* 承認
  &._approved .item {
  	background: #E9D5D5;
  }
  /* 契約
  &._agreement .item {
  	background: #F3E4D2;
  }
  /* 退去解約
  &._moveout .item {
  	background: #ddd68e;
  }
  */
}
.table_basic tbody tr td.item_row._various .item {
  padding: 4px;
  text-align: center;
  margin-right: 4px;
  background: #e9d5d5;
}
.table_basic tbody tr td.item_row._date {
  width: 13%;
  min-width: 120px;
  text-align: center;
}
.table_basic tbody tr td.item_row._amount {
  width: 12%;
  min-width: 120px;
}
.table_basic tbody tr td:first-child .item {
  margin-left: 16px;
}
.table_basic tbody tr td:last-child .item {
  padding-right: 16px;
}
.table_basic tbody tr.unread {
  font-weight: bold;
}

/*------------------------
		footer
-------------------------*/
.footer {
  background: #f5f5f5;
  padding: 16px 32px;
  font-size: 1.2rem;
  line-height: 1;
}

.f_content {
  display: flex;
  justify-content: space-between;
}

.f_gnavi ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.f_gnavi ul li {
  margin-right: 16px;
}

.f_gnavi ul li:last-child {
  margin-right: 0;
}

.f_copy {
  margin-left: auto;
}

/*------------------------
		page / change
-------------------------*/
.toggle {
  display: none;
}

.icon_arrow_circle {
  width: 100%;
  margin: 0;
}

.icon_arrow_circle::before {
  /*タイトル横の矢印*/
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid #206c78;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 16px);
  right: 0px;
}

.icon_arrow_circle::after {
  /*タイトル横の矢印*/
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #206c78;
  border-right: 1px solid #206c78;
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: calc(50% - 7px);
  right: 11px;
  transform: rotate(135deg);
}

.icon_arrow_circle,
.accordion_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion_content {
  /*本文*/
  height: 0;
  padding: 0;
  overflow: hidden;
}

.toggle:checked + .icon_arrow_circle + .accordion_content {
  /*開閉時*/
  height: auto;
  transition: all 0.3s;
  padding-bottom: 16px;
}

.toggle:checked + .icon_arrow_circle::after {
  transform: rotate(-45deg) !important;
  top: calc(50% - 2px);
  transition: all 0.1s;
}

/*------------------------
		page / message
-------------------------*/
.message_profile {
  margin: 16px 0 0;
  display: flex;
  align-content: center;
  gap: 4px;
}
.message_profile .profile_item {
  display: flex;
  align-content: center;
  padding: 4px;
}
.message_profile .profile_item._various {
  padding: 0;
  display: block;
  width: 8%;
  min-width: 110px;
  /* 申込受付 */
  /* 審査 */
  /* キャンセル */
  /* NG */
  /* 承認 */
}
.message_profile .profile_item._various .item {
  padding: 4px;
  text-align: center;
  margin-right: 4px;
}
.message_profile .profile_item._various._agreement .item {
  background: #f3e4d2;
}
.message_profile .profile_item._various._applied .item {
  background: #aee1ea;
}
.message_profile .profile_item._various._screen .item {
  background: #dbeac6;
}
.message_profile .profile_item._various._cancel .item {
  background: #e9d5d5;
}
.message_profile .profile_item._various._ng .item {
  background: #ead2ae;
}
.message_profile .profile_item._various._approved .item {
  background: #e9d5d5;
}

/*------------------------
		チェックした案件の操作
-------------------------*/
.bulk_contoller {
  position: relative;
}
.bulk_contoller .check_control {
  display: none;
  cursor: pointer;
}
.bulk_contoller .btn.btn-outline-primary,
.bulk_contoller .btn-outline-primary:not(:disabled):not(.disabled):active {
  margin-bottom: 0;
  color: #ccc;
  background-color: #fff;
  border-color: #ccc;
  cursor: auto;
}
.bulk_contoller .bulk_contol_menu {
  position: absolute;
  top: 38px;
  right: 4px;
  width: 100%;
  margin: 0;
  padding-left: 0;
  list-style: none;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.bulk_contoller .bulk_contol_menu li a {
  padding: 8px 16px;
  display: block;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}
.bulk_contoller .bulk_contol_menu li a:hover {
  background: #206c78;
  color: #fff;
}
.bulk_contoller .bulk_contol_menu li:last-child a {
  border-bottom: none;
}
.bulk_contoller._checked .btn.btn-outline-primary {
  color: #206c78;
  background-color: #fff;
  border-color: #206c78;
  cursor: pointer;
}
.bulk_contoller._checked .btn.btn-outline-primary:hover {
  background: #206c78;
  color: #fff;
}

#table_sub_menu_01,
#table_sub_menu_02 {
  display: none;
}

.bulk_contoller._checked #table_sub_toggle_01:checked + #table_sub_menu_01,
.bulk_contoller._checked #table_sub_toggle_02:checked + #table_sub_menu_02 {
  display: block;
}

.message_content .date {
  margin: 16px 0;
}

/*------------------------
		page / done
-------------------------*/
.page._done .page_heading {
  padding: 32px 0;
  border-bottom: none;
}
.page._done .page_heading figure {
  margin-bottom: 16px;
}
.page._done .page_heading .icon {
  width: 72px;
  height: 72px;
}
.page._done .page_content {
  padding-bottom: 64px;
}

/*------------------------
		empty_area
-------------------------*/
.empty_area {
  padding: 16px 0px;
}
.empty_area .inner {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.empty_area .empty_image {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
.empty_area .empty_image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

/*------------------------
		document
-------------------------*/
.document_list {
  padding-left: 0;
}
.document_list .document_list_item {
  list-style: none;
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #ccc;
  padding: 16px 0;
}
.document_list .item_image {
  width: 120px;
  box-sizing: border-box;
  padding: 8px;
  aspect-ratio: 2/3;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}
.document_list .item_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.document_list .item_image img.icon {
  width: 24px;
  height: auto;
}
.document_list .item_text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.document_list .document_title {
  font-weight: bold;
}
.document_list .btn {
  margin-left: 0;
}

/*------------------------
login, password
-------------------------*/
.enter_window {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background: #f5f5f5;
}
.enter_window .page_content {
  width: 375px;
  background: #fff;
}
.enter_window .page_content .inner {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.enter_window .page_content .inner .content_heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.enter_window .page_content .inner .content_heading .page_title {
  width: 100%;
  font-size: 1.6rem;
  margin: 0;
  text-align: center;
}
.enter_window .page_content .inner .icon_arrow_circle::before {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: 0px;
}
.enter_window .page_content .inner .icon_arrow_circle::after {
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(225deg);
  top: calc(50% - 4px);
  left: 9px;
  transform: rotate(225deg);
}
.enter_window .footer {
  width: 100%;
  margin-top: auto;
}
.enter_window._accepted {
  background: #fff;
}
.enter_window._accepted .page_content {
  background: #f5f5f5;
}
.enter_window._accepted .page_content .section_content {
  padding: 16px;
  background: #fff;
}

.validate_window {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.validate_window .page_content {
  width: 375px;
  background: #f5f5f5;
}
.validate_window .page_content .messsage {
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*------------------------------------------------------------
		home
------------------------------------------------------------*/
.page_home .main {
  background: #f5f5f5;
}
.page_home .main .section_heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page_home .main .sec_title {
  padding: 16px;
  margin: 0;
  font-size: 2.4rem;
}
.page_home .main .notice {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  color: #206c78;
  padding: 0 8px;
}
.page_home .main .section_content {
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}
.page_home .main .sec_search_result .section_content {
  max-height: 60vh;
  overflow: scroll;
}
.page_home .main .table_wraper {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.page_home .status_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
}
.page_home .status_list .item {
  width: 100%;
  padding: 16px 0px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.page_home .status_list .item .item_title {
  font-size: 1.3rem;
  color: #206c78;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page_home .status_list .item .item_title:before {
  content: "";
  width: 4px;
  height: 24px;
  background: #206c78;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.page_home .status_list .item .item_content {
  display: flex;
  padding: 0 16px;
  align-items: baseline;
}
.page_home .status_list .item .item_content .count {
  width: 100%;
  text-align: center;
  color: #206c78;
  font-weight: bold;
  letter-spacing: 2px;
}
.page_home .status_list .item .item_content .count .num {
  font-size: 3.2rem;
}
.page_home .status_list .item .item_content .link {
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.page_home .status_bottom {
  padding: 16px 0;
  text-align: right;
}
.page_home .empty_area {
  background: #fff;
  padding: 16px 0px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.page_home .empty_area .inner {
  max-width: 320px;
}
.page_home .empty_area .empty_image {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
.page_home .empty_area .empty_image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

/*------------------------------------------------------------
		screen
------------------------------------------------------------*/
.apply_type {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
}
.apply_type li div {
  display: inline-block;
  padding: 4px 8px;
  color: #fff;
  background: #206c78;
  border: 1px solid #206c78;
}
.apply_type li a {
  display: inline-block;
  padding: 4px 8px;
  color: #206c78;
  background: #fff;
  border: 1px solid #206c78;
}
.apply_type li a:hover {
  color: #309da5;
  border-color: #309da5;
}
.apply_type li:first-child a,
.apply_type li:first-child div {
  border-right: none;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.apply_type li:last-child a,
.apply_type li:last-child div {
  border-left: none;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.fs_11 {
  font-size: 11px;
}
._name {
  width: 8% !important;
  min-width: 60px !important;
}
.ah_date {
  width: 10%;
  min-width: 100px;
  text-align: center;
}
.ah_button_area {
  padding-bottom: 4px;
}
.ah_sub_condition_title {
  padding: 0 16px;
  margin: 0;
}
.ah_sub_result_title {
  padding: 16px;
  margin: 0;
}
.ah_section_heading {
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.ah_section_resultTitle {
  width: 190px;
}
.ah_section_heading__bottom {
  margin: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.ah_pagenum {
  width: 120px;
}
