/* CSS Document */

/* CSS for Modify */

  .header .navbar {
    background-color: #fff;
  }
  .header {
    padding-bottom: 2px;
    border-bottom: solid 1px #eee;
}
  .navbar-inverse {
    background-image: none;
    background-color: #fff;
    border-color: #fff;
}
  .navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav>li>a {
    text-shadow: none;
}
  .navbar-inverse .navbar-nav>li>a, .navbar-inverse .navbar-text {
    color: #222;
  }
  .navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus {
    background-color: #eee;
    color: #000;
  }
  .navbar-inverse .navbar-nav>.dropdown>a, .navbar-inverse .navbar-nav>.dropdown>a:hover, .navbar-inverse .navbar-nav>.dropdown>a:focus {
    background-color: #fff;
    color: #000;
    
  }
.nav>li {
  position: relative;
  display: block;
  border-left  : 1px solid #bbb;
  border-top   : 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}
.nav>li:last-child {
  border-right: 1px solid #bbb;
}
  li.oshirase {
    color: red;
    margin-top: 10px;
  }
  .content {
    padding-top: 15px;
    padding-bottom: 25px;
}
  a img:hover {
    opacity: 0.7;
  }
  #top-menu {
    
  }
  ul.top-my-menu-list {
    width: 950px;
    margin: 0 auto;
    list-style: none;
  }
  ul.top-my-menu-list li {
    margin: 10px;
    width: 280px;
    height: 240px;
    text-align: center;
    float: left;
    font-size: 22px;
    color: black;
    border: 3px solid #aaa;
    border-radius: 10px;
  }
  ul.top-my-menu-list li img {
    width: 180px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  ul.top-my-menu-list li a {
    font-weight: 700;
    color: black;
  }
  #top-info {
    position: relative;
    width: 97%;
    margin: 0 auto;
    display: block;
    height: 120px;
  }
  #top-info-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 34%;
    height: 100%;
    float: left;
    background-color: white;
  }
  #top-info-left ul {
    list-style: none;
    margin: 10px 10px;
    padding-left: 10px;
    font-size: 16px;;
    font-weight: bold;
  }
  #top-info-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 64%;
    height: 100%;
    float: right;
    background-color: white;
  }
  #top-info-right table {
    width: 98%;
    height: 98%;
    margin: 0 auto;
    padding: 0;
    font-size: 14px;
    border: solid 2px #211b7d;
    border-radius: 2px;
  }
  #top-info-right table th {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    padding-left: 3px;
    color: white;
    background-color: #211b7d;
  }
  #top-info-right table td {
    font-size: 12px;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
    padding: 2px;
    color: black;
    background-color: white;
  }
  ul.my-menu-list {
    width: 950px;
    margin: 0 auto;
    list-style: none;
  }
  ul.my-menu-list li {
    margin: 10px;
    width: 280px;
    height: 240px;
    text-align: center;
    float: left;
    font-size: 22px;
    color: black;
    border: none;
  }
  ul.my-menu-list li img {
    width: 180px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  ul.my-menu-list li a {
    font-weight: 700;
    color: black;
  }

  #nav-info {
    width: 100%;
    margin: 0 auto;
    padding: 1px 10px 1px 10px;
    display: inline-block;
    position: relative;
  }
  /*#nav-info a {
    font-size: 1.2em;
    font-weight: bold;
  }*/

#top-name {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

/* お知らせ スクロール */
.scroll {
  margin-left: 80px;
  margin-top: 5px;
  width      : 50%;
  font-size  : 14px;
  line-height: 1.1em;
  text-align : left;
  border     : 1px solid #bbb;
  color      : red;
  background : #fff;
  overflow   : hidden;
  padding-left: 5px;
  height: 45px;
  display: inline-block;
}
.scroll span{
  display     : inline-block;
  white-space : nowrap;
  line-height : 1.2em;
  animation   : scrollAnime 8s ease infinite;
}
@keyframes scrollAnime{
    0% { transform: translateY(45px)}
  100% { transform: translateY(-100%)}
}

.nav-info-bunner {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 1.2em;
  font-weight: bold;
  
}
.header .navbar-collapse {
  display: inline-block !important;
  float: right;
}


.balloonoya {
  position   : relative;                /* 指定した分だけ相対的に移動 */
}
.balloonoya:hover .balloon {
  display: inline;                /* インライン要素として表示 */
}
.balloon {
  position   : absolute;                /* 親要素を基準 */
  display: none;                        /* 要素を非表示 */
  padding: 2px;                         /* テキストの前後の余白 */
  background-color: rgba(102, 102, 255, 0.50);       /* 背景色（透明度） */
  width:800px;                          /* 吹き出し全体の幅 */
  left : 10%;                           /* 表示位置 */
  top : 100%;                           /* 表示位置 */
  margin-top : 12px;                    /* 表示位置 */
  font-size: 80%;                       /* 文字サイズ */
}
.balloon:after{
  border-bottom: 12px solid rgba(102, 102, 255, 0.50); /* 吹き出し口の高さ・色 */
  border-left: 10px solid transparent;    /* 吹き出し口の幅１／２ */
  border-right: 10px solid transparent;   /* 吹き出し口の幅１／２ */
  top: -12px;                             /* 吹き出し口の位置調整 */
  left : 5%;                              /* 吹き出し口の横位置 */
  content: "";                       /* コンテンツの挿入 */
  position: absolute;                /* 親要素を基準 */
}
.balloon {
    font-size: 14px;
    color: #333;
    background: #fff;
    border: solid 2px #211b7d;
    border-radius: 15px;
    opacity: 0.9 !important;
    z-index: 100 !important;
}