@charset "shift-jis";


ol, ul{
  list-style: none;  
}

body{
  background:#FFF;
  color:#333631;
  font-size:12px;
}

a,
a:hover{
  color:#333631;
  text-decoration:none;
}

ul.slimmenu { text-align: center }
ul.slimmenu li { text-align: left; width: 234px }
ul.slimmenu li a { color:#fff; }
/*
h1 {
  font-size: 16px;
  background-color: #487592;
  color:#fff;
  padding: 10px;
  text-align:center;
}
*/
h1 {
  font-size:14px;
  color: #fff;
  position: relative;
  margin: 0;
  padding: 10px 0;
  background-color: #e56183;
  text-align: center;
}

p{
  margin: 10px 0;
  line-height: 1.2;
}

p.notice{
  margin: 10px 0 30px 0;
}

article {
  width:98%;
  margin: 20px auto;
}

form {
  width: 100%;
}
/*
input, textarea, select {
  width: 98%;
  margin: 0 auto 15px auto;
  display: block;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  font-size: 150%;

}
input[type=radio], input[type=checkbox] {
  display: inline;
  width: auto;
}
*/

input, textarea, select {
    width: 100%;
    box-sizing: border-box; /* [borde-box]で右の飛び出しを回避 */
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
  padding: 5px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  border: 1px solid #444;
  -webkit-box-shadow: 0 2px 1px rgba(0,0,0,0.2) inset;
     -moz-box-shadow: 0 2px 1px rgba(0,0,0,0.2) inset;
          box-shadow: 0 2px 1px rgba(0,0,0,0.2) inset;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 150%;
  margin-bottom: 5px;
}

/*補足）チェックボックスをCSSで大きくする記述例*/
input[type="checkbox"] {
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    border-radius: 8px;
    border: 2px solid #4c4c4c;
    -webkit-box-sizing: border-box;
    width: 20px;
    height: 20px;
    background: #ffffff;
}

/* チェック時は背景色を変更 */
input[type="checkbox"]:checked {
    background: #9FB9D3;
}
input[type="submit"] {
  padding: 10px;
  border: none;
  border-bottom: 3px solid #222;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  background-color: #444;
  font-size: 130%;
  text-align: center;
  display: block;
}

.no-input {
  font-size:12px;
  margin: 0 auto 15px auto;
  display: block;
  padding: 8px;
  border: 1px solid #ececec;
  border-radius: 3px;
}

.search-box {
  border-bottom: 1px solid #ececec;
  margin-bottom: 20px;
}
.chk-box {
  width: 96%;
  margin: 5px auto 10px auto;
}

.program-data { 
  border-bottom: 1px solid #ececec;
}
.del-table {
  background: #cccccc;
}
.del-alliance {
  background: #eeeeee;
}

.slide-button {
  text-align:right;
  color:#fff;
  background:#487592;
  width:90%;
  padding : 10px;
  margin : 10px auto;
}
.close {
    background:#666;
}

table{
  width:100%;
  table-layout: fixed;
  border-top:1px solid #666;
  border-right:1px solid #666;
  border-collapse: separate;
  border-spacing:0px;
  word-break: break-word;
}

td, 
th {
  font-weight: normal;
  font-size:12px;
  border-left:1px solid #666;
  border-bottom:1px solid #666;
  vertical-align:middle;
}

td, th {
  padding : 2px;
  line-height: 1.2;
}

th {
  background: #254960;
  color: #fff;
}

tr:nth-child(odd) td {  
  background-color: #EAF6FD;  
}

tr:hover td {
  background-color: #FFCC99;
}

td.right,
th.right {
  text-align:right;
}

td.center,
th.center {
  text-align:center;
}

th.sum,
td.sum {
  background: #c0c0c0;
  color: #000;
}


.program-data table { 
  margin-bottom: 2px;
}

ul#program-ctrl {
  display:table;
  table-layout: fixed;
  width:100%;
  margin : 10px 0;
}
ul#program-ctrl li{
  display:table-cell;
  vertical-align:middle;
  text-align:center;
}
ul#program-ctrl li a{
  display: block;
  padding: 10px 5px;
  background: #c0c0c0;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  margin : 0 5px;
}
ul#program-ctrl li a#dark{
  background: #666;
  border: 1px solid #666;
  color: #fff;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #c0c0c0;
  margin-top: 40px;
}

.info {
  color: #F32C2C;
}

