@charset "UTF-8";

/* CSS Document */
/*------------------------------

  標準レイアウト・基本カラー

------------------------------*/
:root {
  --main: #148c56;
  --dark: #0a4429;
  --light: #d6ffed;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 480px) {}

body.manage {
  display: flex;
}

body.manage .main {
  background: #e2e2e2;
  width: calc(100% - 200px);
  height: 100vh;
  padding: 10px;
}

body.manage section {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  padding: 10px;
}

body.manage section h3 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 600;
}

body.manage section h4 {
  align-items: center;
  color: #777;
  display: flex;
  gap: 2px;
}

/*------------------------------

  ヘッダー

------------------------------*/
header {
  background: #fff;
  width: 200px;
  height: 100vh;
}

header h1 {
  text-align: center;
  max-width: 120px;
  margin: 20px auto;
}

header h1 a {
  display: block;
}

/*------------------------------

  グローバルナビゲーション

------------------------------*/
header nav ul {
  border-top: 1px solid #ddd;
}

header nav ul li {
  border-bottom: 1px solid #ddd;
}

header nav ul li a {
  align-items: center;
  color: #555;
  display: flex;
  font-size: 14px;
  gap: 10px;
  padding: 10px;
}

header nav ul li a:hover {
  background: var(--light);
  color: var(--dark);
  /* font-weight: 600; */
}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 480px) {}

/*
  ドロップダウンメニュー
------------------------------*/
@media screen and (max-width: 896px) {}

@media screen and (max-width: 480px) {}

/*
  1024px〜ハンバーガーメニュー（ipad proサイズから）
------------------------------*/
@media screen and (max-width: 896px) {
  header .toggle {
    background: var(--main);
    color: #fff;
    cursor: pointer;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transition: all .6s;
    -moz-transition: all .6s;
    -webkit-transition: all .6s;
    z-index: 100;
    width: 60px;
    height: 60px;
  }

  header .toggle span {
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    width: 30px;
    height: 2px;
    margin: auto;
  }

  header .toggle span:nth-of-type(1) {
    top: 10px;
  }

  header .toggle span:nth-of-type(2) {
    top: 20px;
  }

  header .toggle span:nth-of-type(3) {
    top: 30px;
  }

  header .toggle.Active span:nth-of-type(1) {
    display: none;
  }

  header .toggle.Active span:nth-of-type(2) {
    transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 20px;
    right: 0;
  }

  header .toggle.Active span:nth-of-type(3) {
    transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    top: 20px;
    right: 0;
  }

  header .overlay {
    /* 背景ぼかし */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh);
  }

  /* このクラスを、jQueryで付与・削除する */
  header nav.global.PanelActive {
    right: 0;
    transform: translateY(0%);
  }

  header nav.global {
    background: #F9F8F4;
    overflow: auto;
    position: fixed;
    top: 0;
    right: -100%;
    transition: all .6s;
    z-index: 99;
    width: 90%;
    height: calc(100%);
    max-width: 35rem;
    padding: 7.5rem 1.5rem 3rem;
    -webkit-overflow-scrolling: touch;
  }

  header nav.global ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  header nav.global ul li a:hover {
    opacity: 1;
  }

  .header_bg {
    height: 0;
  }
}

@media screen and (max-width: 480px) {
  header nav.global {
    max-width: 27rem;
    padding: 7.5rem 1rem 3rem;
  }
}

/*------------------------------

	footer

------------------------------*/
footer {}

footer .wrap {}

footer .wrap .copylight small {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 480px) {}

/*------------------------------

  ページ共通

------------------------------*/
figure img {
  width: 100%;
  vertical-align: bottom;
}

a.button,
button {
  background: var(--main);
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  min-width: 140px;
  padding: 6px 10px;
}

input:focus,
select:focus {
  outline: solid 2px var(--main);
}

input[type=file] {
  background: #eee;
  border: solid 1px #ddd;
  border-radius: 3px;
  width: 100%;
  padding: 5px;
}

input[type=text],
input[type=email],
input[type=password] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #eee;
  background-image: none;
  border: solid 1px #ddd;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  width: 100%;
  height: 32px;
  padding: .4em .6em;
}

input[type=month],
input[type=date],
input[type=time] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #eee;
  background-image: none;
  border: solid 1px #ddd;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 32px;
  padding: .3em .6em;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #f9f9f9;
  background-image: none;
  border: solid 1px #ccc;
  border-radius: 3px;
  color: inherit;
  display: inline-block;
  font-family: inherit;
  font-size: 1em;
  height: 32px;
  padding: .1em 2.4em .1em .6em;
}

.select {
  display: inline-block;
  position: relative;
}

