@charset "UTF-8";
@font-face {
  font-family: "under_line";
  src: local("YuGothic"), local("Hiragino Kaku Gothic ProN"), local("Meiryo");
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

共通

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-size: 16px;
  font-weight: 400;
  font-family: under_line, "BIZ UDPGothic", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  color: #fff;
}

#app {
  height: 100%;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

ul li {
  line-height: 1.5;
}

table {
  line-height: 1.5;
}

.all {
  display: flex;
}

p.note {
  color: #A0A0A0;
  font-size: 13px;
}

/*リンク
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
a {
  text-decoration: none;
  color: #454183;
}
a:link, a:visited {
  color: #454183;
  text-decoration: none;
  transition: 0.1s;
}
a:hover {
  text-decoration: underline;
}
a:active {
  color: #747475;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

ボタン

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
button,
.button {
  display: block;
  background: none;
  border: 0px solid;
  font-family: under_line, "BIZ UDPGothic", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  text-align: center;
  transition: 0.1s;
}
button:not(.grayout):hover,
.button:not(.grayout):hover {
  transition: 0.1s;
}

a.button:active,
a.button:hover {
  text-decoration: none;
}

/*色*/
.button_color_main {
  background: #9C97E3;
  color: #fff;
}
.button_color_main:not(.grayout):hover {
  background: #8781da;
}
.button_color_main:not(.grayout):active {
  background: #7973d1;
}

.button_color_sub {
  background: #716DAC;
  color: #fff;
}
.button_color_sub:not(.grayout):hover {
  background: #605da3;
}
.button_color_sub:not(.grayout):active {
  background: #5B588C;
}

.button_color_gray {
  background: #a4a8ac;
  color: #fff;
}
.button_color_gray:not(.grayout):hover {
  background: #909497;
}
.button_color_gray:not(.grayout):active {
  background: #808588;
}

.button_color_lightgray {
  background: #F3F3F3;
  color: #000000;
}
.button_color_lightgray:not(.grayout):hover {
  background: #E3E3E3;
}
.button_color_lightgray:not(.grayout):active {
  background: #C0C5C8;
}

/* 立体ボタン */
.imp,
a.imp {
  margin: 0;
  padding: 8px 16px;
  width: auto;
  min-width: 256px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(0deg, #5B588C 8.93%, #716DAC 10.71%);
  transition: 0.1s;
}
.imp:not(.grayout):hover,
a.imp:not(.grayout):hover {
  background: linear-gradient(0deg, #5B588C 8.93%, #605da3 10.71%);
}
.imp:not(.grayout):active,
a.imp:not(.grayout):active {
  margin-top: 2px;
  padding-bottom: 6px;
  background: linear-gradient(0deg, #5B588C 8.93%, #5B588C 10.71%);
}

/* 影付きボタン */
.emp {
  display: block;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.24);
  transition: 0.1s;
}
.emp:not(.grayout):active {
  position: relative;
  top: 2px;
  box-shadow: none;
}

/* フチ付きミニボタン */
.nomal_btn {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #808588;
  font-size: 13px;
  text-align: center;
  color: #7973d1;
}
.nomal_btn.ok_btn {
  border: #716DAC 1px solid;
}

/* グレーアウト */
.grayout {
  cursor: default;
  opacity: 0.3;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

フォーム

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
共通
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
textarea,
input,
select {
  display: block;
  margin: 0;
  padding: 4px 12px;
  width: 100%;
  max-width: 480px;
  line-height: 1.5;
  border: 1px solid #000000;
  border-radius: 4px;
  text-align: left;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
textarea.short,
input.short,
select.short {
  width: 120px;
}
textarea.middle,
input.middle,
select.middle {
  width: 200px;
}

label {
  color: #000000;
}

::-moz-placeholder {
  color: #C0C5C8;
}

::placeholder {
  color: #C0C5C8;
}

/* 選択時 */
input:focus,
.selectBtn select:focus {
  outline: solid 2px #000000;
}

/* セレクトボタン */
select {
  background: #E3E3E3;
}
select option {
  padding: 4px;
  background: #fff;
}

/* ラジオボタン */
.radio-btn {
  /* Safari */
}
.radio-btn input[type=radio] {
  display: none;
}
.radio-btn .radio_txt {
  display: inline-block;
  margin-right: 16px;
  padding-left: 30px;
  position: relative;
}
.radio-btn .radio_txt::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  border: 1px solid #716DAC;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.radio-btn input[type=radio]:checked + .radio_txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 4px;
  width: 14px;
  height: 14px;
  background-color: #9C97E3;
  border-radius: 50%;
}
.radio-btn _::-webkit-full-page-media,
.radio-btn _:future,
.radio-btn :root .radio_txt::before {
  top: -1px;
}
.radio-btn _::-webkit-full-page-media,
.radio-btn _:future,
.radio-btn :root input[type=radio]:checked + .radio_txt::after {
  top: 3px;
}

/* 編集フォーム内ラジオボタン */
table.edit .radio-btn {
  padding-top: 0.6em;
}

/* チェックボックス */
.check_btn {
  position: relative;
  display: block;
  min-height: 1.5em;
}

input[type=checkbox] {
  display: none;
}

.check_inner {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-left: 28px;
  word-wrap: break-word;
  word-break: break-all;
  vertical-align: text-top;
}

.check_inner:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  border: 1px solid #000000;
  border-radius: 2px;
  width: 20px;
  height: 20px;
}

input[type=checkbox]:checked + .check_inner::before {
  background-color: #9C97E3;
}

input[type=checkbox]:checked + .check_inner::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 22px;
  height: 10px;
  background: url(../img/check.svg) center center no-repeat;
  background-size: contain;
}

/* 日・時間フォーム */
.date_time {
  display: flex;
}
.date_time input {
  width: 50%;
  max-width: 180px;
}
.date_time input:last-child {
  margin-left: 8px;
}
.date_time input.gray {
  opacity: 0.3;
}

/* 利用可能ドメイン */
.add_textbox span {
  position: relative;
  display: block;
}
.add_textbox span:not(:last-child) {
  margin-bottom: 4px;
}
.add_textbox span:first-child::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: -32px;
  display: block;
  margin: 2px 4px 0;
  width: 18px;
  height: 18px;
  background: url(../img/delete_domein.svg) center center no-repeat;
  background-size: contain;
}
/* .add_textbox span:last-child::after {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  right: -36px;
  display: block;
  margin: 2px 4px 0;
  width: 26px;
  height: 26px;
  background: url(../img/add_domain.svg) center center no-repeat;
  background-size: contain;
} */

