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

img {
    width: 100%;
    height: auto;
}




table {
	border-collapse: collapse; 
        color: #B6E599;
        font-size:12px;
}
 
ul li {
                         
  color: #e8ece9;        /*ulの中のliの文字色を変える*/
  font-weight: bold;
  font-size: 17px;
}



#top {
font-size:40px;
  font-weight: bold;
  color:#2e8b57;
text-align: center;
}

#top1 {
font-size:20px;
  font-weight: bold;
  color:#2e8b57;
}


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

#top3 {
font-size:15px;
font-weight: bold;
  color:#fafad2;
}

#top4 {
font-size:20px;
font-weight: bold;
  color:#a69425;
}

#top5 {
font-size:15px;
font-weight: bold;
  color:#000000;
}

#comment {
  background-image: url("kaiki.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

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

.midasi2 {
  font-size: 12px;
  color:#bcffff;
  line-height: 1
}

.midasi2:hover {
color:#ffe0ff;
}

.midasi3 {
  font-size: 17px;
  font-weight: bold;
  color:#e8ece9;
  text-align: center;
}


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

textarea{
width: 100%;
  height: 160px;
  font-size: 15px;
}


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 #B6E599;
        height:10%;
        background:#B6E599;
        font-size:13px;
        color:#000000;
        text-align:center;
}



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

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

#burgermenu {
    background-color: #202020; /*メニュー背景色*/
    box-sizing: border-box;
    height: 30%;
    padding: 1px 1px; /*メニュー内左右上下余白*/
    position: fixed;
    right: -200px; /*メニュー横幅 width と合わせる*/
    top: 0;
    -webkit-transition: -webkit-transform 0.2s linear 0s; /*0.2s はアニメーションにかかる時間*/
    transition: 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;
}
/*ここまでハンバーガーメニュー↑*/