html {
background: #000000;/*背景色*/
}

img {
    width: 100%;
   
}

div {
background-image: url(kaikis.jpg);
background-repeat:no-repeat;
background-size:contain;
background-position:center center;
background-attachment:fixed;
}


table {
	border-collapse: collapse;
            
        color: #ffffff;
}
 
#top {
font-size:50px;
  font-weight: bold;
  color:#c70067;
 text-align: center;
}

#top1 {
font-size:35px;
  font-weight: bold;
  color:#fdd35c;
}


#top2 {
font-size:25px;
font-weight: bold;
  color:#fffff9;
}

#top3 {
font-size:12px;
font-weight: bold;
  color:#fffff9;
}

#top4 {
font-size:15px;
font-weight: bold;
  color:#fffff9;
}



.midasi {
  font-size: 20px;
  font-weight: bold;
  color:#bcffff;
  text-align: center;
}

.title {
  font-size: 15px;
  font-weight: bold;
  color:#afafb0;
  text-align: center;
}

.kou {
   color:#ea618e;
   font-weight:bold;
   text-align:right;
}

.rink {
background-color: #000000;  /* 背景色指定 */
font-size: 17px;
  font-weight: bold;
  color:#990033;
  text-align: center;
}

a {
text-decoration:none;
}

a:link {
color:#f9ffff;
} /*アクセスしたことのないリンク*/

a:visited {
color:#bcffff;
} /*アクセスしたことのあるリンク*/

a:hover { 
color:#ffe0ff;
text-decoration:underline;
} /*マウスが上に乗っている状態*/

a:active {
color:#f9ffff;
} /*クリック中*/




.footer {
        border: solid 1px #000000;
        height:10%;
        background:#000000;
        font-size:13px;
        color:#ffffff;
        text-align:center;
}



@media screen and (max-width:600px) { 
	.split-box {
		position:relative;
		width:100%;
		
 
	}
}

/*ハンバーガーメニュー*/


#burgermenu {
    background-color: #202020; /*メニュー背景色*/
    box-sizing: border-box;
    height: 30%;
    padding: 1px 1px; /*メニュー内左右上下余白*/
    position: fixed;
    right: -200px; /*メニュー横幅 width と合わせる*/
    top: 0;
    transition: transform 0.2s linear 0s; /*0.2s はアニメーションにかかる時間*/
    -webkit-transition: -webkit-transform 0.2s linear 0s; /*0.2s はアニメーションにかかる時間*/
    width: 200px; /*メニュー横幅*/
    z-index: 1000;
}

#ham-top{
     font-size: 15px;
     background-color:#f8f8ff;
     font-weight: bold;     
}

#ham-info {
     font-size: 15px;
     background-color:#66cdaa;
     font-weight: bold;
}
     
#ham-story {
     font-size: 15px;
     background-color:#dc143c;
     font-weight: bold;
}

#ham-colum {
     font-size: 15px;
     background-color:#1e90ff;
     font-weight: bold;
}


#ham-comunity {
     font-size: 15px;
     background-color:#ffd700;
     font-weight: bold;
}




#menu-background {
    background-color: #333; /*黒背景*/
    display: block;
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all 0.2s linear 0s; /*0.2s はアニメーションにかかる時間*/
    transition: all 0.2s linear 0s; /*0.2s はアニメーションにかかる時間*/
    width: 100%;
    z-index: -1;
}

#menu-icon {
    background-color: #202020; /*アイコン部分背景色*/
    border-radius: 0 0 0 10px; /*左下角丸*/
    color: #f8f8ff; /*アイコン≡（フォント）色*/
    cursor: pointer;
    display: block;
    font-size: 25px; /*アイコン≡（フォント）サイズ*/
    height: 25px; /*アイコン縦高さ*/
    line-height: 25px; /*縦位置中央化*/
    position: fixed;
    right: 0;
    text-align: justify;
    top: 0;
    width: 25px; /*アイコン横幅*/
    -webkit-transition: all 0.2s linear 0s; /*0.2s はアニメーションにかかる時間*/
    transition: all 0.2s linear 0s; /*0.2s はアニメーションにかかる時間*/
    z-index: 1000;
}

#menu-cb {
    display: none; /*チェックボックス本体は消しておく*/
}

#menu-cb:checked ~ #burgermenu,
#menu-cb:checked ~ #menu-icon {
     -webkit-transform: translate(-200px); /*メニュー本体横幅 width と合わせる*/
    transform: translate(-200px); /*メニュー本体横幅 width と合わせる*/
}

#menu-cb:checked ~ #menu-background {
    opacity: 0.5;
    z-index: 999;
}

/*ここまでハンバーガーメニュー↑ */