.search-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-title__h1 {
  color: #2F303A;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 1px;
}
.search-title__h2 {
  color: #2F303A;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}

.search-arrow-link {
  color: #5470C7;
  font-size: 12px;
  position: relative;
  padding-left: 20px;
}

.search-arrow-link::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid #5470C7;
  border-left: 3px solid #5470C7;
  transform: rotate(45deg);
}


.search-box {
  padding: 10px 20px;
  background-color: #F7F8FF;
  width: 580px !important;
  color: #2F3032;
  border-radius: 6px;
}
.search-box__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 24px;
}
.search-box__header-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid #D6D9E5;
}
.search-box__header-label {
  font-size: 12px;
  margin-right: 10px;
}
.search-box__header-input {
  width: 236px;
  border: none;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 3px 0 0 3px;
  background-color: #FFFFFF;
}
.search-box__header-select {
  width: 236px;
  border: none;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 3px 0 0 3px;
  background-color: #FFFFFF;
}
.search-box__header-submit {
  width: 24px;
  height: 24px;
  background-color: #5470C7;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  border-radius: 0 3px 3px 0;
  background-image: url(../images/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: center center;
}
.search-box__header-btn {
  width: 130px;
  color: #5470C5;
  font-size: 13px;
  height: 24px;
  text-align: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 4px;
  position: relative;
}
.search-box__header-btn:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #5470C7;
}
.search-box__header-btn:after {
  content: "";
  width: 12px;
  height: 12px;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(../images/icon_plus.svg);
  mask-image: url(../images/icon_plus.svg);
  background: #5470C7;
  margin-left: 4px;
}
.search-box__content {
  padding-top: 10px;
}
.search-box__content-ttl {
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: bold;
}
.search-box__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 12px;
}
.search-box__content-row:last-of-type {
  margin-bottom: 0;
}
.search-box__content-group {
  margin-right: 12px;
}
.search-box__content-group:last-of-type {
  margin-right: 0;
}
.search-box__content-label {
  font-weight: bold;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}
