@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    font-family: "sans-serif" "Raleway";
    box-sizing: border-box;
}

html, body {
  margin: 0;
  background-color: #808080;
}


/*ハンバガーメニュー*/
@import url(https://fonts.googleapis.com/css?family=Raleway);
h2 {
  vertical-align: center;
  text-align: center;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #f2dc49;
  background: linear-gradient(to left, #f2dc49, #f2dc49);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
  z-index: 10;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  z-index: 10;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
  z-index: 10;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
  z-index: 10;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
  z-index: 10;
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
  z-index: 10;
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
  z-index: 10;
}

@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
    z-index: 10;
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
  }

  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
  }

  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
    z-index: 10;
  }

  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
    z-index: 10;
  }
}
/*ハンバガーメニュー*/
/*スライドショー*/
.your-class{
    color: #808080;
    display: block;
    margin: 0 auto;
    width: 100vw;
    height: auto;
    z-index: 5;
}
.your-class div img{
    max-width: 100%;
    width: 100vw;
    height: auto;
    margin: 0 auto;
}
/*スライドショー*/
/*活動一覧*/
.your-class-2{
  justify-content: center;
    display: block;
    margin: 3% auto;
    width: 80%;
    height: auto;
}
.your-class-2 div img{
  width: 70%;
}
/*活動一覧*/
/*フッター*/
ul {
  padding: 0;
  list-style: none;
}

a {
  color: #4b5564;
  text-decoration: none;
}

a:hover {
  color: #000;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #4b5564;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer {
  padding: 2rem;
  font-size: 15px;
  color: #4b5564;
  background: #f2dc49;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 2rem;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/*フッター*/
