@charset "UTF-8";
html {
  overflow: auto;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 1040px;
  line-height: 1.3;
  position: relative;
  margin: 0;
  font-family: sans-serif;
}

_:-ms-lang(x)::-ms-backdrop {
  font-family: '源ノ角ゴシック Regular', '源ノ角ゴシック', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mobile {
  display: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol {
  margin: 0;
  padding-left: 20px;
}

a {
  text-decoration: none;
  color: #000;
}

i {
  margin-right: 5px;
}

.tel {
  cursor: default;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*--- safari（PC）用 ---*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Safari etc. */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*--- safari（PC）用 ---*/
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*--- safari（PC）用 ---*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Safari etc. */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Safari etc. */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.4;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

main {
  display: block;
  width: 100%;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*ヘッダー*/
#header {
  position: absolute;
  color: #fff;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.38)), color-stop(94%, rgba(237, 237, 237, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.38) 0%, rgba(237, 237, 237, 0) 94%);
}

#header #header_inner {
  max-width: 1040px;
  margin: auto;
  padding: 20px 10px;
}

nav ul li a {
  color: #fff;
  padding: 10px;
  font-size: 18px;
}

/*スライド*/
.slide_wrap {
  position: relative;
  height: 100vh;
  z-index: -5;
}

.slide_wrap .slider li {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.slide_wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/overlays/01.png);
  z-index: 100;
}

.slide_wrap strong {
  position: absolute;
  top: 50%;
  left: 35%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 120;
  font-size: 3em;
  color: #fff;
  text-shadow: 0 2px 6px #000;
  line-height: 1;
}

.slide_wrap strong span {
  font-size: 20px;
  text-shadow: 0 2px 4px #000;
}

/*活動報告*/
#report {
  position: relative;
  overflow: hidden;
  padding: 60px 0 90px 0;
  margin-top: -8%;
  background-color: transparent;
}

#report h2 {
  font-size: 34px;
  text-align: center;
  border-bottom: 1px solid #fff;
  max-width: 1040px;
  margin: auto;
}

#report:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 3% -10% 0;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #2861a1), color-stop(100%, #499bea));
  background: linear-gradient(45deg, #2861a1 0%, #499bea 100%);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  z-index: -1;
}

#report:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 3% -10% 0;
  background: #df6209;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  z-index: -2;
}

.report_inner {
  -webkit-box-sizing: boder-box;
          box-sizing: boder-box;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 100px 10px 120px;
  color: #fff;
  text-align: center;
}

.report_inner .fb_link {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #fff;
  margin-top: 20px;
  padding: 15px 20px;
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

#fb-list {
  max-width: 1040px;
  margin: auto;
  min-height: 400px;
}

#fb-list li {
  border: 1px solid #217ec3;
  text-align: left;
  background-color: #fff;
  padding: 15px;
  margin-top: 20px;
  width: 33%;
}

#fb-list li span {
  display: block;
  border-bottom: 1px solid #888;
  margin: 5px 0;
}

#fb-list li span.share {
  background-color: #2e5193;
  display: inline-block;
  padding: 0 5px;
  border: none;
  color: #fff;
}

.fb_img {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 260px;
  width: 100%;
  margin-bottom: 10px;
}

/*プロフィール*/
#profile {
  margin-top: -250px;
  position: relative;
  padding-top: 100px;
  background-image: url(../img/profile_bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 10%;
  height: 1150px;
  z-index: -10;
}

.profile_inner {
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1150px;
  width: 400px;
  background-color: #2e5193;
}

.profile_text {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  width: 340px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.profile_text h2 {
  margin-top: 100px;
  font-size: 30px;
  border-bottom: 1px solid #fff;
  margin-bottom: 5px;
}

.profile_text > ul {
  margin-top: 10px;
}

.profile_text > ul > li {
  line-height: 2;
  vertical-align: middle;
}

.profile_text > ul > li:before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #b6d2e6;
  vertical-align: middle;
  margin-right: 5px;
}

.profile_text > ul > li ul {
  text-indent: 1em;
  list-style: inside;
}

.profile_text > ul > li:nth-of-type(n+6) {
  text-indent: -1em;
  padding-left: 1em;
}

/*5つの提言*/
#suggestion {
  padding: 60px 0;
}

#suggestion h2 {
  position: relative;
  padding: 0 45px;
  display: inline-block;
  margin-bottom: 30px;
  color: #2e5193;
  font-size: 30px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

#suggestion h2:before, #suggestion h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #2e5193;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

#suggestion h2:before {
  left: 0;
}

#suggestion h2:after {
  right: 0;
}

