@charset "UTF-8";

/*** 一般style *****************************/

/*共通*/
* {
  border: initial;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  }
html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  }

body {
  width:100%;
  font-size: var(--font-size-default);
  }

a {
    color:inherit;
    text-underline-offset: 3px;
    }

p {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height:160%;
  }

/* table要素の基本スタイル */
  table {
    width: 100%;
    border-collapse: collapse;
  }
  th, td {
    padding: var(--spacing-sm);
    /* border-bottom: 1px solid #ddd; */
    border: 1px solid #666;
  }
  th {
    background-color: var(--color-bg-muted);
    text-align: center;
  }
  tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  td{
    text-align: center;
  }
  td.ctrl{
    text-align: center;
  }
  
  .form-control {
    border: 1px solid #666;
  }
  .form-select {
    border: 1px solid #666;
  }

header {
  height:55px;
  background-color: var(--color-g-ctrl);
  display:flex;
  align-items: center;
  color: var(--color-text-inverted);
  position: fixed/*sticky*/;
  top: 0;
  left: 0;
  right: 0;
  width:100%;
}
header img {
  height:35px;
  margin-left:15px;
  vertical-align:bottom;
}
header p {
  font-size: 18px!important;
  margin-left: var(--spacing-md);
  /* margin-bottom: -18px; */
}
header a .dashboard {
  margin-left: var(--spacing-md);
  /* margin-bottom: -18px; */
}

.wrapper {
  display: flex;
  min-height: calc(100vh - 80px);
  margin-top: 55px;
  padding-bottom: 25px;
}
nav {
  width: 200px;
  min-width: 200px;
  background-color: var(--color-bg-muted);
  font-size: var(--font-size-sm);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}
nav ul {
  padding:0.3rem 0.875rem 0.3rem 1rem;
  font-weight: bold;
  font-size: var(--font-size-default);
  margin-bottom: 0;
}
nav li {
  padding:0.3rem 0.875rem;
  font-weight: normal;
  font-size: var(--font-size-sm);
}
nav li.bold {
  padding:0px;
  font-weight: bold;
  font-size: var(--font-size-default);
}

main {
  /* width: 1100px; */
  min-width: 1100px;
  width: 100%;
  background-color: var(--color-bg-base);
  margin-bottom: 50px;
}
main .dashboard {
  height:30px;
  background-color: #4472C4;
  font-size: var(--font-size-default);
  padding: 20px;
  display:flex;
  align-items: center;
  color: var(--color-text-inverted);
  text-decoration:none;
}

main section{
  min-width: 1000px;
  margin:0 auto;
  padding : var(--spacing-md);
}

main table td{
  /* padding:100px;
  font-size: var(--font-size-lg); */
}

footer {
  height:25px;
  background-color: var(--color-g-ctrl);
  font-size: var(--font-size-xm);
  display:flex;
  justify-content:center;
  align-items: center;
  color: var(--color-text-inverted);
  position: fixed;
  bottom: 0;
  left: 0;
  width:100%;
}

form.giin_form, form.kiji_form{
  max-width: 1000px;
}

div.kijilist_container{
  max-width: 800px;
}
/* form.giin_form dt,form.giin_form dd{
  border: solid 1px rgba(90, 90, 90, 0.8);
  min-height: 50px;
  text-align: center;
  height: 60px;
  padding: 0.2rem 2rem;
}
form.giin_form dl{
  display: flex;
  flex-wrap: nowrap;
  width: 90%;
} */