/* リセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* リセット END */
.coution{
  font-weight: bold;
  color: red;
}
#header {
  overflow: hidden;
}

#header_inner {
  position:absolute;
  top: 0;
  left: 0;
  height:60px;
  width: 100%;
  background-color: #FFFFFF;
}

#header_bottom {
  margin-top:60px;
}

h1#logo {
  padding-top:10px;
  text-align: center;
}


h1#top {
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #E5E5EF;
  border-bottom: 1px solid #E5E5EF;
}

h1#top img {
  height:180px;
}

a:hover {
  color:#E5E5EF;
}

main.page {
  margin: 30px auto 0 auto;
  max-width: 1000px;
}

section.new_contents  {
  padding-top: 20px;
  margin-bottom: 80px;
}

.tbl {
  width: 90%;
  margin: 0 auto;
}

th,td {
  border: solid 1px #222222;
  text-align:  center;
  vertical-align: middle;
  height: 32px;
}

td.title {
  text-align:  left;
}

th {
  color:#E5E5EF;
  background-color: #222222;
  font-weight: bold;
  font-size:18px;
}

td {
  font-size: 16px;
}

.tbl .title {
  width:40%;
}
.tbl .title:before {
  content: '　';
} 

.tbl .release {
  width:20%;
} 

.tbl .patch {
  width:20%;
} 

.lang_icon {
  padding-top:10px;
  width: 80px;
  height: 40px;
}

#footer {
  margin-top: 100px;
  background-color: #E5E5EF;
  text-align: center;
}

#footer_inner {
  padding-top: 10px;
  height: 70px;
  vertical-align: middle;
}

#footer_bottom {
  height: 30px;
  vertical-align: middle;
}





.menu {
  position:absolute;
  top: 0;
  right: 0;
  height: 50px;
  max-width: 200px;
  margin: 0 auto;
}

.menu > li {
  float: left;
  width: 100%;
  height: 50px;
  line-height: 50px;
}

.menu > li a {
  display: block;
  color: #000000;
}

.menu > li > ul > li a {
  color: #565656;
  text-decoration: none;
}

.menu > li > ul > li a.selected {
  color: #ffffff;
  background-color: #3c3c3c;
}

.menu > li > ul > li a:hover {
  color: #ffffff;
  background-color: #000000;
}

.menu_lang {
  pointer-events: none;
}

.lang_icon,
.menu_lang_sub  {
  pointer-events: auto;
}

.menu_lang_sub {
  max-height: 0;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.lang_btn {
  text-align: right;
  width: 150px;
}

.lang_btn:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
}


.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

.menu > li.menu_lang {
  position: relative;
}

li.menu_lang ul.menu_lang_sub {
  position: absolute;
  top: 61px;
  width: 100%;
  background: #E5E5EF;
}

li.menu_lang:hover ul.menu_lang_sub {
  max-height: 300px;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

ul.menu_lang_sub li a:before {
  content: '　';
}

.is_fixed {
  z-index: 2;
  box-shadow: 0px 4px 4px 0px #E5E5EF;
}

.down_move {
  animation: downAnime 0.5s forwards;
}
@keyframes downAnime{
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}

.up_move{
  animation: upAnime 0.5s forwards;
}

.listhead{
  text-align: center;
  font-size: 30px;
  font-style: bold;
}

@keyframes upAnime{
  0% {
    transform: translateY(0);
  }
  99% {
    transform: translateY(-100px);
  }
  100% {
    position: absolute;
    z-index: 0;
  }
}


@media screen and (max-width: 768px) {

  h1#top img {
    width:400px;
    height: 70px;
  }

  main.page {
    margin-top: 20px;
  }

  section.new_contents  {
    margin-bottom: 40px;
  }

  th {
    font-size:14px;
  }
  
  td {
    font-size:13px;
  }

  #footer {
    margin-top: 60px;
  }

}