@charset "utf-8";

/*余白の消去*/
html,head,header,body{margin:0;padding:0;}
main{margin:0;padding:20px;}

/*ヘッダーのサイズ*/
header {
　  position: fixed;
    height: 85px;
    width: 100%;
    z-index: 90;
}

.hamburger-menu {
  display: inline;
  height: 0;
}

.title {
    display: block;
    font-size: 175%;
    text-align: center;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/*メニューボタン*/
.menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

/*メニューオープン時の処理*/
/*真ん中の横棒を透明に*/
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}

/*上の横棒を回転*/
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

/*下の横棒を回転*/
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/*チェックボックスの非表示*/
#menu-btn-check {
    display: none;
}

/*メニュー(画面外)*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定(メニューを滑らかに移動)*/
}

/*チェックボックスにチェックが付いたとき、メニューが表示される*/
#menu-btn-check:checked ~ .menu-content {
    right: 0;
}

.menu-content ul {
    padding: 70px 10px 0;
}

.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

/*文字を赤くする*/
.red {
    color: red;
}

.logo_space {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.logo {
  display: inline;
}

.twitter {
  color:#00acee;
}

.house {
  color: #000000;
}