html,body{
  margin: 0px;
  /* margin-bottom: 50px; */
  font-family: 'Zen Maru Gothic', sans-serif;
  height: 100%;
  }

/* PC画面用外枠 */
.pc_back{
  margin: 0px;
  background-color: #f3e1f3;
  }

.left-menu {
  overflow-y: auto;
  height: 100vh;
}

.left-menu form {
  margin: 0;
}

.alert {
    text-align: center;
    color: rgb(212, 0, 0);
  }

.inner{
  padding-left: 0px;
  }

/* header用css */
.header_area{
  display: flex;
  background-color: #DCC2DC;
  padding: 10px;
  position: relative;
  }

  /* ヘッドロゴエリア */
  .head_logo_area{
    margin-left:auto;
    margin-right: auto;
    }

    .head_logo {
      font-size: 50px;
      color: white;
      font-weight: 900;
    }

    .head_logo_link {
      text-decoration: none;
    }
    /* ハンバーガーメニューアイコンエリア */
    .menu_icon_area{
      margin: 10px;
      position: absolute;
      left: 1%;
      top: 12%;
      }

      /* ハンバーガーメニューアイコン */
      .menu_icon{
        background-image: url(/layout/menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* アイコンサイズ設定 */
        width: 45px;
        height: 45px;
        }

    /* 通知ボタンアイコンエリア */
    .notification_icon_area{
      margin-top: 10px;
      margin-right:10px;
      }
      /* 通知ボタンアイコン */
      .notification_icon{
        background-image: url(/layout/通知アイコン.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* アイコンサイズ設定 */
        width: 45px;
        height: 45px;
        }


/* ハンバーガーメニュー用 */

/* ハンバーガーメニュー内の×ボタン */
.batsu {
  cursor: pointer;
  display: block;
  position: relative;
  width: 30px;
  height: 30px;

  margin-left: auto;
  margin-right: 40px;
}

/* ハンバーガーメニュー内の×ボタン */
.batsu::before, .batsu::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 24px; /* 棒の高さ */
  background: white;
}

/* ハンバーガーメニュー内の×ボタン */
.batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

/* ハンバーガーメニュー内の×ボタン */
.batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* ハンバーガーメニュー本体 */
  #humCheck, #humClose { display:none; }
  #humOpen {
    display: block;
    /* width: 58px; */
    cursor: pointer;
  }
  #humOpen:hover {
    opacity: 0.5;
  }
  #humOpen img { display: block; }
  #humClose, nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
  }
  #humClose {
    z-index: 2;
    width: 100%;
    background: gray;
    opacity: 0.8;
    transition: 0.5s;
  }
  nav {
    z-index: 3;
    width: 330px;
    background: white;
    transition: 0.5s;
    transform: translateX(-100%);

    background-color: #DCC2DC;
  }
  #humCheck:checked ~ #humClose { display: block; }
  #humCheck:checked ~ nav {
    transform: translateX(0);
  }

  nav ul{
  overflow: hidden;
  list-style: none;
  }
  nav li{
    padding: 15px 0;
    margin: 10px 0;
  }
  nav li:hover{
    opacity: 0.5;
  }
  nav li a{
    font-size: 20px;
    text-decoration: none;
    font-size: 15px;
    color: black;
  }
  /* メニュー内のボタンデザイン */
  .menuButton{
    cursor: pointer;
    background-color: white;
    border-radius: 50px;
    width: 230px;
    padding-left: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  /* メニュー内のボタンデザイン ログアウト用*/
  .menuButton_logout{
    cursor: pointer;
    background-color: #DCC2DC;
    border: 1.5px solid white;
    border-radius: 50px;
    text-align: center;
    width: 178px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top:  70px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }


/*　画面サイズが480pxからはここを読み込む　*/
@media screen and (max-width: 480px) {
  /* ハンバーガーメニューアイコン */
  .menu_icon{
    /* アイコンサイズ設定 */
    width: 30px;
    height: 30px;
  }
  
  /* 通知アイコンデザイン */
  .notification_icon_area {
    margin-top: 0px;
    margin-right: 0px;
  }

  .menuButton {
    width: 180px;
    margin: 15px auto;
  }
  
  .menuButton_logout {
    width: 180px;
    margin: 30px auto;
  }

  nav{
    width: 285px;
  }

  /* pc用の横背景削除 */
  .pc_back{
    /* display: none; */
  }

  
}

@media (max-aspect-ratio: 10/9) {
  .header_area {
    padding: 15px;
  }

  .head_logo {
    font-size: 25px;
  }
}
