body {
       width:1250px;
       margin:auto;
}

h1{
    font-size:30px;
}

h2{
    font-size:25px;
    padding:0.5px; 
    margin-left:40px;
    color: #232323;
    background-color: #93FFAB;
    display:inline;
    border-left: solid 10px #00FF3B;
}

h3{
    font-size:20px;
    background: linear-gradient(transparent 80%, #D0FF43 80%);
    display:inline;
    margin-left:40px;
}

/* 文字のCSS*/
p{
    margin-left:40px;
}

/* 画像のCSS*/
img{
    margin:10px 0;
    width:582.5px;
    height:380px;
}

/* 縦画像のCSS*/
p.tate img{
    width:430px;
    height:500px;
}

/* 動画のCSS */
video{
    width:600px;
}

/* 一番下の「トップに戻る」のCSS */
.top{
    font-size:20px;
    padding:0.5px 20px;
    margin:5px 0;
    color: #000000;
    background: #00FF00;
    border-radius: 15px;
}

/* 表のCSS */
table {
    margin-bottom:30px;
    border-collapse: collapse;
    text-align: center;
    width:600px;
}

td {
    padding: 5px;
    border: 1px solid #000000;
}

/* 上のバーのCSS */
menu{
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 1000px;
}
.menu > li {
    float: left;
    width: 19.3%; 
    height: 50px;
    line-height: 50px;
    background: #00AA00;/*メインの背景色*/
}
.menu > li a {
    display: block;
    color: #FFFFFF;/* 文字部分の色 */
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu__second-level li {
    border-top: 1px solid #33FF33;/*展開時のラインの色*/
}

.menu__second-level li a:hover {
    background: #007700;/*展開時のホバーしたときの色*/
}

.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;/*多分矢印の色*/
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

.menu:before,
.menu:after {
    content: " ";
    display: table;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #00AA00;/*展開された後の色*/
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

li{
    list-style: none;
}