
/* 
***************************
** モバイルスクリーン    **
*************************** 
*/
  body{
    margin: 0;
  }
  .page_top_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-weight: bold;
    padding: 0.7em;
    text-align: center;
    background: rgb(255, 0, 0);
    color: #fff;
    transition: 0.3s0;
  }

  .page_top_btn:hover {
    background: rgb(255, 0, 0, 0.8);
    color: rgb(255, 255, 255, 0.8);
  }

  .header{
    display: flex;
    flex-direction: row;
    background-image: url("../lib/img/headerPhoto.png");
    background-position: center;
    background-size: cover;
    height: 120px;
    justify-content: center;
  }
    .header > div{
      flex-direction: row;
      align-self: center;
    }
    .header > div > img{
      display: none;
    }
    .header > div > div > p{
      margin-top: 0;
      margin-bottom: 0;
      margin-left: 10px;
    }
    .officeName{
      margin-top: 0;
      margin-bottom: 0;
      font-size: 20px;
    }
    .mapTytle{
      display: none;
    }
  .menu{
    background-color: aqua;
  }
    .menu>ul{
      margin: 0;
      padding: 5px;
      list-style-type: none;
    }
    .menu>ul>ul{
      padding-left: 15px;
      list-style-type: none;
    }
    .menu>ul>ul>ul{
      padding-left: 10px;
      list-style-type: none;
    }
    .menu>ul>.item>a{
      background-color: aqua;
      border: none;
      text-decoration: none;
      font-weight: bold;
      color: black; 
    }
    .menu>ul>.item>a:hover{
      background-color: purple;
      border: none;
      text-decoration: none;
      color: aqua; 
    }
    .menu>ul>ul>.item>a{
      background-color: aqua;
      border: none;
      text-decoration: none;
      font-weight: bold;
      color: purple;
    }
    .menu>ul>ul>.item>a:hover{
      background-color: purple;
      border: none;
      text-decoration: none;
      color: aqua;  
    }
    .menu>ul>ul>ul>.item>a{
      background-color: aqua;
      border: none;
      text-decoration: none;
      color: purple;
    }
    .menu>ul>ul>ul>.item>a:hover{
      background-color: purple;
      border: none;
      text-decoration: none;
      color: aqua; 
    }

  .mein{
    background-color: whitesmoke;
  }
    .mein > h1{
      padding-left: 5px;
      font-size: 24px;
      border-bottom: solid 1px purple;
    }
    .mein > h2{
      margin: 2px;
      padding-left: 5px;
      font-size: 18px;
      border-bottom: solid 1px purple;
      border-left: solid 5px purple;;
    }
    .mein > h3{
      margin: 5px;
      padding-left: 5px;
      font-size: 18px;
      border-left: solid 5px purple;;
    }
    .mein > h4{
      margin: 10px;
      margin-bottom: 0px;
      margin-right: 30px;
      padding-left: 5px;
      padding-bottom: 0px;
      border-bottom: solid 1px purple;
    }
    .mein > p{
      margin-top: 10px;
      margin-bottom: 20px;
      margin-left: 10px;
      margin-right: 15px;
    }
  #map{
    display: none;
  }
  .aside{
    display: none;
  }

  .footer{
    height: 55px;
    background-color: purple;
    margin-bottom: 50px;
  }
    .footer > div>  p{ 
      margin-top: 0px;
      margin-bottom: 0px;
      margin-left: 10px;
      background-color: purple;
      color: aqua;
      font-size: 12px;
    }
    .footer > div> p > a{ 
      background-color: purple;
      color: aqua;
      font-size: 12px;
    }
@media (min-width: 450px) {
  .header > div > img{
    display: flex;
    height: 100px;
  }
}

/* 
***************************
** タブレットスクリーンA **
*************************** 
*/
@media (min-width: 800px) {
  html{
    height: 100%;
  }
  body{
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .page_top_btn{
    display: none;
  }
    .header{
      width: 100%;
      height: 16%;
      justify-content: center;
      font-size: 16px;
    }
      .header > div{
        display: flex;
      }
      .header > div > img{
        height: 100px;
        margin-left: 60px;
      }
      .header > div > div > p{
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 30px;
      }
      .officeName{
        font-size: 24px;
      }

    .container{
      display: flex;
      flex: 1;
      height: 78%;
    }
    .footer{
      margin: 0;
      height: 6%;
      display: flex;
      justify-content: end;
    }
      .footer > div>  p { 
        margin-right: 30px;
      }
      .footer > div> p > a {
        
      }
      .menu{
        margin-left: 0;
        font-size: 18px;
        flex-direction: column;
        width: 400px;
        overflow: auto;
      }
      .mein{
        font-size: 20px;
        flex: 1;
        overflow: auto;
      }
}
/* 
***************************
** タブレットスクリーンb **
*************************** 
*/
@media (min-width: 1179px) {
  .header{
    font-size: 20px;
  }
    .header > div{
      display: flex;
    }
    .header > div > img{
      height: 100px;
      margin-left: 60px;
    }
    .header > div > div > p{
      margin-top: 0;
      margin-bottom: 0;
      margin-left: 60px;
    }
    .officeName{
      font-size: 28px;
    }



}

/* 
***************************
** ＰＣスクリーン        **
*************************** 
*/
@media (min-width: 1350px) {
  
  .aside{
    display: flex;
    width: 400px;
    height: 100%;
  }
}