/*=======ヘダーエリアのＣＳＳ=======*/

/*ヘダー箇所*/
header {
  width: 100%;
  position: fixed;  /*ウィンドウを基準に画面に固定*/
  top: 0;  /*上下の固定位置を上から0pxにする*/
  left: 0;  /*左右の固定位置を左から0pxにする*/
  z-index: 500;  /*ヘッダーエリアを最前面にする*/
  background-attachment: fixed;
  }

.header-area{
  width: 100%;
  background-color: #ffffff;
  }

.head01{
  display: flex;
  position: relative;
  max-width: 1200px;
  height: 80px;
  margin: auto;
}

.main-logo{
  font-size: 35px;
  color: #1d4bad;
  font-weight: bold;
  display: table;
  margin-top: 18px;
}

.main-logo:hover{
  opacity: 0.7;
}

.main-logo img{
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

.main-logo a{
  color: #1d4bad;
}

.main-logo a:hover{
  background-color: #ffffff;
  opacity: 0.7;
}

.main-logo h1{
  display: inline-block;
  padding-left: 10px;
  vertical-align: middle;
  color: #000000;
}

/*オプション説明エリア*/
.info_op{ 
  font-size: 12px;
  padding: 20px 20px 0 100px;
}

/*管理者ボタンエリア*/
.kanri-btn{ 
  position: absolute; 
  right: 15px;
  bottom: 26px;
}

/*管理者ボタン*/
.btn01 {  /*ＰＣ用管理者ボタン*/
    border: 0;
    padding: 4px 20px;
    font-size: small;
    text-align: center;
    color: #000000;
/*    text-shadow: 1px 1px 1px #000;*/
    border-radius: 10px;
    background-color: #84c1ff;
}

.btn01:hover {
    background-color: #51a8ff;
}

.btn01:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
                inset 2px 2px 3px rgba(0, 0, 0, .6);
}

.btn02{  /*スマホ用管理者マーク*/
  display: none;
}

/*ページの使い方ボタンエリア*/
.howto_page-btn {
  display: flex;
  position: absolute;
  right: 160px;
  bottom: 13px;
}

.btn03 {  /*ページの使い方マーク*/
  font-size: 10px;
  text-align: center;
}

.btn03:hover {
  opacity: 0.7;
}
  
.btn03 img {
  width: 45px;
  height: 36px;
}

.btn03 a {
  color: #000000;
}

@media screen and (max-width: 480px){
.main-logo h1{
  font-size: 22px;
  display: inline-block;
}
}

/* 23.4.24*/ 
@media screen and (max-width: 660px){
/*@media screen and (max-width: 480px){*/
.head01{
  height: 50px;
}

.main-logo img{
  display: inline-block;
}


.main-logo{
  margin-top: auto;
}

.btn01{
  font-size: xx-small;
  display: none;
}

.btn02{
  display: block;
}

.btn02 img{
  width: 16px;
  height: 26px;
}

.kanri-btn{
  bottom: 8px;
}
}

/*23.4.24*/
@media screen and (max-width: 768px){
/*@media screen and (max-width: 480px){*/
.head01{
  justify-content: center;
}

.btn03{
  display: none;
}

.main-logo img{
  display: inline-block;
  margin: auto;
  width: 40px;
  height: 40px;
}

.kanri-btn{   /*管理者ボタンエリア*/
  float: right;
}

.main-logo h1{
  display: inline-block;
}

/*オプション説明エリア*/
.info_op{ 
  display: none;
}
}

