@charset "utf-8";
/* Green Camp css */

body {
  background-image: url(../images/back.gif);
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
}

/* .wrapper
----------------------------------------*/
.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
}

/* header
----------------------------------------*/
header {
  height: 60px;
  padding: 30px;
  display: flex;
  justify-content: flex-start;
}

header h1 {
  width: 312px;
  height: 60px;
}

/* nav
----------------------------------------*/
nav {
  width: calc(100% - 312px);
}

nav ul {
  text-align: right;
  line-height: 60px;
  padding-top: 5px;
}

nav ul li {
  display: inline;
  margin-left: 30px;
}

nav ul li a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

nav ul li a:hover {
  color: #ccc;
  border-bottom: 1px solid #ccc;
}

/* .catch_copy
----------------------------------------*/
.catch_copy {
  background-color: #ccc;
  height: 200px;
  background-image: url(../images/header-image.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catch_copy p {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
}

.catch_copy p br {
  display: none;  /*改行コードを無効*/
}

/* .container
----------------------------------------*/
.container {
  margin: 20px 30px 50px;
}

.container h2 {
  margin-bottom: 10px;
}

/* .article
----------------------------------------*/
article {
  margin-bottom: 20px;
}

/* .section p (article/aside)
----------------------------------------*/
section p {
  margin-top: 10px;
  text-align: justify;
}

/* .content
----------------------------------------*/
.content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 40px;
}

.content section {
  width: calc((100% - 60px) / 3);
}

.content section h3 {
  line-height: 30px;
  text-align: center;
  background-image: url(../images/mark.png);
  background-repeat: no-repeat;
  background-position: left center;
  border-bottom: 2px solid #1a401a;
  margin-bottom: 20px;
}

.content section .photo {
  text-align: center;
}

.content section .photo img {
  border-radius: 120px;
}

/* aside
----------------------------------------*/
aside .event {
  display: flex;
  justify-content: space-between;
}

aside section {
  width: calc((100% - 20px) / 2);
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

aside section p img {
  float: left;
  margin-right: 10px;
}

/* footer
----------------------------------------*/
footer {
  text-align: center;
  background-color: #1a401a;
}

footer small {
  color: #fff;
  font-size: 16px;
  line-height: 120px;
}

.slicknav_menu {
  display: none;
}

/*----------------------------------------
 max-width: 1000px
----------------------------------------*/
@media screen and (max-width: 1000px) {
  .wrapper {
    width: 100%;
    margin: 0;
  }

  header {
    display: none;
  }

  .slicknav_menu {
    display: block;
  }

  .content {
    display: block;
  }

  .content section {
    width: auto;
    margin-top: 20px;
  }

  .content section h3 {
    text-align: left;
    padding-left: 24px;
  }

  .content section .photo {
    float: left;
    margin: 0 20px;
  }

  .content section::after {
    content: "";
    display: block;
    clear: both;
  }

  aside .event {
    display: block;
  }

  aside section {
    width: auto;
    margin-bottom: 30px;
  }

  aside section::after {
    content: "";
    display: block;
    clear: both;
  }

  footer small {
    line-height: 80px;
  }
}

/*----------------------------------------
max-width:600px 
----------------------------------------*/
@media screen and (max-width:600px){
  .catch_copy p br {
    display: block;
  }

  .content section h3 {
    text-align: center;
  }

  .content section .photo {
    margin: 0;
    float: none;
  }

  .content section .photo img {
    width: calc(240px * 0.8);
    height: auto;
  }

  aside section p img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}

