@charset "utf-8";

/*----------------------------------------------------------------------------------------------------

  welcome
  
----------------------------------------------------------------------------------------------------*/

#welcome .friends-title {
  margin-top: 2em;
  padding: 1em;
  box-sizing: border-box;
  background-color:#006600;
  color:#ffffff !important;
  text-align: center
}

#welcome .friends-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#welcome .friends-box {
  width: calc(25% - 12px);
  box-sizing: border-box;
  margin-right: 16px;
  margin-bottom: 16px;
}
#welcome .friends-box:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width:600px) {
  #welcome .friends-box {
    width: calc(50% - 8px);
  }
  #welcome .friends-box:nth-child(even) {
    margin-right: 0;
  }
}
#welcome .friends-box h3 {
  color: #009900 !important;
  text-align: center;
}
#welcome .friends-box figure {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  text-align: center;
}
#welcome .friends-box figure img {
  width: 100%;
  max-width: 142px;
  height: auto;
}
#welcome .friends-box figure figcaption {
  margin-top: 1em;
  text-align: left;
}


/*----------------------------------------------------------------------------------------------------

  access
  
----------------------------------------------------------------------------------------------------*/

#access .media {
  display: block;
  text-align: center;
}


/*----------------------------------------------------------------------------------------------------

  guide
  
----------------------------------------------------------------------------------------------------*/

#guide .loadmap {
  display: flex;
  justify-content: space-between;
}

#guide .loadmap figure,
#guide .loadmap dl {
  display: block;
  width: calc(50% - 8px);
}

#guide .loadmap figure img {
  width: 100%;
}

#guide .loadmap dl dt {
  color: #009900;
}
#guide .loadmap dl dd {
  font-size: 87.5%;
  padding: 0;
  margin: 0 0 1em;
}

#guide .loadmap dl dd .notes {
  font-size: 87.5%;
  margin-bottom: 0;
}

#guide .bodyandbrain h2 {
  text-align: center;
  font-size: 100%;
  color: #ff6900 !important;
}
#guide .bodyandbrain h2 span {
  display: inline-block;
  color: #212121;
  font-weight: normal;
}

#guide .movie video {
  width: 100%;
}

@media screen and (max-width:700px) {
  #guide .loadmap {
    flex-wrap: wrap
  }

  #guide .loadmap figure,
  #guide .loadmap dl {
    width: 100%;
    margin-bottom: 24px;
  }
}