@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
}

*, *:before, *:after {
  /* width は border と padding　を加算して算出  */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}

@media screen and (max-width: 689px) {
  input, textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    max-width: 100%;
  }

  input[type="submit"],
  input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
  }

  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }

  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px;
  }
}
html,
body {
  background-color: #eaf4e5;
  height: 100%;
}

#login {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#login > form {
  width: 90%;
  border-radius: 5px;
  max-width: 480px;
  padding: 40px;
  background-color: #FFF;
  color: #444;
  font-size: 100%;
}
#login > form > p {
  width: 94%;
  font-size: 88%;
  text-align: center;
  color: #cc0000;
}
#login > form > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
#login > form > div > p {
  display: block;
  width: 20%;
  padding: 8px;
}
#login > form > div > input {
  display: block;
  width: 78%;
  border: solid 1px #888;
  padding: 8px;
}
#login > form > input {
  display: block;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  background-color: #0d6515;
  color: #FFF;
  padding: 8px 0;
  border-radius: 5px;
  border: none;
}

header {
  background-color: #426143;
  color: #FFF;
  font-size: 125%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
header > h1 {
  font-size: 100%;
  padding: 16px;
}
header > h1 > a {
  color: #FFF;
  text-decoration: none;
}
header > p {
  font-size: 75%;
  padding: 16px 16px 16px 0;
}
header > p::before {
  content: ' - ';
}
@media screen and (max-width: 689px) {
  header {
    position: fixed;
    z-index: 1;
    top: 0;
  }
  header > h1 {
    text-align: left;
    font-size: 100%;
    padding: 8px 8px 0;
    width: 100%;
  }
  header > p {
    text-align: left;
    font-size: 75%;
    padding: 4px 4px 8px 12px;
    width: 100%;
  }
  header > p::before {
    content: '';
  }
}

#hamburger {
  display: none;
}
@media screen and (max-width: 689px) {
  #hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 6px;
    top: 6px;
    cursor: pointer;
    border: solid 1px #FFF;
    width: 43px;
    height: 43px;
    transition: all .4s;
    background-color: #426143;
  }
  #hamburger span {
    transition: all .4s;
    position: absolute;
    left: 9px;
    width: 22px;
    height: 2px;
    background-color: #FFF;
    border-radius: 2px;
  }
  #hamburger span:nth-of-type(1) {
    top: 9px;
  }
  #hamburger span:nth-of-type(2) {
    top: 19px;
  }
  #hamburger span:nth-of-type(3) {
    bottom: 9px;
  }
  #hamburger.open span {
    background-color: #dfdaad;
  }
  #hamburger.open span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  #hamburger.open span:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger.open span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
}

nav {
  background-color: #FFF;
  border-bottom: solid 1px #d2dbcd;
}
nav > ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 88%;
}
nav > ul > li > a {
  display: inline-block;
  padding: 16px 24px;
  color: #426143;
  text-decoration: none;
}
nav > ul > li > a:hover {
  background-color: #d3e5ca;
}
@media screen and (max-width: 689px) {
  nav {
    background-color: rgba(66, 97, 67, 0.9);
    position: fixed;
    z-index: 1;
    top: 50px;
    width: 70vw;
    right: -70vw;
    height: calc(100vh - 50px);
    transition: 0.2s;
  }
  nav ul {
    display: none;
    padding: 0;
  }
  nav ul li {
    padding: 0;
  }
  nav ul li a {
    display: block;
    padding: 16px;
    color: #FFF;
    border-bottom: dashed 1px rgba(255, 255, 255, 0.8);
  }
  nav ul li a::before {
    content: "・";
  }
  nav.open {
    right: 0;
  }
  nav.open ul {
    display: block;
  }
}