.caution {
  color: #F32C2C;
}

ul.pagination {
  margin: 0 0 10px;
  padding: 10px 10px 5px;
  background: #fff;
  text-align: center;
}

ul.pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
}

ul.pagination li span,
ul.pagination li a {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 13px;
  background: #eeeff7;
  text-decoration: none;
  vertical-align: middle;
}

ul.pagination li a:hover {
  color: #000;
  background: #ccf;
  border-color: #00f;
}

/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.index-emp {
  font-size:14px;
}

.index-meyasu {
  color: #999;
}

div#sokuho {
  border-bottom: 1px dotted #222;
  padding : 5px;
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
header {
  width:100%;
  color:#FFF;
}

header h2 {
  text-align: center;
  font-size: 12px;
  background-color: #c0c0c0;
  padding: 10px;
}


div.regist-info {
  display: block;
  width: 80%;
  margin: 10px auto;
  font-size: 12px;
  color: #222;
}

section.regist-form {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
section.regist-form p {
  font-size: 12px;
  color: #222;
  padding: 5px;
}
section.regist-form input,section.regist-form textarea,section.regist-form select {
  width: 80%;
  margin: 0 auto 10px auto;
  display: block;
  padding: 10px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  font-size: 150%;
}

section.regist-form p.info {
  font-size: 10px;
  line-height: 15px;
  margin: 10px 0;
}
p.info span.caution {
  color: #F32C2C;
}

div.radio {
  width: 80%;
  margin: 0 auto;
}
section.regist-form input.sex {
  display: inline;
  width: 20px;
  margin: 0;
}




.designation ul {
  list-style: none;
}
.designation li {
  display: block;
  font-size: 10px;
  width: 80%;
  text-align: left;
  margin: 10px auto;
  position: relative;
}
input.display {
  display: block;
  width: 80%;
  padding: 10px;
  background: #c0c0c0;
  border: none;
  border-radius: 4px;
  margin: 10px auto;
}


select#search {
  display: block;
  width: 80%;
  margin: 10px auto;
  padding: 10px;
  border-radius: 4px;
}

.child {
    display: none;
}

li.program-list {
  border-top: 1px solid #222;
  padding-top: 10px;
  margin-top: 10px;
}

div.list-title,div.list-link {
  width: 90%;
  margin: 10px auto;
}
div.list-title p {
  margin: 10px 0;
}

a.list-detail {
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 10px;
  text-align: right;
  color: #fff;
  padding-right: 10px;
  background: #666;
  margin: 10px 0;
}


.list-link ul {
  display: flex;
  justify-content: center;
}

.list-link a {
  padding: 10px 0;
  text-align: center;
  font-size: 10px;
  background: #c0c0c0;
  border-radius: 4px;
  width: 30%;
  margin: 10px 5px;
  display: inline-block;
}



.list-table {
  display: none;
  padding: 0 20px;
}

.list-table table {
  width: 100%;
  margin: 10px auto;
  padding: 0;
  border-spacing:0px;
  *border-collapse: collapse;
  border: 1px solid #222;
  table-layout: fixed;
  font-size: 10px;
}
.list-table table th {
  border: 1px solid #222;
  padding: 5px;
  vertical-align: middle;
  text-align: center;
}
.list-table table td {
  border: 1px solid #222;
  padding: 5px;
  vertical-align: middle;
  text-align: right;
}
.list-table table tr.black td {
  background: #222;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}


small {
  font-size:11px;
  font-style: normal;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Arial, sans-serif;
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
.modal-content {
  margin: 0 5%;
  display: none;
  position: fixed;
  z-index: 10;
  width: 90%;
  background-color: #fff;
  top: 60px;
}

#modal-about {
  top: 60px;
}

.modal-content h2 {
  padding: 10px 5px;
  color: #fff;
  background-color: #18b2bc;
  text-align: center;
}

.modal-content p:first-of-type {
  margin: 15px 10px 0;
  color: #777;
}

.modal-content span {
  margin: 5px 0;
  padding: 5px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: block;
  color: #000;
  border: 1px solid #222;
}

#modal-overlay {
  display: none;
  position: fixed;
  z-index: 5;
  top: 0 ;
  left: 0 ;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.75);
}

.modal-syncer,
#modal-close {
  cursor: pointer;
}

#modal-close {
  margin: 15px 10px 10px;
  padding: 5px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: block;
  color: #fff;
  background-color: #444;
  text-align: center;
}

