@charset "utf-8";
*{
    margin: 0;
    padding: 0;
}

body{
    font-family: sans-serif;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: none;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #000000;
    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;
    left: 0;
    z-index: 80;
    background-color: #000000;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #000000;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#000000;
    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 #000000;
    border-right: solid 2px #000000;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #ffffff;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}


.relative{
    margin: -10px;
    position: relative;
    top: -23px;
}
.absolute{
    position:absolute;
    right: 5px;
    bottom: 300px;
}
.absolute2{
    position:absolute;
    right: -7px;
    bottom: -110px;
}
.setumei{
    position: absolute;
    top: 730px;
    left: 95px;
    font-size: 15pt;
    text-align: center;
}
.setumei2{
    position: absolute;
    top: 810px;
    left: 65px;
    font-size: 10pt;
    text-align: center;
}
.relative2{
    margin: -10px;
    position: relative;
    top: 110px;
}
.absolute3{
    position:absolute;
    right: 0px;
    top: 90px;
}
.absolute4{
    position:absolute;
    right: 50px;
    top: 300px;
}

.absolute5{
    position: absolute;
    right: 10px;
    top: 610px;
}
.mosi{
    position: absolute;
    top: 430px;
    left: 50px;
    font-size: 10pt;
    text-align: center;
    
}
.mosi2{
    position: absolute;
    left: 80px;
    top: 680px;
    font-size: 10pt;
    text-align: center;
}