.search-box__content-input {
  width: 100%;
  display: block;
  border: none;
  font-size: 12px;
  background-color: #fff;
  padding: 3px 30px 3px 10px;
  position: relative;
  font-weight: normal;
  border-radius: 3px;
}
.search-box__content-input:focus {
  outline: none;
  border: none;
}
.search-box__content-select {
  width: 100%;
  display: block;
  border: none;
  font-size: 12px;
  background-color: #fff;
  padding: 3px 10px 3px 10px;
  position: relative;
  font-weight: normal;
  border-radius: 3px;
}
.search-box__content-select:focus {
  outline: none;
  border: none;
}
.search-box__content-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid #B0B7D5;
  margin-right: 6px;
  background-color: #fff;
  position: relative;
}
.search-box__content-checkbox:checked {
  background-color: #5470C7;
}
.search-box__content-checkbox:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
.search-box__content-checkbox--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
}
.search-box__content-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-box__content-radio--btn {
  position: absolute;
  opacity: 0;
}
.search-box__content-radio--btn:checked + .search-box__content-radio--label:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  background-color: #5470C7;
  top: 5px;
  left: 4px;
  border-radius: 50%;
}
.search-box__content-radio--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-right: 30px;
  margin-bottom: 2px;
  font-size: 12px;
}
.search-box__content-radio--label:last-child {
  margin-right: 0;
}
.search-box__content-radio--label:before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #B0B7D5;
  margin-right: 8px;
  position: relative;
}
.search-box__content-date {
  display: block;
  border: none;
  font-size: 12px;
  background-color: #fff;
  padding: 3px 10px 3px 10px;
  position: relative;
  font-weight: normal;
  border-radius: 3px;
  position: relative;
  width: 160px;
}
.search-box__content-date--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.search-box__content-date::-webkit-calendar-picker-indicator {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 13px;
  background-image: url(../images/icon_calendar_date.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.search-box__content-btn {
  margin-left: auto;
}

.search-box__content-check-group {
  margin-right: 26px;
}

.search-box__content-check .form-check-input {
  margin-top: 0;
  border-radius: 5px;
}

.search-box__content-check .form-check-input:focus {
  box-shadow: none;
  border-color: #5470c7;
}
.search-box__content-check .form-check-input:checked {
  background-color: #5470c7;
  border-color: #5470c7;
}
.search-box__non-btn {
  padding: 10px 20px;
  background-color: #F7F8FF;
  min-width: auto;
  color: #2F3032;
  border-radius: 6px;
}
.search-box__non-btn .search-box__header-group {
  border: none;
  padding-right: 0;
}
.search-btn {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-btn__sort {
  width: 38px;
  height: 38px;
  border: 1px solid #A5AEC9;
  border-radius: 6px;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  background-image: url(../images/icon_sort.svg);
  background-size: 21px 12px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 4px;
}

.btn-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 24px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  background-color: #5470C7;
  white-space: nowrap;
}
.btn-search:hover {
  color: #fff;
  opacity: 0.3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 140px;
  height: 38px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background-color: #6E7EDB;
  border-radius: 5px;
  margin-right: 4px;
}
.btn-new i {
  margin-right: 6px;
  margin-top: 2px;
}

.btn-csvdl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 140px;
  height: 38px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-radius: 5px;
  margin-right: 4px;
}
.btn-csvdl i {
  margin-right: 6px;
  margin-top: 2px;
}

.search-table tbody tr {
  border-bottom: 1px dashed #C4C9D8 !important;
}
.maw-40 {
  width: 40px;
}

.maw-80 {
  width: 80px;
}

.maw-120 {
  width: 120px;
}

.maw-140 {
  width: 140px;
}

.maw-160 {
  width: 160px;
}

/*.maw-200 {*/
/*  width: 200px;*/
/*}*/

.search-table tbody tr:nth-of-type(2n+1) {
  background-color: #F7F8FC;
}
.search-table tbody td {
  border: none;
  padding: 10px;
}
.search-table tbody td > a{
  text-decoration: underline;
}
.search-table__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: #7597E8;
  border-radius: 50%;
  margin: 0 auto;
}
.search-table__icon--bg-white-img {
  filter: invert(43%) sepia(55%) saturate(603%) hue-rotate(188deg) brightness(90%) contrast(89%);
}
.search-table__icon-text {
  position: absolute;
  top: 23px;
  color: #fff;
  letter-spacing: -0.01rem;
}