/* エラー */
.err {
  margin-top: 8px;
  color: #A85050;
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
情報追加変更フォーム
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
/* フォーム用テーブル */
table.edit {
  table-layout: fixed;
  width: 100%;
  color: #000000;
  text-align: left;
  border-collapse: collapse;
}
table.edit th {
  padding-top: 8px;
  padding-right: 12px;
  width: 180px;
  vertical-align: text-top;
  font-weight: 400;
}
table.edit td {
  width: 100%;
  padding-bottom: 16px;
}

/* フォーム用テーブル2列用 */
.modal.column2 .modal_inner {
  padding-left: 40px;
  padding-right: 40px;
}

.column2 table.edit tr.col2tr th {
  width: 150px;
}
.column2 table.edit tr.col2tr td {
  width: calc(50% - 380px);
}
.column2 table.edit tr.col2tr :nth-child(3) {
  padding-left: 60px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

リストテーブル

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
テーブル共通
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
.table_wrap {
  margin-top: 0 auto;
  position: relative;
  padding: 0 48px 0;
}

table.list {
  width: 100%;
  min-width: calc(100vw - 90px - (100vw - 100%));
  color: #000000;
  border-collapse: collapse;
}
table.list th,
table.list td {
  padding: 8px 24px;
}
table.list thead th {
  background: #DEE3E7;
  text-align: left;
  vertical-align: bottom;
  font-weight: normal;
}
table.list thead tr.ML th {
  display: table-cell;
  margin: 0 auto;
  padding: 8px 4px;
  height: 130px;
  min-width: 40px;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 13px;
  vertical-align: middle;
  writing-mode: vertical-rl;
  line-height: 1.1;
}
table.list tbody tr td {
  background: #F3F3F3;
  text-align: left;
}
table.list tbody tr:nth-child(even) td {
  background: #fff;
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
固定テーブル
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
body.sticky_table_body {
  table-layout: fixed;
}

body.horizontal_scroll_body {
  width: -moz-max-content;
  width: max-content;
}

.sticky_table_wrap {
  position: relative;
}
.sticky_table_wrap table {
  border-collapse: separate;
  border-spacing: 0px;
  /* 2列目固定位置 */
  /* 横スクロール時にテーブル見出し固定する */
  /* 共通 */
  /* 表示順 */
  /* 固定位置 */
}
.sticky_table_wrap table thead th {
  /* 縦スクロール時にテーブル見出しを固定する */
  /*  1列目  */
  position: sticky;
  top: 0;
  z-index: 10;
}
.sticky_table_wrap table thead th:first-child {
  z-index: 9;
}
.sticky_table_wrap table thead tr:nth-child(2) th {
  top: 28px;
  z-index: 8;
}
.sticky_table_wrap table.st1 th:first-child, .sticky_table_wrap table.st1 td:first-child, .sticky_table_wrap table.st2 th:nth-child(2), .sticky_table_wrap table.st2 td:nth-child(2), .sticky_table_wrap table.st2 th:nth-child(3), .sticky_table_wrap table.st2 td:nth-child(3), .sticky_table_wrap table.st2 th:nth-child(4), .sticky_table_wrap table.st2 td:nth-child(4) {
  position: sticky;
}
.sticky_table_wrap table.st1 tr:first-child th:first-child {
  z-index: 100;
}
.sticky_table_wrap table.st2 tr:first-child th:nth-child(2) {
  z-index: 99;
}
.sticky_table_wrap table.st2 tr:first-child th:nth-child(3) {
  z-index: 98;
}
.sticky_table_wrap table.st2 tr:first-child th:nth-child(4) {
  z-index: 97;
}
.sticky_table_wrap table.st1 td:first-child {
  z-index: 95;
}
.sticky_table_wrap table.st2 td:nth-child(2) {
  z-index: 94;
}
.sticky_table_wrap table.st2 td:nth-child(3) {
  z-index: 93;
}
.sticky_table_wrap table.st2 td:nth-child(4) {
  z-index: 92;
}
.sticky_table_wrap table.st1 th:first-child, .sticky_table_wrap table.st1 td:first-child {
  left: 0;
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
ページ別
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
/* アカウント管理タブ用
---------------------------------- */
table.list.account_management {
  table-layout: fixed;
  width: -moz-max-content;
  width: max-content;
  /* 行ごとの幅 */
  /* 見出し固定位置 */
  /* MLスタイル調整 */
}
table.list.account_management tr:first-child th:nth-child(1),
table.list.account_management td:nth-child(1) {
  width: 100px;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 100px;
}
@-moz-document url-prefix() {
  table.list.account_management tr:first-child th:nth-child(1),
  table.list.account_management td:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.account_management tr:first-child th:nth-child(1)::before, table.list.account_management tr:first-child th:nth-child(1)::after,
  table.list.account_management td:nth-child(1)::before,
  table.list.account_management td:nth-child(1)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.account_management tr:first-child th:nth-child(1)::after,
  table.list.account_management td:nth-child(1)::after {
    clear: both;
  }
}
table.list.account_management tr:first-child th:nth-child(1) table.list thead tr.ML th,
table.list.account_management td:nth-child(1) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.account_management tr:first-child th:nth-child(2),
table.list.account_management td:nth-child(2) {
  width: 200px;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 200px;
}
@-moz-document url-prefix() {
  table.list.account_management tr:first-child th:nth-child(2),
  table.list.account_management td:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.account_management tr:first-child th:nth-child(2)::before, table.list.account_management tr:first-child th:nth-child(2)::after,
  table.list.account_management td:nth-child(2)::before,
  table.list.account_management td:nth-child(2)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.account_management tr:first-child th:nth-child(2)::after,
  table.list.account_management td:nth-child(2)::after {
    clear: both;
  }
}
table.list.account_management tr:first-child th:nth-child(2) table.list thead tr.ML th,
table.list.account_management td:nth-child(2) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.account_management tr:first-child th:nth-child(3),
table.list.account_management td:nth-child(3) {
  width: 160px;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 160px;
}
@-moz-document url-prefix() {
  table.list.account_management tr:first-child th:nth-child(3),
  table.list.account_management td:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.account_management tr:first-child th:nth-child(3)::before, table.list.account_management tr:first-child th:nth-child(3)::after,
  table.list.account_management td:nth-child(3)::before,
  table.list.account_management td:nth-child(3)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.account_management tr:first-child th:nth-child(3)::after,
  table.list.account_management td:nth-child(3)::after {
    clear: both;
  }
}
table.list.account_management tr:first-child th:nth-child(3) table.list thead tr.ML th,
table.list.account_management td:nth-child(3) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.account_management tr:first-child th:nth-child(4),
table.list.account_management td:nth-child(4) {
  width: 160px;
}
table.list.account_management tr:first-child th:nth-child(5),
table.list.account_management td:nth-child(5) {
  width: 260px;
}
table.list.account_management tr:first-child th:nth-child(6),
table.list.account_management td:nth-child(6) {
  width: 200px;
}
table.list.account_management tr:first-child th:nth-child(7),
table.list.account_management td:nth-child(7) {
  width: 200px;
}
table.list.account_management tr:first-child th:nth-child(8),
table.list.account_management td:nth-child(8) {
  width: 180px;
}
table.list.account_management.st2 th:nth-child(2), table.list.account_management.st2 td:nth-child(2) {
  left: 100px;
}
table.list.account_management.st2 th:nth-child(3), table.list.account_management.st2 td:nth-child(3) {
  left: 298px;
}
table.list.account_management tr:first-child th:nth-child(n+9) {
  border-left: #C0C5C8 1px solid;
  border-bottom: #C0C5C8 1px solid;
  font-size: 14px;
  padding: 2px 8px 4px;
}
table.list.account_management tr:last-child th {
  border-left: #C0C5C8 1px solid;
}
table.list.account_management td:nth-child(n+9) {
  padding: 0;
  text-align: center;
  border-left: #C0C5C8 1px solid;
}

/* 事業者管理タブ用
---------------------------------- */
table.list.business_management {
  /* 行ごとの幅 */
}
table.list.business_management tr:first-child th:nth-child(1),
table.list.business_management td:nth-child(1) {
  width: 100px;
}
table.list.business_management tr:first-child th:nth-child(2),
table.list.business_management td:nth-child(2) {
  width: 330px;
  width: calc(20% - 100px);
}
table.list.business_management tr:first-child th:nth-child(3),
table.list.business_management td:nth-child(3) {
  width: 200px;
}
table.list.business_management tr:first-child th:nth-child(4),
table.list.business_management td:nth-child(4) {
  width: 200px;
  word-wrap: break-word;
  word-break: break-all;
  width: calc(20% - 100px);
}
table.list.business_management tr:first-child th:nth-child(5),
table.list.business_management td:nth-child(5) {
  word-wrap: break-word;
  word-break: break-all;
}

/* MLマスタ管理タブ用
---------------------------------- */
table.list.ml_master_management {
  width: 100vw;
  max-width: calc(100vw - 116px);
  min-width: 1300px;
  padding: 0;
  /* 行ごとの幅 */
  /* 見出し固定位置 */
  /* 備考スタイル調整 */
  /* MLスタイル調整 */
}
table.list.ml_master_management tr:first-child th:nth-child(1),
table.list.ml_master_management td:nth-child(1) {
  width: 140px;
  box-sizing: border-box;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 140px;
}
@-moz-document url-prefix() {
  table.list.ml_master_management tr:first-child th:nth-child(1),
  table.list.ml_master_management td:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.ml_master_management tr:first-child th:nth-child(1)::before, table.list.ml_master_management tr:first-child th:nth-child(1)::after,
  table.list.ml_master_management td:nth-child(1)::before,
  table.list.ml_master_management td:nth-child(1)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.ml_master_management tr:first-child th:nth-child(1)::after,
  table.list.ml_master_management td:nth-child(1)::after {
    clear: both;
  }
}
table.list.ml_master_management tr:first-child th:nth-child(1) table.list thead tr.ML th,
table.list.ml_master_management td:nth-child(1) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.ml_master_management tr:first-child th:nth-child(2),
table.list.ml_master_management td:nth-child(2) {
  width: 240px;
  min-width: 240px;
  word-wrap: break-word;
  word-break: break-all;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 240px;
}
@-moz-document url-prefix() {
  table.list.ml_master_management tr:first-child th:nth-child(2),
  table.list.ml_master_management td:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.ml_master_management tr:first-child th:nth-child(2)::before, table.list.ml_master_management tr:first-child th:nth-child(2)::after,
  table.list.ml_master_management td:nth-child(2)::before,
  table.list.ml_master_management td:nth-child(2)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.ml_master_management tr:first-child th:nth-child(2)::after,
  table.list.ml_master_management td:nth-child(2)::after {
    clear: both;
  }
}
table.list.ml_master_management tr:first-child th:nth-child(2) table.list thead tr.ML th,
table.list.ml_master_management td:nth-child(2) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.ml_master_management tr:first-child th:nth-child(3),
table.list.ml_master_management td:nth-child(3) {
  width: 240px;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 240px;
}
@-moz-document url-prefix() {
  table.list.ml_master_management tr:first-child th:nth-child(3),
  table.list.ml_master_management td:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.ml_master_management tr:first-child th:nth-child(3)::before, table.list.ml_master_management tr:first-child th:nth-child(3)::after,
  table.list.ml_master_management td:nth-child(3)::before,
  table.list.ml_master_management td:nth-child(3)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.ml_master_management tr:first-child th:nth-child(3)::after,
  table.list.ml_master_management td:nth-child(3)::after {
    clear: both;
  }
}
table.list.ml_master_management tr:first-child th:nth-child(3) table.list thead tr.ML th,
table.list.ml_master_management td:nth-child(3) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.ml_master_management tr:first-child th:nth-child(4),
table.list.ml_master_management td:nth-child(4) {
  /* firefoxのsticky表示崩れ対策 */
  min-width: 300px;
}
@-moz-document url-prefix() {
  table.list.ml_master_management tr:first-child th:nth-child(4),
  table.list.ml_master_management td:nth-child(4) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.ml_master_management tr:first-child th:nth-child(4)::before, table.list.ml_master_management tr:first-child th:nth-child(4)::after,
  table.list.ml_master_management td:nth-child(4)::before,
  table.list.ml_master_management td:nth-child(4)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.ml_master_management tr:first-child th:nth-child(4)::after,
  table.list.ml_master_management td:nth-child(4)::after {
    clear: both;
  }
}
table.list.ml_master_management tr:first-child th:nth-child(4) table.list thead tr.ML th,
table.list.ml_master_management td:nth-child(4) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.ml_master_management.st2 th:nth-child(2), table.list.ml_master_management.st2 td:nth-child(2) {
  left: 140px;
}
table.list.ml_master_management.st2 th:nth-child(3), table.list.ml_master_management.st2 td:nth-child(3) {
  left: 380px;
}
table.list.ml_master_management tr td:nth-child(n+4) {
  font-size: 14px;
}
table.list.ml_master_management tr:first-child th:nth-child(n+5) {
  border-left: #C0C5C8 1px solid;
  border-bottom: #C0C5C8 1px solid;
  font-size: 14px;
  padding: 2px 8px 4px;
}
table.list.ml_master_management tr:last-child th {
  border-left: #C0C5C8 1px solid;
}
table.list.ml_master_management td:nth-child(n+5) {
  padding: 0;
  text-align: center;
  border-left: #C0C5C8 1px solid;
}

/*  お知らせ管理タブ用
---------------------------------- */
table.list.global_news_management {
  /* 上揃え */
  /* 行ごとの幅 */
}
table.list.global_news_management td {
  vertical-align: top;
}
table.list.global_news_management tr:first-child th:nth-child(1),
table.list.global_news_management td:nth-child(1) {
  width: 100px;
}
table.list.global_news_management tr:first-child th:nth-child(2),
table.list.global_news_management td:nth-child(2) {
  width: 60px;
}
table.list.global_news_management tr:first-child th:nth-child(3),
table.list.global_news_management td:nth-child(3) {
  min-width: 300px;
}
table.list.global_news_management tr:first-child th:nth-child(4),
table.list.global_news_management td:nth-child(4) {
  width: 90px;
}
table.list.global_news_management tr:first-child th:nth-child(5),
table.list.global_news_management td:nth-child(5) {
  width: 90px;
}
table.list.global_news_management tr:first-child th:nth-child(6),
table.list.global_news_management td:nth-child(6) {
  width: 90px;
}
table.list.global_news_management tr:first-child th:nth-child(7),
table.list.global_news_management td:nth-child(7) {
  width: 150px;
}
table.list.global_news_management tr:first-child th:nth-child(8),
table.list.global_news_management td:nth-child(8) {
  width: 120px;
  text-align: center;
}

/* 事業者MLメンバー編集/追加カスタムダイアログ
---------------------------------- */
table.list.business_ml_member_management {
  table-layout: fixed;
  width: -moz-max-content;
  width: max-content;
  /* 行ごとの幅 */
  /* 見出し固定位置 */
  /* MLスタイル調整 */
}
table.list.business_ml_member_management tr:first-child th:nth-child(1),
table.list.business_ml_member_management td:nth-child(1) {
  width: 100px;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 100px;
}
@-moz-document url-prefix() {
  table.list.business_ml_member_management tr:first-child th:nth-child(1),
  table.list.business_ml_member_management td:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.business_ml_member_management tr:first-child th:nth-child(1)::before, table.list.business_ml_member_management tr:first-child th:nth-child(1)::after,
  table.list.business_ml_member_management td:nth-child(1)::before,
  table.list.business_ml_member_management td:nth-child(1)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.business_ml_member_management tr:first-child th:nth-child(1)::after,
  table.list.business_ml_member_management td:nth-child(1)::after {
    clear: both;
  }
}
table.list.business_ml_member_management tr:first-child th:nth-child(1) table.list thead tr.ML th,
table.list.business_ml_member_management td:nth-child(1) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.business_ml_member_management tr:first-child th:nth-child(2),
table.list.business_ml_member_management td:nth-child(2) {
  width: 200px;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 200px;
}
@-moz-document url-prefix() {
  table.list.business_ml_member_management tr:first-child th:nth-child(2),
  table.list.business_ml_member_management td:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.business_ml_member_management tr:first-child th:nth-child(2)::before, table.list.business_ml_member_management tr:first-child th:nth-child(2)::after,
  table.list.business_ml_member_management td:nth-child(2)::before,
  table.list.business_ml_member_management td:nth-child(2)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.business_ml_member_management tr:first-child th:nth-child(2)::after,
  table.list.business_ml_member_management td:nth-child(2)::after {
    clear: both;
  }
}
table.list.business_ml_member_management tr:first-child th:nth-child(2) table.list thead tr.ML th,
table.list.business_ml_member_management td:nth-child(2) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.business_ml_member_management tr:first-child th:nth-child(3),
table.list.business_ml_member_management td:nth-child(3) {
  width: 240px;
  /* firefoxのsticky表示崩れ対策 */
  min-width: 240px;
}
@-moz-document url-prefix() {
  table.list.business_ml_member_management tr:first-child th:nth-child(3),
  table.list.business_ml_member_management td:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }
  table.list.business_ml_member_management tr:first-child th:nth-child(3)::before, table.list.business_ml_member_management tr:first-child th:nth-child(3)::after,
  table.list.business_ml_member_management td:nth-child(3)::before,
  table.list.business_ml_member_management td:nth-child(3)::after {
    content: "";
    display: inline-flex;
    float: left;
    width: 1em;
    height: 1em;
  }
  table.list.business_ml_member_management tr:first-child th:nth-child(3)::after,
  table.list.business_ml_member_management td:nth-child(3)::after {
    clear: both;
  }
}
table.list.business_ml_member_management tr:first-child th:nth-child(3) table.list thead tr.ML th,
table.list.business_ml_member_management td:nth-child(3) table.list thead tr.ML th {
  vertical-align: top;
}
table.list.business_ml_member_management tr:first-child th:nth-child(4),
table.list.business_ml_member_management td:nth-child(4) {
  width: 160px;
}
table.list.business_ml_member_management tr:first-child th:nth-child(5),
table.list.business_ml_member_management td:nth-child(5) {
  width: 260px;
}
table.list.business_ml_member_management tr:first-child th:nth-child(6),
table.list.business_ml_member_management td:nth-child(6) {
  width: 200px;
}
table.list.business_ml_member_management tr:first-child th:nth-child(7),
table.list.business_ml_member_management td:nth-child(7) {
  width: 200px;
}
table.list.business_ml_member_management.st2 th:nth-child(2), table.list.business_ml_member_management.st2 td:nth-child(2) {
  left: 100px;
}
table.list.business_ml_member_management.st2 th:nth-child(3), table.list.business_ml_member_management.st2 td:nth-child(3) {
  left: 298px;
}
table.list.business_ml_member_management tr:first-child th:nth-child(n+8) {
  border-left: #C0C5C8 1px solid;
  border-bottom: #C0C5C8 1px solid;
  font-size: 14px;
  padding: 2px 8px 4px;
}
table.list.business_ml_member_management tr:last-child th {
  border-left: #C0C5C8 1px solid;
}
table.list.business_ml_member_management td:nth-child(n+8) {
  padding: 0;
  text-align: center;
  border-left: #C0C5C8 1px solid;
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
モーダルMLリスト
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
/* フォーム用リストテーブル */
.modal table.edit table.list {
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
}
.modal table.edit table.list tr {
  /* 行ごとの幅 */
}
.modal table.edit table.list tr th {
  position: sticky;
  top: 0;
  z-index: 100;
}
.modal table.edit table.list tr :nth-child(1) {
  width: 40px;
}
.modal table.edit table.list tr :nth-child(2) {
  width: 180px;
  word-wrap: break-word;
  word-break: break-all;
}
.modal table.edit table.list tr :nth-child(3) {
  width: 230px;
}
.modal table.edit table.list tr :nth-child(4) {
  width: 100%;
  font-size: 13px;
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
テーブル内縦スクロール
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
.scroll_wrap {
  max-height: 400px;
  overflow-y: auto;
  direction: rtl;
}
.scroll_wrap table {
  direction: ltr;
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
簡易リスト
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
.simple_list {
  max-height: 200px;
  border: 1px solid #000000;
  border-radius: 4px;
}
.simple_list li {
  padding: 8px 16px;
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
テーブル内要素
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
table {
  /* 編集ボタン */
  /* DLボタン */
  /* タイトルと本文の組み合わせ */
}
table label.edit_btn {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  padding: 4px 0;
  width: 50px;
  background: #9C97E3;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
}
table .min_dl_btn {
  display: inline-block;
  margin: 0 0 0 16px;
  width: 24px;
  height: 22px;
  background: url(../img/download.svg) center center no-repeat;
  background-size: contain;
  vertical-align: bottom;
  opacity: 1;
}
table .min_dl_btn:hover {
  filter: brightness(84%);
}
table .min_dl_btn:active {
  filter: brightness(70%);
}
table .ttl {
  margin-bottom: 0.8em;
}
table .text {
  margin-bottom: 0.8em;
  font-size: 14px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

テーブル操作用ナビ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.table_nav {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 24px auto 0 0;
  padding: 0 48px;
  width: calc(100vw - (100vw - 100%));
  max-width: 100vw;
  min-width: 1100px;
}
.table_nav.page_nav_next {
  margin: 8px auto 0 0;
}

.table_nav_left,
.table_nav_right {
  max-width: 500px;
}

.table_nav_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: end;
}

.search_wrap {
  display: flex;
}

/* ページャー */
.pager {
  display: flex;
  align-items: center;
  margin: 16px 0;
}
.pager a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1px;
  text-decoration: none;
  color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #C0C5C8;
  transition: 0.1s;
}
.pager a:hover {
  background: #a4a8ac;
}
.pager a:active {
  background: #909497;
}
.pager a.select {
  background: #000000;
  color: #fff;
}
.pager a.prev, .pager a.next {
  width: 32px;
  height: 32px;
}
.pager a.prev.prev::before, .pager a.prev.next::after, .pager a.next.prev::before, .pager a.next.next::after {
  content: "";
  display: inline-block;
  margin: 2px 4px 0;
  width: 6px;
  height: 2em;
  background: url(../img/page_back.svg) center center no-repeat;
  background-size: contain;
}
.pager a.prev.next::after, .pager a.next.next::after {
  background: url(../img/page_next.svg) center center no-repeat;
  background-size: contain;
}
.pager span {
  margin: 0 2px;
  color: #000000;
}

/* セレクトボックス */
.search_wrap select {
  margin-right: 8px;
  padding: 0 12px;
  width: 200px;
  height: 2em;
}
.search_wrap .zigyo {
  width: 300px;
}

/* 検索ボタン */
.search {
  display: flex;
}
.search input {
  width: 300px;
  height: 2em;
  background: none;
  border-radius: 4px;
}
.search button {
  display: block;
  width: 2em;
  height: 2em;
  margin-left: 2px;
  margin-bottom: 16px;
  border-radius: 4px;
  background: url(../img/icon_search.svg) center center no-repeat;
  background-size: 16px auto;
  background-color: #000000;
}
.search button:hover {
  background-color: #3a3a3a;
}
.search button:active {
  background-color: #000000;
}

/*  DLボタン */
.dl_btn {
  display: block;
  padding: 0 12px;
  margin-bottom: 16px;
  padding: 4px 12px;
  width: 180px;
  background: #716DAC;
  border-radius: 4px;
  color: #fff;
  text-align: center;
}

/*  新規制作ボタン */
.add_btn {
  display: block;
  padding: 12px 0;
  width: 180px;
  border-radius: 40px;
  text-align: center;
}
.add_btn::after {
  content: "";
  display: inline-block;
  margin: 0 0 -4px 6px;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/add.svg) bottom no-repeat;
  background-size: contain;
}
.add_btn.min {
  margin-left: 8px;
  padding: 5px 0;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

モーダル

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
モーダルガワ
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
/* モーダル非表示 */
.modal_wrap {
  display: none;
}

/* 表示切り替え用ラジオボタン非表示 */
input[name=modal_switch] {
  display: none;
}

.modal_open + label,
.modal_close-button + label {
  cursor: pointer;
}

.modal_open + label ~ label {
  display: none;
}

/* モーダル */
.modal_open:checked + label ~ .modal_wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
}

/* オーバーレイ */
.modal_open:checked + label ~ .modal_close-overlay + label {
  background: rgba(0, 0, 0, 0.7);
  display: block;
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  color: #fff;
  z-index: 900;
}

/* 閉じるボタン */
.modal_open:checked ~ #modal_close-button + label {
  position: fixed;
  top: 16px;
  right: 16px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_delete.svg) no-repeat right;
  background-size: contain;
  z-index: 960;
}

/* アニメーション*/
.modal_wrap {
  animation: fadeIn 0.2s ease 0s 0.5 normal;
  -webkit-animation: fadeIn 0.2s ease 0s 0.5 normal;
  z-index: 900;
}

.modal_open:checked ~ #modal_close-button + label {
  animation: fadeIn 0.2s ease 0s 0.5 normal;
  -webkit-animation: fadeIn 0.2s ease 0s 0.5 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
モーダル中身
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
.modal {
  position: relative;
  margin: auto;
  width: calc(100vw - 10%);
  min-width: 600px;
  max-width: 960px;
  max-height: calc(100vh - 80px);
  background: #fff;
  border-radius: 4px;
  color: #000000;
  overflow: auto;
  scrollbar-width: none;
  z-index: 950;
  /*  広め */
}
.modal::-webkit-scrollbar {
  height: 2px;
  width: 8px;
}
.modal::-webkit-scrollbar-thumb {
  background-color: #C0C5C8;
  border-radius: 6px;
}
.modal .modal_inner {
  position: relative;
  margin: 0 auto;
  padding: 60px 10%;
  max-width: 800px;
}
.modal.wide {
  width: calc(100vw - 8%);
  min-width: 600px;
  max-width: 1300px;
}
.modal.wide .modal_inner {
  padding: 60px 5%;
  max-width: 1100px;
}

/* 登録・キャンセルボタン */
.submit_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.submit_wrap label {
  display: block;
  margin: 0 12px;
  width: 250px;
  padding: 20px 0;
  border-radius: 4px;
  color: #fff;
  text-align: center;
}
.submit_wrap p.note {
  font-size: 12px;
}

/*  削除ボタン */
button.delete {
  position: absolute;
  bottom: 16px;
  right: 0;
  color: #A85050;
  font-size: 13px;
  text-decoration: underline;
  text-align: right;
}
button.delete:hover {
  color: #454183;
}
button.delete:active {
  color: #C0C5C8;
}

/* 小さいモーダル */
.small_modal .modal {
  min-width: inherit;
  width: 400px;
}
.small_modal .modal_inner {
  padding: 40px 10%;
}
.small_modal p {
  margin: 0 auto 8px;
}

.submit_wrap_nomal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.submit_wrap_nomal label {
  display: block;
  margin: 0 8px;
  width: 100px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

ヘッダー

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
header {
  width: 100%;
  height: 88px;
  background-color: #EDEBF6;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  min-width: 1100px;
  height: 69px;
  padding: 16px 48px 0;
  /* ヘッダー右側 */
  /* ユーザー情報 */
  /* ログアウトアイコン */
}
header .header .title {
  width: 260px;
  height: 48px;
}
header .header .nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
}
header .header .user-info {
  display: flex;
  flex-direction: column;
  height: 48px;
}
header .header .pass {
  text-align: right;
  margin-top: 2px;
}
header .header .user-address {
  margin: 0;
  color: #000000;
}
header .header .user-address:before {
  content: url(../img/user.svg);
  display: inline-block;
  padding-right: 8px;
}
header .header .logout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
header .header .logout p {
  font-size: 12px;
  margin: 0;
}
header .header .logout a {
  text-align: center;
  color: #000000;
}
header .header .logout img {
  padding-bottom: 4px;
  padding-top: 6px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

ログイン

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.login_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #000000;
}
.login_wrap::before, .login_wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 4%;
  flex-shrink: 0;
}
.login_wrap form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin-bottom: 64px;
}
.login_wrap .login_form_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login_wrap .login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 704px;
  height: 100%;
  padding: 80px 56px 120px;
  border-radius: 4px;
  background: #EDEBF6;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.24);
  flex-direction: column;
  min-height: 600px;
}
.login_wrap h1.login-title {
  text-align: center;
  margin: 0 auto;
  width: 480px;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2em;
  text-align: center;
}
.login_wrap .subtitle {
  margin-top: 8px;
  width: 480px;
}
.login_wrap .change {
  color: grey;
}
.login_wrap p {
  margin: 0;
}
.login_wrap .login-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 48px auto 0;
}
.login_wrap .login-input li {
  width: 100%;
}
.login_wrap .login-input li.user-id-Fixed p:not(:first-child) {
  padding-left: 8px;
}
.login_wrap .login-input input {
  padding-left: 8px;
  border: none;
  outline: none;
  background: none;
  width: 480px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
}
.login_wrap .submit {
  margin-top: 44px;
}
.login_wrap .submit .button.imp {
  padding: 14px 16px 18px;
}
.login_wrap .submit .button.imp:active {
  margin-top: 2px;
  padding-bottom: 14px;
}
.login_wrap a.reset {
  margin-top: 24px;
}

