/* small screens */

body {
  background: #f8f8f8;
  font-size: 14px;
  font-family: verdana,sans-serif;
  margin: 0;
  color: #333;
}

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

body > section {
  padding: 60px 0;
}

body > section:nth-of-type(odd) {
  background: #fff;
}

.section-title {
  text-align: center;
  font-weight: normal;
  margin: 0 0 20px;
}

header h1 {
  font-size: 28px;
  font-weight: normal;
}

#top_link {
  height: 100px;
  align: center;
}

#menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  display: none;
}

#menu.shown {
display: block;
}

#menu ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}

#menu li {
  line-height: 2;
}

#menu a {
  text-decoration: none;
  color: inherit;
}

#open_menu {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

#close_menu {
  padding: 15px;
  float: right;
  cursor: pointer;
}


.topnews .flex {
  display: flex;
  flex-wrap:nowrap;
  justify-content: space-between;
  align-items: center;
}

.topnews-item {
  padding-right: 5px;
  overflow: visible;
}

.news .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-item {
  width: 128px;
  padding-right: 5px;
  overflow: visible;
}

.news-item img {
  width: 128px;
  height: 96px;
  overflow: visible;

}

.news-item:not(:last-child) {
  margin-bottom: 60px;
}

.how-to-use iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*
100% : x% = 16 : 9
x% = 9 * 100% / 16 = 56.25%
*/

.how-to-use .iframe-wrapper {
  /* background: pink; */
  /* おや領域の幅に対しての割合 */
  /* padding-bottom: 25%; */
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
}

footer {
  text-align: center;
  padding: 60px 0;
  color: #ccc;
}
}

/* medium screens */

@media (min-width: 570px) {

  }


/* large screens */

@media (min-width: 912px) {

  .container {
    width: 820px;
  }

  #open_menu {
    display: none;
  }

  #close_menu {
    display: none;
  }

  #menu {
    display: block;
    position: static;
    background: transparent;
    color: #333;
  }

  #menu ul {
    padding: 0;
    float: right;
  }

  #menu li {
    display: inline-block;
    width: 60px;
    text-align: center;
  }
}
