@charset "utf-8";


/*企画用*/
.textcolor{
  color: #cc8800;
}
.new_red{
  font-size: 80%;
  background: #e80000;
  color: #fff;
  padding: 2px 3px 1px 3px;
  margin-left: .2rem;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  line-height: 1rem
}

/*ナビゲーションの固定*/
.kotei{
  /*stickyで固定*/
  position: -webkit-sticky;/*Safari*/
  position: sticky;
  /*固定したい位置*/
  top: 10px;
}
/*レイアウトのためのCSS*/
#container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto
}
#main-area{
  width:74%;
}
#sub-area{
  width:22%;
  padding: 0px 0px 0px 0px;
  letter-spacing: normal;
}


/*768px以下の見え方*/
@media screen and (max-width:768px){
  #main-area{
    width:100%;
    padding: 15px;
  }
  #sub-area{
    width:100%;
    padding: 15px;
  }
  .kotei{
    position:relative;/*stickyからrelativeに戻す*/ 
      top:0;
  }
}

/* サイドメニュー */
.side-menu .head:hover{
  position: relative;
  padding: 10px 5px 7px 10px;
  color: #96c636;
  background-color: #ffffff;
}
.side-menu .head .title {
  position: relative;
  z-index: 1
}
.side-menu .head {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 50px;
}