/* パスワードリセット */
.send-button {
  width: 256px;
  height: 56px;
  margin-top: 56px;
  padding-bottom: 8px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: BIZ UDPGothic;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: linear-gradient(0deg, #5B588C 8.93%, #716DAC 10.71%);
}

form[name=password_reset] .login-content {
  margin-top: 122px;
}

/* パスワード変更 */
.password_setting-title {
  color: #000000;
  text-align: center;
  font-family: BIZ UDPGothic;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 16px;
}

.password_setting-comment {
  text-align: left;
  width: 484px;
  margin: auto;
}

.password_setting-comment2 {
  text-align: left;
  width: 484px;
  margin: auto;
  padding-left: 10px;
}

.user-id-Fixed {
  margin-top: 8px;
}

.password_setting-content {
  margin-top: 56px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

スルッと管理者タブ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.adomin-surutto_tab_wrap {
  padding: 2px 0 0;
  width: 100%;
  background: #EDEBF6;
  border-bottom: 1px solid #000000;
}
.adomin-surutto_tab_wrap h2 {
  padding-right: 48px;
  width: calc(100vw - (100vw - 100%));
  min-width: 1100px;
  max-width: 100vw;
  text-align: right;
  font-size: 24px;
  color: #000000;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab {
  display: flex;
  justify-content: space-between;
  padding-right: 48px;
  width: calc(100vw - (100vw - 100%));
  min-width: 1100px;
  max-width: 100vw;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab .back {
  display: flex;
  align-items: flex-end;
  margin: 0 0 8px 48px;
  font-size: 0.9rem;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab ul {
  display: flex;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab ul li {
  padding-left: 16px;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab ul a {
  display: block;
  padding: 20px 0;
  width: 190px;
  background: #716DAC;
  border-radius: 4px 4px 0px 0px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab ul li a:hover:not(:active) {
  margin-top: -2px;
  padding-top: 22px;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab ul li:not(.select) a:hover {
  background: #605da3;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab ul li:not(.select) a:active {
  background: #5B588C;
}
.adomin-surutto_tab_wrap .adomin-surutto_tab ul li.select a {
  margin-bottom: -2px;
  background: #fff;
  border: 1px solid #000000;
  border-bottom: 1px solid #fff;
  color: #000000;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

事業者管理ページ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.page_nav {
  display: flex;
  justify-content: space-between;
  margin: 24px auto 0 0;
  padding: 0 0;
  width: calc(100vw - (100vw - 100%));
  max-width: 100vw;
  min-width: 1100px;
  background: #fff;
}
.page_nav h2 {
  margin: 0;
  padding-right: 48px;
  text-align: right;
  font-size: 24px;
  color: #000000;
}
.page_nav .back {
  display: flex;
  align-items: flex-end;
  margin: 0 0 8px 48px;
  font-size: 0.9rem;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

会議体会議体選択

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.meeting-body {
  display: flex;
  gap: 32px;
  margin: 32px auto;
  padding: 0 40px;
  width: 100%;
  max-width: 1360px;
  min-width: 1100px;
  color: #000000;
}

/* -----------------------------------------------
お知らせ */
.news_wrap {
  margin-top: 16px;
}
.news_wrap .news-frame {
  width: 100%;
  height: 880px;
  border-radius: 4px;
  border: 1px solid #B6B6B6;
  direction: rtl;
  /* テキスト方向を右から左 (Right-to-Left) に設定 */
  unicode-bidi: bidi-override;
  /* バイダイレクショナルのオーバーライドを設定 */
  overflow-y: scroll;
  padding-left: 0;
}
.news_wrap .news-frame .news-title {
  text-align: center;
}
.news_wrap .blue {
  background: #F4FAFF;
}
.news_wrap .purple {
  background: #FBFAFF;
}
.news_wrap .topnews {
  margin-top: 34px;
}
.news_wrap .scroll {
  overflow-y: none;
  height: auto;
}
.news_wrap .news-frame::-webkit-scrollbar {
  width: 8px;
}
.news_wrap .news-frame::-webkit-scrollbar-thumb {
  background-color: #C0C5C8;
  border-radius: 6px;
}
.news_wrap h2 {
  margin: 0 0 6px;
}
.news_wrap h2:nth-child(n+2) {
  margin-top: 48px;
}
.news_wrap ul.news-content {
  width: 100%;
  padding: 0 24px;
  overflow-wrap: normal;
}
.news_wrap ul.news-content time {
  display: inline-block;
  font-size: 13px;
}
.news_wrap ul.news-content li {
  display: block;
  margin: 24px auto;
  padding-bottom: 24px;
  border-bottom: 1px solid #B6B6B6;
  direction: ltr;
  /* テキスト方向を左から右 (Left-to-Right) に設定 */
  unicode-bidi: normal;
  /* バイダイレクショナルを通常に戻す */
  text-align: left;
}
.news_wrap ul.news-content li:last-child {
  border-bottom: none;
}
.news_wrap ul.news-content li h3 {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}
.news_wrap ul.news-content li p {
  margin-top: 0;
}

/* top用 ニュースボックスの高さ調整*/
#top .news_wrap .news-frame {
  height: 480px;
}

/* -----------------------------------------------
会議体一覧 */
.meeting-select {
  margin-top: 10px;
}

.meeting-explain-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.meeting-explain {
  position: relative;
}
.meeting-explain h2,
.meeting-explain p {
  margin: 0;
}

.cell-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 860px;
  margin-top: 14px;
  gap: 2px;
}
.cell-wrap li {
  width: 154px;
  height: 150px;
}
.cell-wrap li a {
  display: grid;
  place-items: center center;
  padding: 12px;
  width: 100%;
  height: 100%;
  background-color: #D9F2FF;
  border: solid 1px #D9F2FF;
  border-radius: 4px;
  transition: 0.1s;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}
.cell-wrap li:nth-child(even) a {
  background-color: #BDE5FB;
  border: solid 1px #BDE5FB;
}
.cell-wrap li a:hover {
  background-color: #ecf8ff;
  border: solid 1px #716DAC;
  color: #000000;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.24);
}
.cell-wrap li:nth-child(even) a:hover {
  background-color: #ecf8ff;
}
.cell-wrap li a:active, .cell-wrap li:nth-child(even) a:active {
  background-color: #fff;
  box-shadow: none;
}
.cell-wrap p {
  width: auto;
}

/* -----------------------------------------------
会議体TOP */
.top-button {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 99vw;
  min-width: 1100px;
  margin: 16px auto 0;
}
.top-button .back {
  margin-top: -4px;
}

.top-content {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

/* -----------------------------------------------
ダウンロードリスト */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.download-list-button {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  text-align: center;
}
.download-list-button button.add_button,
.download-list-button label.add_button {
  position: relative;
  display: block;
  padding: 8px;
  width: 178px;
  padding-right: 30px;
  border-radius: 50px;
  color: #fff;
}
.download-list-button button.add_button::after,
.download-list-button label.add_button::after {
  content: url(../img/file_add.svg);
  vertical-align: middle;
  padding: 0 8px;
  position: absolute;
  top: 6px;
}
.download-list-button button.add_button.folder:after,
.download-list-button label.add_button.folder:after {
  content: url(../img/folder_add.svg);
  vertical-align: middle;
  position: absolute;
  top: 8px;
}

.dl-button-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
}

.dllist {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
.dllist th {
  padding: 6px;
  background: #DEE3E7;
  outline: 1px solid #5f5f5f;
  outline-offset: -1px;
  border-radius: 4px 4px 0 0;
}
.dllist td {
  display: flex;
  align-items: center;
  padding: 10px;
  min-height: 48px;
  border: solid 1px #5f5f5f;
}
.dllist .edit_icon {
  width: 24px;
  height: 26px;
  background: url(../img/edit_aikon.svg) center left/auto no-repeat;
  flex-shrink: 0;
}
.dllist .edit_icon:hover {
  opacity: 0.6;
}
.dllist .edit_icon:active {
  opacity: 1;
}
.dllist .file_wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  text-align: left;
}
.dllist .file_wrap:hover {
  opacity: 0.6;
}
.dllist .file_wrap:active {
  opacity: 1;
}
.dllist .icon {
  width: 34px;
  height: 26px;
  background: url(../img/folder_icon.svg) center/auto no-repeat;
  flex-shrink: 0;
}
.dllist tr.file .icon {
  background: url(../img/file_icon.svg) center/auto no-repeat;
}

/*  ファイルリスト角丸調整 */
td:first-child {
  border-top: none;
}

tr:last-child td {
  border-top: none;
  border-radius: 0 0 4px 4px;
}/*# sourceMappingURL=common.css.map */
