@charset "UTF-8";

html{
  font-size: 100%;
}



body{
  background-color: #666666;
  font-family: serif,"游ゴシック";
  line-height: 1.6;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
}


/* 構造部分 */
.news-contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
/* 記事部分 */
article {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo{
  display: flex;
  justify-content: center;
  width:250px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;

}
.links{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 7px;

}
/* サイドバー */
aside {
    width: 50%;
}
h3{
  color:#e9e9e9;
  font-family: serif;

}
p{
  color:#e9e9e9;
  font-family: serif;
  font-size: 15px;
  text-align: left;
}


.container {
    display: flex;
    flex-wrap: wrap;
    font-family: serif;
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.item{
  background-color: #666666;
  color:#444444;
  margin:20px;
  padding:7px;
}
.item :visited{
  color:#e9e9e9;
}
.item :link{
  color:#e9e9e9
}

.item :hover{
  color:#eed13f;
  text-decoration:underline;
}
.item :active{
  color:#eed13f;
}

.title{
  color: #E9E9E9;
  font-family:serif;
  font-weight:bold;
}
.YouTube{
  margin:50px;
  display: flex;
  justify-content: center;
}

.cal{
  display: flex;
  justify-content: center;
  width:400px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

/*.2ndcolumn{
  margin-right: 20px;
}*/
/* フッタ- */

footer {
  background:#111111;
  text-align: center;
  padding;25px;
}
footer p {
  text-align: center;
}

/* For Mobile */
@media(max-width:600px){
  .news-contents{
    flex-direction: column;
  }
  article {
      width: 100%;
    }
  aside{
    width:100%;
  }

}
