@charset "utf-8";

#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 100%;
   padding:0;
   margin:0;
   font-size: 50px;
   border: 1px solid #ffffff;
}

#sp-fixed-menu li:first-child{
   background: #670301;
}

#sp-fixed-menu li:nth-child(2){
   background: #323332;
}

#sp-fixed-menu li:last-child{
   background: #670301;
}

#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 83%;
   padding:30px;
}

@media (min-width: 1000px) {
   .for-sp{
      display:none;
    }
}

.menu-btn {
    position: fixed;
	border-radius: 0px;
    top: 0px;
    right: 0px;
    display: flex;
	opacity: 1;
    height: 120px;
    width: 120px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #510708;
}

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

#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: #3584bb;
}
.menu-content ul {
    padding: 70px 10px 0;
}

.menu-content ul li {
    border-bottom: solid 1px #510708;
    list-style: none;
}

.menu-content ul li a {
    font-family: 'Open Sans', sans-serif;
    display: block;
    width: 100%;
    font-size: 42px;
    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 #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #ffffff;
    transition: all 0.2s;/
}

#menu-btn-check:checked ~ .menu-content {
    left: 60%;
}

@media (min-width: 1000px) {
   .menu-btn{
      display:none;
    }
}a:link {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a:visited {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a:active {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}

#demo-1{
    overflow: hidden;
    width: 100%;
    min-height: 600px;
    background-color: #999;
}