.suggestion_wrap {
  max-width: 900px;
  padding: 0 10px;
  margin: auto;
}

.suggestion_img {
  width: 45%;
  margin-left: 30px;
  height: 240px;
  background-color: #fff;
}

.suggestion_img img {
  height: 240px;
}

.suggestion_child {
  border: solid 2px skyblue;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 20px;
}

.suggestion_child li {
  padding: 0.2em 0 0.2em 1em;
  text-indent: calc(-1em - 5px);
}

.suggestion_child li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: skyblue;
  margin-right: 5px;
}

.suggestion_child h3 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 10px;
  color: #df6209;
}

.suggestion_child h3 span {
  font-family: 'Lobster', cursive;
  font-size: 28px;
  margin-right: 10px;
}

.flex .suggestion_child {
  width: 49%;
}

#follow {
  text-align: center;
  background-color: #ededed;
}

#follow h2 {
  padding: 10px;
  background-color: #2e5193;
  color: #fff;
  font-size: 30px;
  margin-bottom: 30px;
}

#follow p {
  margin-bottom: 20px;
}

/*フッター*/
#footer {
  border-top: 2px solid #b6d2e6;
  background-color: #2e5193;
  color: #fff;
}

#footer > p {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
}

#footer img {
  height: 200px;
}

.footer_inner {
  max-width: 1000px;
  margin: auto;
  padding: 20px 10px 0 10px;
}

.footer_inner h2 {
  font-weight: 400;
  margin: 10px 0;
}

@media screen and (min-width: 901px) {
  .report_inner .fb_link:hover {
    background-color: #fff;
    color: #2861a1;
  }
  #fb-list a:hover > div {
    opacity: 0.8;
  }
}

@media screen and (max-width: 900px) {
  html,
  body {
    min-width: 320px;
  }
  .report_inner {
    padding: 50px 10px 160px 10px;
  }
  #profile {
    height: 840px;
  }
  .profile_inner {
    height: 840px;
  }
  .profile_inner {
    width: 380px;
    left: auto;
    right: 0;
  }
}

@media screen and (max-width: 700px) {
  #header_inner {
    display: block;
    padding: 10px;
  }
  nav ul li a {
    font-size: 14px;
    padding: 6px;
    display: block;
  }
  .slide_wrap {
    height: 450px;
  }
  .slide_wrap .bx-viewport {
    height: 450px !important;
  }
  .slide_wrap .bx-viewport li {
    height: 450px;
  }
  .slide_wrap .overlay {
    display: none;
  }
  .slide_wrap strong {
    left: 10px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    font-size: 28px;
  }
  .slide_wrap strong span {
    font-size: 16px;
  }
  #fb-list li {
    width: 49%;
  }
  .fb_img {
    height: 180px;
  }
  #report {
    margin: 0;
    padding: 30px 0;
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #2861a1), color-stop(100%, #499bea));
    background: linear-gradient(45deg, #2861a1 0%, #499bea 100%);
  }
  #report:before, #report:after {
    display: none;
  }
  #report h2 {
    font-size: 24px;
  }
  .report_inner {
    padding: 0 8px;
  }
  #profile {
    margin-top: 0;
    height: auto;
    background: none;
    padding: 0;
  }
  .profile_inner {
    position: static;
    padding: 30px 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .profile_inner .profile_text {
    position: static;
    color: #000;
    width: 90%;
    margin: auto;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .profile_inner .profile_text h2 {
    border-color: #888;
    font-size: 24px;
  }
  .profile_inner .profile_text ul li:before {
    background-color: #2e5193;
  }
  #suggestion {
    padding: 20px 0;
  }
  #suggestion h2 {
    font-size: 22px;
    padding: 0 30px;
    margin-bottom: 15px;
  }
  #suggestion h2:before, #suggestion h2:after {
    width: 33px;
  }
  .flex .suggestion_child {
    width: 100%;
  }
  .suggestion_child h3 {
    font-size: 20px;
  }
  .suggestion_child.flex {
    display: block;
  }
  .suggestion_img {
    width: 100%;
    margin: 20px 0;
  }
  #follow {
    text-align: left;
  }
  #follow h2 {
    text-align: center;
    font-size: 22px;
  }
  #follow p {
    padding: 0 8px;
  }
  #footer {
    padding: 10px 0;
  }
  #footer img {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #fb-list li {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
  #fb-list li span {
    font-size: 12px;
  }
  #fb-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fb_txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .fb_img {
    height: 120px;
    width: 120px;
    margin-right: 10px;
    margin-bottom: 0;
  }
}
/*# sourceMappingURL=style.css.map */