/* CSS Document */

a{text-decoration:none;}
.clear{clear:both;}
.red{color:red;}
.blue{color:blue;}

#container {
	max-width:920px;
	//min-width:375px;
	padding:10px 0;
	margin:0 auto;
	font-weight:bold;
}

#header {
	width:100%;
	padding:20px 0;
	background-color:#DDDDDD;
	
}

#header-contents{
	max-width:920px;
	//min-width:375px;
	padding:0 10px;
	margin:0 auto;
	color:#ba1637;
	font-weight:700;
}

#main-title{
	margin-bottom:0;
	color:#ba1637;
}

#sub-title{
	font-weight:normal;
}


#Liquidhack{
	border-top:1px solid #7EB4FF;
	border-bottom:1px solid #7EB4FF;
	color:#076600;
	text-decoration:underline #076600;
	padding:10px 0;
	margin:10px auto;
}

#top-info{
	margin:10px auto;
	padding:10px 0;
}

#opentime{
	border-top:1px solid #7EB4FF;
	border-bottom:1px solid #7EB4FF;
	padding:10px 0;
	margin:10px auto;
	text-align:center;
}

#access{
	max-width:920px;
	//min-width:360px;
	padding:0 10px;
	margin:0 auto;
	padding:20px 0;
	
}


#footer{
	width:100%;
	padding:20px 0 10px;
	border-top:1px solid #AAAAAA;
}

#footer-contents{
	max-width:920px;
	//min-width:360px;
	padding:0 10px;
	margin:0 auto;
	text-align:center;
}

#map_container{
	margin:0 auto;
	width:100%;
	//max-width:640px;
}

#map{
	width:48%;
	margin:0 auto;
}

.table-scroll{
  overflow: auto;
  white-space: nowrap;
  width:100%;
}

.table-scroll::-webkit-scrollbar{
 height: 5px;
}
.table-scroll::-webkit-scrollbar-track{
 background: #333;
}
.table-scroll::-webkit-scrollbar-thumb {
 background: #999;
}

.table-scroll table{
  border-collapse:collapse;
  border-spacing:0;
  border-top:#ccc solid 1px;
  border-left:#ccc solid 1px;
}
.table-scroll table th,
.table-scroll table td{
  padding:10px 15px;
  //font-weight:normal;
  border-right:#ccc solid 1px;
  border-bottom:#ccc solid 1px;
  //font-size:12px;
}
.table-scroll table th{
  background:#eee;
  width:80px;
}

table{margin:0 auto;}


@media screen and (min-width:381px){
#top-menu{
	width:100%;
	padding:10px 0;
	border-top:1px solid #AAAAAA;
	border-bottom:1px solid #AAAAAA;
}

#top-menu-contents{
	max-width:920px;
	//min-width:375px;
	padding:0 10px;
	margin:0 auto;
}
#top-menu-contents::after{
	clear:both;
	display:block;
	content: "";
}
ul,ol{
	list-style:none;
	margin:0;
	padding:0;
}

li{
	width:150px;
	padding:10px 0;
	float: left;
	text-align:center;
}

	.hamburger-menu{display: none;}
}

@media screen and (max-width:380px){
	#top-menu,#hide-menu{
		display: none;
}

ul,ol{
	list-style:none;
	margin:0;
	padding:0;
}

#top-menu-contents{
	max-width:920px;
	//min-width:375px;
	padding:0 10px;
	margin:0 auto;
}
#top-menu-contents::after{
	clear:both;
	display:block;
	content: "";
}

/*menu*/
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgb(140 140 140 / 50%);
}
.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;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.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:#ba1637;
    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: #DDDDDD;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* /menu */



}