.search-table__icon-link {
  display: block;
  font-size: 10px;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  margin-left: 12px;
  text-decoration: none !important;
}
.search-table__icon-link:nth-child(1) {
  margin-left: 0;
}
.search-table__icon-img {
  display: block;
  margin: 0 auto 2px;
}
.search-table__group {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sort-dropmenu {
  width: 160px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.sort-dropmenu__group {
  margin-bottom: 4px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sort-dropmenu__group:last-of-type {
  margin-bottom: 0;
}
.sort-dropmenu__label {
  width: 100%;
  border: 1px solid #A5AEC9;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  line-height: 1;
}
.sort-dropmenu__label-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
}
.sort-dropmenu__label-group input[type=radio] {
  margin-top: 2px;
  margin-right: 4px;
  accent-color: #6E7EDB;
}
.sort-dropmenu__radio {
  display: none;
}
.sort-dropmenu__radio:checked + .sort-dropmenu__label {
  background-color: #F7F8FC;
}
.sort-dropmenu__top {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #A5AEC9;
}
.sort-dropmenu__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sort-dropmenu__btn {
  margin-top: 3px;
  width: 100%;
  background-color: #6E7EDB;
  color: #fff;
  border-radius: 6px;
  padding: 2px 6px;
}

.search-result {
  width: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
}
.search-result__ttl {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  margin-right: 8px;
}
.search-result__ttl:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background-color: #8B9ED8;
}
.search-result__content {
  font-size: 11px;
  color: #7D7D7F;
  margin-top: -1px;
}

.pagenation-custom {
  position: relative;
  min-width: 825px;
}
.pagenation-custom__num {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
  font-size: 11px;
  color: #2F303A;
  white-space: nowrap;
}
.pagenation-custom__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagenation-custom__link {
  display: block;
  width: 32px;
  height: 32px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagenation-custom__link.active {
  background-color: #7597E8;
  border-radius: 50%;
  color: #fff;
}
.pagenation-custom__link:hover {
  opacity: 0.3;
  translate: 0.2s;
}
.pagenation-custom__link--start {
  margin-right: 36px;
}
.pagenation-custom__link--start img {
  width: 7px;
  height: 14px;
}
.pagenation-custom__link--end {
  margin-left: 36px;
}
.pagenation-custom__link--end img {
  width: 7px;
  height: 14px;
}

.search-table__text-bg {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  padding: 0.3rem 0.1rem;
  width: 50%;
}

.search-table__text-bg:nth-child(odd) {
  background: #332ECD;
}
.search-table__text-bg:nth-child(even) {
  background: #3EBFFF;
}

/*  オーナー接触一覧等で使用する別デザイン一覧 ここから */
.search-table-owner-contact table {
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.search-table-owner-contact thead,
.search-table-owner-contact thead th,
.search-table-owner-contact tbody td {
  border-bottom: 0;
}

.search-table-owner-contact__tr {
  background-color: #fff !important;
  border-radius: 0.9375rem;
  border: none;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  padding-bottom: 0.5rem;
}
.search-table-owner-contact__tr td:first-child {
  border-radius:0.9375rem 0 0 0.9375rem;
}
.search-table-owner-contact__tr td:last-child {
  border-radius:0 0.9375rem 0.9375rem 0;
}
.search-table-owner-contact__operation {
  background: linear-gradient(to right, #458DD6, #5B7ADD) !important;
}
.search-table-owner-contact__date {
  background-color: #3D4686;
  border-radius: 0px 15px 15px 0px;
  text-wrap: nowrap;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding: 6px 10px;
  width: 125px;
}
/*  オーナー接触一覧等で使用する別デザイン一覧 ここまで*/

.search-btn.owner-dl-wrap {
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 330px;
}

.btn-owner-dl {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-radius: 5px;
  margin-top: 10px;
  margin-right: 4px;
  width: 326px;
  height: 38px;
  position: relative;
}

.btn-owner-dl::before {
  content: "";
  background-image: url(../images/icon_download.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  transition: 0.15s;
}

.search-btn.owner-dl-wrap label:hover::before {
  display: inline-block;
  opacity: 0.145;
}

/* オーナー報告一覧 モーダル用CSS　ここから */
.modal-checkbox {
  display: none;
}

/*.modal {*/
/*  width: calc(100% - var(--width_sidearea));*/
/*  padding: 1rem 1.875rem;*/
/*  margin-left: var(--width_sidearea);*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  z-index: 1;*/
/*  display: none;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  height: 100%;*/
/*  background-color: #191919;*/
/*}*/

.modal .close {
  color: #fff;
  font-size: 14px;
  background-color: #A5AEC9;
  border-radius: 5px;
  padding: 0.375rem 0.75rem;
  border: 1px solid transparent;
}

.modal-wrapper {
  position: relative;
  width: 73%;
  max-height: 85%;
  margin: auto;
  background-color: #FEFEFE;
  border-radius: 10px;
  overflow-y: scroll;
}

.modal-wrapper .modal-content {
  border: 0;
  border-radius: 5px 5px 0 0;
}

.modal-content .modal-content {
  border-radius: 3.0rem 3.0rem 0 0;
  border: 0;
}

.modal-content .flex-wrap {
  display: flex;
  padding: 40px;
  position: relative;
}

.modal-content .modal-content-box.box-left {
  width: 70%;
  margin-right: 5%;
}

.modal-content .modal-content-box.box-right {
  width: 22%;
  position: absolute;
  top: 40px;
  right: 40px;
  height: 70%;
}

.modal-content .bg-gray-left {
  background-color: #EFF1FC;
  border-radius: 10px;
  padding: 20px;
}

.modal-content .bg-gray-right {
  background-color: #EFF1F8;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.modal-content .modal-open-ttl {
  font-size: 18px;
  font-weight: bold;
}

.modal-content .modal-open-subttl {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 5px;
}

.modal-content form div:first-child .modal-open-subttl {
  margin: 0 0 5px;
}

/* select */
.modal-content select {
  width: 100%;
  border: 0;
  color: #A0A2AC;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.modal-content select:focus-visible {
  outline: 0;
}

.remove-item {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  background-color: #EF6060;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.form-box {
  position: relative;
}

.form-box .fa-chevron-down {
  position: absolute;
  right: 3%;
  bottom: 10%;
  pointer-events: none;
  color: #5470C7;
}

.form-box .modal-dropdown-btn {
  width: 100%;
  border: 0;
  color: #A0A2AC;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
}

.form-box .modal-dropdown-btn:focus-visible {
  outline: 0;
}
/* ここまでselect*/

.modal-content .dropdown {
  display: none;
  width: 60%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  position: absolute;
  right: 0;
  top: 65%;
  z-index: 2;
}

.modal-content .dropdown .dropdown-close {
  background-color: #5470C7;
  border-radius: 0 0 5px 5px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  margin: 0;
}

.modal-content .dropdown .dropdown-btn-wrap {
  background-color: #F7F8FC;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
}

.modal-content .dropdown input.modal-search-box {
  resize: none;
  width: 46%;
  height: 1.7em;
  border: solid 1px #CCD1DD;
  border-radius: 5px;
  font-size: 14px;
}

.modal-content .dropdown input.modal-search-box:focus-visible {
  outline: 0;
}

.modal-content .dropdown input.modal-search-box::placeholder {
  font-size: 14px;
  padding-left: 5px;
}

.modal-content .dropdown .select-all-btn  {
  width: 46%;
  background-color: #fff;
  font-size: 14px;
  color: #5470c7;
  border: solid 1px #5470c7;
  border-radius: 5px;
  text-align: center;
  margin: 0;
  cursor: pointer;
}


.modal-content .btn-modaladd {
  background-color: #fff;
  color: #5470c7;
  border: solid 1px #5470c7;
  border-radius: 5px;
  font-size: 14px;
  padding: 3px 13px;
  margin-top: 15px;
}

.modal-content .btn-modaladd .fa-plus-circle {
  color: #5470c7;
  font-size: 14px;
  margin-left: 5px;
}

.modal-content .btn-confirm {
  color: #5470c7;
  font-size: 14px;
  margin-top: 15px;
}

.modal-content .btn-confirm .fa-angle-right {
  margin-left: 5px;
}

.modal-checkbox:checked + .modal {
  display: flex;
}

.modal-content #selected-items-list {
  padding: 0;
  margin: 0;
}

.modal-btn-area {
  background-color: #EFF1F8;
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
}

.modal-btn-area .btn-selectdl {
  background-color: #468CD6;
  color: #fff;
  font-size: 14px;
  margin-left: 10px;
  margin-right: 10px;
}

.modal-btn-area .btn-thisdl {
  background-color: #468CD6;
  border-radius: 5px 0 0 5px;
  color: #fff;
  font-size: 14px;
  margin-left: 10px;
}

.modal-btn-area .btn-pagedl {
  background-color: #000;
  border-radius: 0 5px 5px 0;
  color: #fff;
  font-size: 14px;
  margin-right: 10px;
}

.modal-btn-area .btn-reset {
  color: #537FD7;
  font-size: 14px;
  text-decoration: underline;
}

.d-none {
  display: none!important;
}

/*!* オーナー報告一覧 モーダル用CSS　ここまで*!*/