@charset "UTF-8";

/* 57行目、113行目以外は、tablet sPhone と共通 */

/* search */
#search-list {
  width: 90%;
  max-width: 940px;
  height: 31px;
  margin: 0 auto 0.5em;
  }
  #search-list div {
    width: 250px;
    height: 31px;
    position: relative;
    float: right;
    }
    #search-list input {
      width: calc(100% - 2em - 2px - 53px);
      padding: 0.5em 1em;
      font-size: 100%;
      letter-spacing: 0.1em;
      color: var(--light_gray); /* gray 90% */
      border: 1px solid var(--light_violet);
      position: absolute;
      top: 0;
      left: 0;
    }
    #search-list button {
      cursor: pointer;
      display: inline-block;
      width: 50px;
      height: 31px;
      background: #b581dd;
      border: 1px solid #b581dd;
      -webkit-appearance: none;
      position: absolute;
      top: 0;
      right: 0;
}
#search-list button img {
  display: block;
  width: 16px;
  height: auto;
  margin: 0 auto;
  /* svg color change #eee */
  filter: invert(99%) sepia(7%) saturate(177%) hue-rotate(338deg) brightness(115%) contrast(87%);
}
/* search end */

/* pagination ( top ) */
section.pagination {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  height: 15px;
  font-size: 92%;
  letter-spacing: 0.1em;
  text-align: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  display: flex;
  align-items: baseline;
  }
  section.pagination a {
    min-width: 50px;
    height: 15px;
    margin: 0 0.3em;
    padding: 0.3em;
    letter-spacing: 0.2em;
    color: #fff;
    background: #b581dd;
    border-radius: 2px;
  }
  section.pagination a.csv-download-btn {
    min-width: 50px;
    height: 15px;
    margin: 0 0.5em 0;
    padding: 0.3em 1em;
    letter-spacing: 0.2em;
    color: #fff;
    background: #5c6efc;
    border-radius: 2px;
  }
  section.pagination p {
    min-width: 90px;
    height: 15px;
    padding: 0 1em;
}

/* mailform */
table.member-table {
  clear: right;
  width: 90%;
  max-width: 940px;
  margin: 10px auto 30px;
  border: 1px solid var(--pastel_red);
  }
  table.member-table tr th,
  table.member-table tr td {
    font-weight: normal;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;/* 切りよく折り返し 旧ブラウザ用 */
    overflow-wrap: anywhere;/* 切りよく折り返し 新ブラウザ用 */
  }
  table.member-table tr th {
    width: auto;
    text-align: center;
    font-size: 82%;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--pastel_red);
    padding: 0.8em 0;
    border-right: 1px solid #f9aaaa;
    }
    table.member-table tr th:last-of-type {
        border-right: none;
  }
  table.member-table tr td {
    padding: 1em;
    text-align: left;
    letter-spacing: 0.1em;
    font-size: 100%;
    color: var(--dark_brown);
    border-right: 1px solid var(--pastel_red);
    border-bottom: 1px solid var(--pastel_red);
    }
    /* 編集btn */
    button.edit-btn {
      cursor: pointer;
      display: block;
      width: 40px;
      margin: 0 auto;
      padding: 0.5em;
      text-align: center;
      font-size: 92%;
      color: #fff;
      background: #5c6efc;
      border: 1px solid #5c6efc;
      border-radius: 2px;
    }
    button.delete-btn {
      cursor: pointer;
      display: block;
      width: 40px;
      margin: 1em auto 0;
      padding: 0.2em 0.5em;
      text-align: center;
      font-size: 92%;
      color: #fff;
      background: #f44;
      border: 1px solid #f44;
      border-radius: 2px;
    }
    /* No */
    table.member-table tr td.center {
      text-align: center;
  }

/* input common */
table.edit {
  width: 90%;
  max-width: 420px;
  margin: 0 1em 4em;
  border: none;
}
table.edit tr th,
table.edit tr td {
  padding: 0;
  border: none;
  font-weight: normal;
  font-family: 'Lato', sans-serif;
}
table.edit tr th {
  width: auto;
  text-align: left;
  font-size: 92%;
  letter-spacing: 0.1em;
  color: var(--pastel_red);
  background: #fff;
  padding: 3em 0 0.5em;
}
table.edit tr td input {
  width: calc(100% - 22px);
  padding: 10px;
  font-size: 108%;
  letter-spacing: 0.1em;
  color: var(--light_gray); /* gray 90% */
  border: 1px solid var(--light_violet);
  }
  table.edit tr td input.input-name {
    width: calc(50% - 22px - 0.2em); /* adjust */
    padding: 10px;
    font-size: 108%;
    letter-spacing: 0.1em;
    color: var(--light_gray); /* gray 90% */
    border: 1px solid var(--light_violet);
    }
  /* 〒 */
  table.edit tr td input.zip {
    width: calc(120px - 20px);
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    border: 1px solid var(--light_violet);
    }
    /* placeholder */
    table.edit tr td input.zip[placeholder] {
      color: #ccc;
    }
    table.edit tr td input::focus::placeholder {
      color: transparent;
    }
    table.edit tr td input.zip[type="text"]{
      color: var(--light_gray);
  }
  /* placeholder end */
  table.edit tr td input.address {
    width: calc(100% - 22px);
    height: auto;
    padding: 10px;
    font-size: 108%;
    letter-spacing: 0.1em;
    color: var(--light_gray);
    border: 1px solid var(--light_violet);
    background: var(--white);

  }
  /* 〒 end */

  /* submit btn */
  table.edit tr td:has(input.submit-btn) {
    padding-top: 3em;
    border-bottom: none;
    }
    /* submit btn */
    table.edit tr td input.submit-btn,
    button.cancel-btn {
      cursor: pointer;
      font-family: 'Lato', sans-serif;
      width: 140px;
      height: 42px;
      margin-right: 10px;
      font-size: 92%;
      text-align: center;
      color: var(--white);
      background: var(--wisteria);
      float: left;
      border: none;
}
/* mailform end */

/* pagination ( bottom ) */
ul.pagination {
  width: 90%;
  max-width: 940px;
  height: auto;
  margin: 0px auto 100px;
  letter-spacing: 0.1em;
  justify-content: flex-start;
  flex-wrap: wrap;
  display: flex;
  align-items: baseline;
  }
  ul.pagination li {
    min-width: 33px;
    height: 33px;
    line-height: 33px;
    margin: 0.5em;
    }
    ul.pagination li a {
      display: block;
      width: 100%;
      height: 33px;
      text-align: center;
      background: #b581dd;
      color: #fff;
      font-size: 92%;
      }
      ul.pagination li a.current {
        background: #e5c6eb;
      }
      ul.pagination li a.all-list {
        display: block;
        width: 50px;
        height: 33px;
        text-align: center;
        background: #b581dd;
        color: #fff;
        font-size: 92%;
}
