@charset "UTF-8";
/******************/
/*   mainVisual   */
/******************/
#mainVisual img {
  width: 100%;
}

/******************/
/*     about     */
/*****************/
#about .content {
  margin-bottom: 50px;
}
#about .content article {
  display: inline-block;
  margin-top: 30px;
}

/******************/
/*      news      */
/******************/
.info-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fdfdfd;
  border-left: 6px solid #77d2d9;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.info-section h2 {
  font-size: 1.4em;
  margin-bottom: 16px;
  color: #333;
  padding-left: 8px;
  border-left: 4px solid #f9b244;
}
.info-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-section .info-list li {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px dashed #ddd;
}
.info-section .info-list li:last-child {
  border-bottom: none;
}
.info-section .info-list li .info-date {
  font-weight: bold;
  width: 120px;
  color: #777;
  flex-shrink: 0;
}
.info-section .info-list li .info-text {
  flex: 1;
  color: #333;
}
@media screen and (max-width: 768px) {
  .info-section .info-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-section .info-list li .info-date {
    width: auto;
    margin-bottom: 4px;
  }
  .info-section .info-list li .info-text {
    width: 100%;
  }
}

/******************/
/*    bracket     */
/******************/
#bracket {
  /* メニューバー用 */
  margin-top: -100px;
  padding-top: 100px;
}
#bracket .bracket_post_wrap {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}

/******************/
/*     result     */
/******************/
#result article {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}
#result article .result_post_wrap {
  text-align: center;
  margin-bottom: 20px;
}

.title_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.title_wrap .title_box {
  display: flex;
  align-items: center;
}
.title_wrap .title_box img {
  width: 25px;
  height: 25px;
  margin: 0 10px;
}
.title_wrap .title_box h1 {
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
}

.post_title {
  font-weight: bold;
}

.table .content {
  margin-bottom: 50px;
}
.table .content article {
  display: inline-block;
  width: 100%;
  margin-top: 50px;
}
.table .content article img {
  width: 100%;
}
.table .content article .note {
  margin-bottom: 30px;
}
.table .content article p {
  margin-bottom: 10px;
}

/******************/
/*    single     */
/*****************/
#single article {
  display: inline-block;
  width: 100%;
  margin-top: 50px;
}
#single article .single_content {
  width: 70%;
  padding-right: 10px;
  float: left;
}

#aside {
  width: 30%;
}