main {
  width: 100%;
}
main section {
  width: 94%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0 40px 0;
}
main section > h2 {
  margin: 32px 0 8px;
  padding: 16px;
  line-height: 1;
  text-align: center;
  background-color: #426143;
  font-size: 125%;
  font-weight: bold;
  color: #FFF;
}
main section > h2 > span {
  font-size: 88%;
  font-weight: normal;
}
main section > p {
  font-size: 88%;
  padding: 0 0 24px;
}
main section > p > a {
  color: #0d6515;
  text-decoration: none;
  cursor: pointer;
}
main section > p > a:link, main section > p > a:visited, main section > p > a:hover, main section > p > a:active {
  color: #0d6515;
}
main section #listTable {
  width: 100%;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  background-color: #FFF;
  font-size: 88%;
  color: #333;
}
main section #listTable th, main section #listTable td {
  padding: 16px;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
main section #listTable th > a, main section #listTable td > a {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 auto;
  border-radius: 3px;
  line-height: 0.8;
}
main section #listTable th > a.change, main section #listTable td > a.change {
  text-decoration: none;
  background-color: #0d6515;
}
main section #listTable th > a.change:link, main section #listTable th > a.change:visited, main section #listTable th > a.change:hover, main section #listTable th > a.change:active, main section #listTable td > a.change:link, main section #listTable td > a.change:visited, main section #listTable td > a.change:hover, main section #listTable td > a.change:active {
  color: #e8effa;
}
main section #listTable th > a.valid, main section #listTable td > a.valid {
  text-decoration: none;
  background-color: #1699b1;
  margin-left: 8px;
}
main section #listTable th > a.valid:link, main section #listTable th > a.valid:visited, main section #listTable th > a.valid:hover, main section #listTable th > a.valid:active, main section #listTable td > a.valid:link, main section #listTable td > a.valid:visited, main section #listTable td > a.valid:hover, main section #listTable td > a.valid:active {
  color: #e8effa;
}
main section #listTable th > a.invalid, main section #listTable td > a.invalid {
  text-decoration: none;
  background-color: #666;
  margin-left: 8px;
}
main section #listTable th > a.invalid:link, main section #listTable th > a.invalid:visited, main section #listTable th > a.invalid:hover, main section #listTable th > a.invalid:active, main section #listTable td > a.invalid:link, main section #listTable td > a.invalid:visited, main section #listTable td > a.invalid:hover, main section #listTable td > a.invalid:active {
  color: #eee;
}
main section #listTable th {
  background-color: #ddd;
}
main section #listTable th > span {
  display: inline-block;
  font-size: 113%;
}
main section #listTable th > span span {
  color: #999;
  margin-left: 8px;
}
main section #listTable th > span > a {
  margin-left: 8px;
}
main section #listTable th > span > a:link, main section #listTable th > span > a:visited, main section #listTable th > span > a:hover, main section #listTable th > span > a:active {
  color: #0d6515;
}
main section #listTable .date {
  text-align: center;
}
main section #listTable .date br {
  display: none;
}
main section #listTable .sequence {
  text-align: center;
}
main section #listTable .false td {
  color: #888;
}
main section #listTable tr:nth-of-type(odd) td {
  background-color: #f2f2f2;
}
@media screen and (max-width: 689px) {
  main section #listTable th, main section #listTable td {
    padding: 8px;
  }
  main section #listTable th > a, main section #listTable td > a {
    display: block;
    white-space: nowrap;
    padding: 4px 8px;
    font-size: 88%;
    line-height: 1;
    text-align: center;
  }
  main section #listTable th > a:nth-of-type(2), main section #listTable td > a:nth-of-type(2) {
    margin-left: 0px;
    margin-top: 4px;
  }
  main section #listTable th {
    background-color: #ddd;
  }
  main section #listTable th > span {
    display: inline-block;
    font-size: 113%;
  }
  main section #listTable th > span span {
    color: #999;
    margin-left: 8px;
  }
  main section #listTable th > span > a {
    margin-left: 8px;
  }
  main section #listTable th > span > a:link, main section #listTable th > span > a:visited, main section #listTable th > span > a:hover, main section #listTable th > span > a:active {
    color: #0d6515;
  }
  main section #listTable .date br {
    display: block;
  }
}
main section .inputform > h3 {
  padding: 4px 0 2px 8px;
  margin-bottom: 4px;
  border-left: solid 4px #426143;
  font-size: 113%;
  font-weight: bold;
  color: #426143;
}
main section .inputTable {
  width: 100%;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  background-color: #FFF;
  font-size: 100%;
  line-height: 1.5;
  color: #333;
  margin-bottom: 32px;
}
main section .inputTable th, main section .inputTable td {
  padding: 16px;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
main section .inputTable th {
  width: 100%;
  text-align: left;
  background-color: #ededed;
}
main section .inputTable td {
  vertical-align: top;
}
main section .inputTable td:nth-of-type(1) {
  width: 25%;
}
main section .inputTable td input[type=text] {
  border: solid 1px #999;
  padding: 8px;
  width: 80%;
}
main section .inputTable td input[type=number] {
  border: solid 1px #999;
  padding: 8px;
  font-size: 113%;
  width: 50%;
}
main section .inputTable td p.info {
  font-size: 88%;
  padding-top: 5px;
}
main section .inputTable td p.delinfo {
  font-size: 88%;
  padding-bottom: 10px;
  text-align: center;
}
main section .inputTable td textarea {
  width: 80%;
  font-size: 113%;
  padding: 8px;
  min-height: 4em;
  font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}
main section .inputTable tr:nth-of-type(even) th {
  background-color: #e7e7e7;
}
main section .inputTable tr:nth-of-type(even) td {
  background-color: #f9f9f9;
}
main section .inputTable tr th.other {
  background-color: #ccc;
}
@media screen and (max-width: 689px) {
  main section .inputTable {
    font-size: 88%;
  }
  main section .inputTable th, main section .inputTable td {
    padding: 8px;
  }
  main section .inputTable td {
    display: block;
    width: 100%;
  }
  main section .inputTable td:nth-of-type(1) {
    width: 100%;
    padding: 8px 8px 0 8px;
    border-bottom: none;
    font-weight: bold;
  }
  main section .inputTable td:nth-of-type(2) {
    padding: 8px;
  }
  main section .inputTable td input[type=text] {
    width: 100%;
  }
  main section .inputTable td input[type=number] {
    width: 70%;
  }
}
main section .reflectionTable {
  width: 100%;
  margin-bottom: 32px;
}
main section .reflectionTable td {
  border: solid 1px #ccc;
  padding: 16px;
  background-color: #FFF;
  line-height: 1.5;
}
main section .reflectionTable td textarea {
  width: 100%;
  font-size: 113%;
  padding: 8px;
  min-height: 10em;
  font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}
@media screen and (max-width: 689px) {
  main section .reflectionTable td {
    padding: 8px;
  }
}
main section .submitdiv input {
  cursor: pointer;
  display: block;
  padding: 12px 40px;
  margin: 0 auto;
  font-size: 100%;
  border-radius: 3px;
  border: none;
  color: #e8effa;
  text-decoration: none;
  background-color: #0d6515;
}
main section .submitdiv > p.delinfo {
  font-size: 88%;
  padding-bottom: 10px;
  text-align: center;
}
main section .logform {
  margin: 8px 0 32px 0;
  padding: 16px;
  border: solid 1px #ccc;
  background-color: #e7e7e7;
  text-align: center;
}
main section .logform > p {
  padding-bottom: 8px;
  font-size: 100%;
  color: #333;
}
main section .logform select {
  font-size: 94%;
  padding: 8px;
  margin: 0 auto;
  cursor: pointer;
}
main section .logform > div {
  padding: 16px 0 0;
}
main section .logform > div input {
  cursor: pointer;
}
@media screen and (max-width: 689px) {
  main section .logform {
    padding: 8px;
  }
}
main section #page {
  text-align: center;
  padding: 24px 0 0;
}
main section #page a {
  display: inline-block;
  padding: 8px 16px;
  border: solid 1px #ddd;
  background-color: #4c6ca2;
  text-decoration: none;
  transition: 0.3s;
}
main section #page a:link, main section #page a:visited, main section #page a:hover, main section #page a:active {
  color: #e8effa;
}
main section #page a:nth-of-type(n + 2) {
  border-left: none;
}
main section #page a:hover {
  background-color: #0d6515;
}
main section #page a.now {
  background-color: #ddd;
  color: #999;
}
main section #page a.now:hover {
  background-color: #ddd;
}
@media screen and (max-width: 689px) {
  main {
    padding-top: 50px;
  }
}