.select::after {
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid var(--main);
  border-bottom: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

.submit {
  background: var(--main);
  border: solid 3px var(--main);
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  font-weight: 600;
  padding: 16px;
  transition: .3s;
  width: 100%;
}

.submit.short {
  padding: 8px;
  width: 100%;
  max-width: 300px;
}

.submit:hover {
  opacity: .85;
}

.message {
  color: #2779bd;
  background: #eff8ff;
  border-color: #6cb2eb;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  margin-bottom: 2rem;
  padding: 1rem;
}

.message.hidden {
  display: none;
}

.message.success {
  background: #e3fcec;
  border-color: #51d88a;
  color: #1f9d55;
}

.message.error {
  background: #fcebea;
  border-color: #ef5753;
  color: #cc1f1a;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 10px;
}

table th {
  background: #eee;
}

table tbody tr:nth-child(even) {
  background: #f2f2f2;
}

table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.link {
  color: var(--main);
  text-decoration: underline;
}

.link_muted {
  color: #808080;
  text-decoration: underline;
}

/*------------------------------

  ログイン画面

------------------------------*/
body.login .block {
  align-items: center;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100vh;
}

body.login .block h1 {
  width: 120px;
  max-width: 70%;
  margin: 0 auto 20px;
}

body.login .wrap {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .08);
  margin: 20px auto;
  padding: 30px 35px;
  width: 90%;
  max-width: 360px;
}

body.login .wrap form {
  text-align: left;
}

body.login .wrap form dl>div {
  margin: 0 0 20px;
}

body.login .wrap form dl dt {
  font-weight: 500;
  margin-bottom: .8rem;
}

body.login .wrap .help {
  margin-top: 10px;
}

body.login .btn_wrap {
  margin-top: 32px;
  text-align: center;
}

body.login button {
  line-height: 1;
  height: auto;
}

body.login .message {
  width: 100%;
  margin: 0 0 20px;
}

/*------------------------------

  ダッシュボード

------------------------------*/
.dashboard {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.dashboard .selection {
  width: 65%;
}

.dashboard .detail {
  width: 35%;
}

.dashboard .search {
  margin: 10px 0;
}

.dashboard .search dl {
  background: #eee;
  display: flex;
  gap: 16px;
  padding: 10px;
}

.dashboard .search dl dt {
  color: var(--main);
  font-size: 14px;
}

.dashboard table {
  text-align: center;
  width: 100%;
}

.dashboard table tr {
  cursor: pointer;
  transition: .3s;
}

.dashboard table tr:hover {
  background: var(--light);
}

.dashboard table tr.selected {
  border: 2px solid var(--main);
}

.dashboard table td {
  font-size: 15px;
}

.dashboard .detail dl {
  margin: 16px 0;
}

.dashboard .detail dl div {
  margin: 10px 0;
}

.dashboard .detail dl dt {
  color: #808080;
}

.dashboard .detail dl dd {
  background: #eee;
  font-size: 14px;
  min-height: 30px;
  padding: 4px 8px;
}

/*------------------------------

  マスタ画面

------------------------------*/
.master .title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.master .table_head {
  align-items: center;
  color: #808080;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  justify-content: space-between;
  margin: 6px 0;
}

.master .table_body {
  overflow-x: scroll;
}

.master .table_body table {
  min-width: 100%;
}

.master .table_body table th,
.master .table_body table td {
  border-left: none;
  border-right: none;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  padding: 10px 20px;
}

.master .table_body table th a {
  color: #555;
  font-size: 15px;
}

.master .table_body table td {
  font-size: 14px;
}

.master .table_body table td.actions {
  align-items: center;
  border-top: none;
  display: flex;
  gap: 10px;
}

.master .table_body table td.actions a {
  align-items: center;
  border: 1px solid #999;
  border-radius: 4px;
  color: #666;
  display: flex;
  padding: 4px;
}

.table_foot {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 10px 0;
}

.table_foot p {
  color: #808080;
  font-size: 13px;
}

.table_foot p span {
  border: solid #cccccc 1px;
  border-radius: 3px;
  padding: 5px 5px 5px 30px;
  margin: 0 10px;
}

.table_foot .page ol {
  display: flex;
  list-style: none;
}

.table_foot .page ol li {
  border-radius: 2px;
  min-width: 32px;
  height: 32px;
  margin: 0 5px;
}

.table_foot .page ol li a {
  align-items: center;
  display: flex;
}

.table_foot .page ol li>span {
  display: block;
}

.table_foot .page ol li>span,
.table_foot .page ol li a {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.table_foot .page ol li.active a {
  background: #ffffff;
  border: solid #cccccc 1px;
  color: var(--main);
}

.table_foot .page ol li.first a,
.table_foot .page ol li.prev a,
.table_foot .page ol li.next a,
.table_foot .page ol li.last a {
  background: var(--main);
  color: #ffffff;
}

.table_foot .page ol li.disabled a {
  background: #cccccc;
  color: #333333;
  cursor: not-allowed;
}

.table_foot .page ol li a span {
  display: block;
  text-align: center;
  width: 100%;
}

.input_page {
  border: solid 1px #ccc;
  border-radius: 4px;
  color: #555;
  text-align: right;
  width: 80px;
  height: 24px;
  padding: 0 6px;
}

.master .form fieldset {
  margin-bottom: 16px;
}

.master .form input {
  margin-bottom: 6px;
}