body {
    background: url("../img/pict/back_sea.jpg");
    background-size: cover;
    background-color:rgba(255,255,255,0.4);
    background-blend-mode:lighten;

    font-size: large;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.content {
    flex: 1;
    padding: 20px;
    overflow: auto;
    text-align: center;
}

#footerFrame {
    border: 0px;
    width: 100%;
    height: 170px;
}
/*
.rules {
    color: black;
    .rules-title {
        font-size: 30px;
        font-weight: bold;
    }
}
*/

.title-text {
    font-size: 75px;
    color: white;
    font-weight: bold;
    text-shadow: 5px 5px 5px #000000;
    vertical-align: top;
}

.header-area {
    display: flex;
    justify-content: space-between;
}

.header-menu-area {
    display: flex;
    justify-content: space-between;
}

.header-menu {
    text-align: center;
    line-height: 90px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: skyblue;
    color: black;
    font-size: 20px;
    margin: 5px;
}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}
  
/* メニューのデザイン*/
.nav_content {
  width: 120px;
  height: 100%;
  position: fixed;
  bottom: 150%;
  right: 0%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: transparent;
  transition: .5s;
  text-align: center;
  padding-top: 20px;
}

.menu-first {
  margin-top: 15px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 0;/* メニューを画面に入れる */
  
}