#calendar h2 {
  margin: 32px 0 8px;
  padding: 4px 0 2px 8px;
  line-height: 1;
  text-align: left;
  background-color: inherit;
  font-size: 125%;
  font-weight: bold;
  color: #426143;
  border-left: solid 4px #426143;
}
#calendar h2 > span {
  font-size: 88%;
  font-weight: normal;
}
#calendar h3 {
  margin: 0 auto 16px;
  text-align: center;
  font-size: 200%;
  font-weight: bold;
  color: #222;
}
#calendar h3 > a {
  text-decoration: none;
  color: #0d6515;
}
#calendar table {
  width: 100%;
  max-width: 1040px;
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
  position: relative;
}
#calendar table tr {
  display: flex;
  flex-wrap: nowrap;
}
#calendar table tr th {
  padding: 8px;
  font-size: 88%;
  text-align: center;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  color: #FFF;
  background-color: #525252;
  user-select: none;
  width: calc(100% / 7);
}
#calendar table tr th:nth-of-type(1) {
  background-color: #e32821;
  color: #FFF;
}
#calendar table tr th:nth-of-type(7) {
  background-color: #226ae2;
  color: #FFF;
}
#calendar table tr td {
  display: block;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  background-color: #FFF;
  min-height: 100px;
  width: calc(100% / 7);
  position: relative;
}
#calendar table tr td > span {
  position: absolute;
  opacity: 0.5;
  top: 4px;
  left: 4px;
  font-size: 75%;
  user-select: none;
}
#calendar table tr td > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  color: #525252;
  font-size: 88%;
  line-height: 1.5;
  width: 100%;
  height: 100%;
}
#calendar table tr td.today {
  border: solid 4px #ffdd53;
}
#calendar table tr td:nth-of-type(1) {
  background-color: #ffeae9;
}
#calendar table tr td:nth-of-type(7) {
  background-color: #e1ecff;
}
#calendar table tr td.holyday {
  background-color: #ffeae9;
}
#calendar table tr td.none {
  background-color: #eee;
}
#calendar table#flag_master a {
  text-decoration: none;
  color: #FFF;
  border-radius: 4px;
  padding: 4px 8px;
  display: inline-block;
  margin: 5px;
  height: auto;
}
#calendar table#flag_master a.user1 {
  background-color: #0d6515;
}
#calendar table#flag_master a.user0 {
  background-color: #aaaaaa;
  display: none;
}
#calendar table#flag_master a span::before {
  content: " ";
}
#calendar table#flag_user td {
  cursor: pointer;
}
#calendar table#flag_user td[class="none"] {
  cursor: auto;
}
@media screen and (max-width: 689px) {
  #calendar > h2 {
    width: 94%;
    margin: 32px auto 8px;
  }
  #calendar h3 {
    font-size: 150%;
  }
  #calendar > p {
    width: 94%;
    margin: 0 auto;
  }
  #calendar table {
    width: 100%;
  }
  #calendar table tr {
    display: flex;
    flex-wrap: nowrap;
  }
  #calendar table tr th {
    padding: 4px;
  }
  #calendar table tr td {
    min-height: 70px;
  }
  #calendar table#flag_master td > div {
    align-items: center;
  }
  #calendar table#flag_master td > div a {
    border-radius: 2px;
    padding: 2px 4px;
    margin: 2px;
    font-size: 88%;
    line-height: 1.2;
  }
  #calendar table#flag_master td > div a span {
    display: inline;
    font-size: 75%;
  }
  #calendar table#flag_master td > div a span::before {
    content: "";
  }
}

#tabulation h2 {
  margin: 32px 0 8px;
  padding: 4px 0 2px 8px;
  line-height: 1;
  text-align: left;
  background-color: inherit;
  font-size: 125%;
  font-weight: bold;
  color: #426143;
  border-left: solid 4px #426143;
}
#tabulation h2 > span {
  font-size: 88%;
  font-weight: normal;
}
#tabulation #tabulationSetting {
  padding: 16px;
  margin: 16px auto;
  background-color: #c9debe;
  border-radius: 8px;
}
#tabulation #tabulationSetting h3 {
  color: #426143;
  font-size: 113%;
  text-align: center;
  border-bottom: solid 3px #426143;
  font-weight: bold;
  padding-bottom: 4px;
}
#tabulation #tabulationSetting > form > div {
  text-align: center;
}
#tabulation #tabulationSetting > form > div.tbuserdiv {
  padding-bottom: 16px;
  margin: 0 8px 8px;
  border-bottom: dashed 1px #94b383;
}
#tabulation #tabulationSetting > form > div.tbuserdiv input[type=checkbox] {
  display: none;
}
#tabulation #tabulationSetting > form > div.tbuserdiv input[type=checkbox] + label {
  padding: 8px;
  display: inline-block;
  color: #222;
  text-decoration: line-through;
}
#tabulation #tabulationSetting > form > div.tbuserdiv input[type=checkbox] + label::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  padding-right: 5px;
  color: #0d6515;
}
#tabulation #tabulationSetting > form > div.tbuserdiv input[type=checkbox]:checked + label {
  text-decoration: blink;
}
#tabulation #tabulationSetting > form > div.tbuserdiv input[type=checkbox]:checked + label::before {
  font-weight: 900;
  content: "\f14a";
  color: #0d6515;
}
#tabulation #tabulationSetting > form > div:last-of-type {
  margin-top: 24px;
}
#tabulation #tabulationSetting > form h4 {
  color: #426143;
  font-weight: bold;
  padding: 16px 0 8px;
}
#tabulation #tabulationSetting > form label {
  cursor: pointer;
}
#tabulation #tabulationSetting > form select {
  cursor: pointer;
  font-size: 100%;
  padding: 8px;
}
#tabulation #tabulationSetting > form select + span {
  display: inline-block;
  padding: 0 8px;
}
@media screen and (max-width: 689px) {
  #tabulation #tabulationSetting {
    margin: 8px auto;
  }
  #tabulation #tabulationSetting h3 {
    border-bottom: solid 2px #426143;
  }
  #tabulation #tabulationSetting > form > div.tbuserdiv {
    text-align: left;
  }
  #tabulation #tabulationSetting > form > div.tbuserdiv h4 {
    text-align: center;
  }
  #tabulation #tabulationSetting > form select + span {
    display: inline-block;
    padding: 0 4px;
  }
}
#tabulation .disptbs {
  max-width: 880px;
  margin: 0 auto;
}
#tabulation .disptbs h4 {
  font-weight: bold;
  color: #426143;
  padding: 0 0 8px 0;
}
#tabulation .disptbs h4:nth-of-type(3) {
  color: #CC0000;
}
#tabulation .disptbs dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
  width: 100%;
  border-left: solid 1px #666;
  border-top: solid 1px #666;
}
#tabulation .disptbs dl dt {
  padding: 16px;
  width: 45%;
  border-right: dashed 1px #666;
  border-bottom: solid 1px #666;
  background-color: #FFF;
  line-height: 1.5;
}
#tabulation .disptbs dl dt:nth-of-type(even) {
  background-color: #f6f6f6;
}
#tabulation .disptbs dl dd {
  padding: 16px;
  width: 55%;
  border-right: solid 1px #666;
  border-bottom: solid 1px #666;
  text-align: right;
  background-color: #FFF;
  line-height: 1.5;
}
#tabulation .disptbs dl dd:nth-of-type(even) {
  background-color: #f6f6f6;
}
#tabulation .disptbs dl:nth-of-type(1) dt:last-of-type, #tabulation .disptbs dl:nth-of-type(2) dt:last-of-type {
  background-color: #ffefd8;
  color: #f08800;
  font-weight: bold;
}
#tabulation .disptbs dl:nth-of-type(1) dd:last-of-type, #tabulation .disptbs dl:nth-of-type(2) dd:last-of-type {
  background-color: #ffefd8;
  color: #f08800;
  font-weight: bold;
}
#tabulation .disptbs dl:nth-of-type(3) {
  border-left: solid 1px #CC0000;
  border-top: solid 1px #CC0000;
}
#tabulation .disptbs dl:nth-of-type(3) dt {
  border-right: dashed 1px #CC0000;
  border-bottom: solid 1px #CC0000;
}
#tabulation .disptbs dl:nth-of-type(3) dt:last-of-type {
  background-color: #ffe3e3;
  color: #CC0000;
  font-weight: bold;
}
#tabulation .disptbs dl:nth-of-type(3) dd {
  border-right: solid 1px #CC0000;
  border-bottom: solid 1px #CC0000;
}
#tabulation .disptbs dl:nth-of-type(3) dd:last-of-type {
  background-color: #ffe3e3;
  color: #CC0000;
  font-weight: bold;
}
@media screen and (max-width: 689px) {
  #tabulation .disptbs {
    width: 100%;
  }
  #tabulation .disptbs dl {
    margin-bottom: 24px;
  }
  #tabulation .disptbs dl dt {
    padding: 8px;
  }
  #tabulation .disptbs dl dd {
    padding: 8px;
  }
}
#tabulation #tb_setdiv {
  text-align: center;
  line-height: 1.5;
  padding: 20px 10px 10px;
}
#tabulation #tb_setdiv > p br {
  display: none;
}
#tabulation #tb_setdiv > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  padding: 16px 0;
}
#tabulation #tb_setdiv > div > p:nth-of-type(1)::after {
  content: "　：　";
}
#tabulation #tb_setdiv > div > p:nth-of-type(2) > span {
  display: inline-block;
}
#tabulation #tb_setdiv > div > p:nth-of-type(2) > span::after {
  content: "、";
}
#tabulation #tb_setdiv > div > p:nth-of-type(2) > span:last-of-type::after {
  content: "";
}
@media screen and (max-width: 689px) {
  #tabulation #tb_setdiv > p br {
    display: block;
  }
  #tabulation #tb_setdiv > div {
    display: block;
    flex-wrap: wrap;
    padding: 16px 0;
  }
  #tabulation #tb_setdiv > div > p:nth-of-type(1) {
    color: #426143;
    padding-bottom: 4px;
  }
  #tabulation #tb_setdiv > div > p:nth-of-type(1)::before {
    content: "【";
  }
  #tabulation #tb_setdiv > div > p:nth-of-type(1)::after {
    content: "】";
  }
}
#tabulation .tbdata_err {
  text-align: center;
  line-height: 1.5;
  padding: 20px 10px 10px;
}

footer {
  height: 30px;
  background-color: #426143;
  color: #FFF;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 689px) {
  input[type=text],
  input[type=tel],
  input[type=mail],
  input[type=password],
  textarea,
  select,
  option {
    font-size: 16px;
  }
}
