@charset "UTF-8";
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration,
  input[type="reset"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]:focus,
  input[type="button"]:focus,
  input[type="reset"]:focus {
    outline-offset: -2px; }

/*----index.html-------*/
body {
  font-family: Avenir, "Helvetica neue", Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック", "MS PGothic","Font Awesome 5 Free", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.5; }

.bold {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold; }

.wrapper {
  width: 100%;
  overflow: hidden;
  color: #4c4c4c;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative; }

/*メニュー開いた時後ろ*/
#overray {
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: all .5s ease;
  pointer-events: none; }

.open #overray {
  opacity: 1;
  pointer-events: auto; }

/*ヘッダー*/
.header_top {
  width: 100%;
  position: fixed;
  z-index: 9998;
  background: transparent;
  transition: .5s;
  display: flex;
  align-items: center;
  top: 0; }

.header_top.transform .header_top_back {
  box-shadow: rgba(167, 167, 167, 0.15) 5px 5px 15px 0px;
  -webkit-box-shadow: rgba(167, 167, 167, 0.15) 5px 5px 15px 0px;
  -moz-box-shadow: rgba(167, 167, 167, 0.15) 5px 5px 15px 0px;
  -o-box-shadow: rgba(167, 167, 167, 0.15) 5px 5px 15px 0px;
  -ms-box-shadow: rgba(167, 167, 167, 0.15) 5px 5px 15px 0px; }

.header_top_back {
  width: 100%;
  margin: 0 auto;
  transition: .8s ease;
  background: white; }
  @media (max-width: 480px) {
    .header_top_back {
      padding: 14px 3vw; } }

.header_top_back_inner {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-around;
  transition: .8s ease;
  max-width: 1400px; }
  @media (max-width: 780px) {
    .header_top_back_inner {
      justify-content: space-between; } }

.header_nav_name {
  margin-left: 2%; }
  .header_nav_name h1 {
    width: 200px; }
    .header_nav_name h1 img {
      width: 100%; }
  @media (max-width: 780px) {
    .header_nav_name {
      display: none; } }

.header_nav_name_sp {
  margin-left: 5%; }
  .header_nav_name_sp h1 {
    width: 200px; }
    .header_nav_name_sp h1 img {
      width: 100%; }
  @media (min-width: 780px) {
    .header_nav_name_sp {
      display: none; } }
  @media (max-width: 480px) {
    .header_nav_name_sp h1 {
      position: relative;
      width: 150px;
      height: 40px;
      margin-bottom: 0; }
    .header_nav_name_sp img {
      width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      -webkit-transform: translateY(-50%) translateX(-50%); } }

.menu_header {
  display: flex;
  font-weight: 600;
  color: #007640;
  justify-content: space-around;
  align-items: center;
  width: 70%;
  padding-top: 6px; }
  @media (max-width: 780px) {
    .menu_header {
      display: none; } }

.menu_link {
  display: flex;
  align-items: center; }
  .menu_link a {
    transition: .2s ease-in-out;
    display: inline-block;
    position: relative; }
    .menu_link a:hover {
      opacity: .7; }

/*スマホヘッダー*/
#gloval-nav {
  display: none; }

@media (max-width: 780px) {
  /*オーバーレイメニュー*/
  #nav-toggle {
    transition: .3s;
    margin-right: 3%;
    background: #007640;
    border-radius: 50%;
    width: 45px;
    height: 45px; }
    #nav-toggle.transform {
      opacity: 1;
      position: fixed;
      right: 0;
      padding: 9px 12px 12px 10px; } }
  @media (max-width: 780px) and (max-width: 480px) {
    #nav-toggle {
      margin-right: 1%; } }

@media (max-width: 780px) {
  #nav-toggle div {
    position: relative;
    width: 45px;
    height: 45px;
    cursor: pointer; }
  #nav-toggle div span {
    width: 22px;
    height: 3px;
    border-radius: 3px;
    left: calc(50% - 11px);
    display: block;
    background: white;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease; }
  #nav-toggle div span:nth-child(1) {
    top: 14px; }
  #nav-toggle div span:nth-child(2) {
    top: 21px; }
  #nav-toggle div span:nth-child(3) {
    top: 28px; }
  .open #nav-toggle div span {
    left: calc(50% - 12px); }
  .open #nav-toggle span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
    width: 23px; }
  .open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%; }
  .open #nav-toggle span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
    width: 23px; }
  /* z-index */
  #nav-toggle {
    z-index: 1000; }
  #container {
    z-index: 900; }
  #gloval-nav {
    position: fixed;
    flex-direction: column;
    top: 73px;
    z-index: 990;
    height: 0;
    transition: .8s ease;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 3em; }
    #gloval-nav::after {
      margin-top: 2%;
      content: "";
      width: 100%;
      height: 0;
      display: block;
      background-color: white;
      position: fixed;
      top: 10px;
      z-index: -1;
      transition: .8s ease; }
  .gloval-nav_inner {
    opacity: 0;
    transition: .6s ease; }
  .nav_menu {
    text-align: center;
    font-size: 15px;
    list-style: none; }
  .nav_menu li {
    margin: 14px; }
    .nav_menu li .fab {
      font-size: 21px; } }
  @media (max-width: 780px) and (max-width: 480px) {
    .nav_menu li {
      margin: 0; } }

@media (max-width: 780px) {
  .nav_menu a {
    position: relative;
    display: inline-block;
    color: #007640;
    text-decoration: none;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    transition: .3s; }
    .nav_menu a:hover {
      color: #6dad8b; } }
  @media (max-width: 780px) and (max-width: 480px) {
    .nav_menu a {
      font-size: 15px; } }

@media (max-width: 780px) {
  /* open */
  .open {
    overflow: hidden; }
  .open #gloval-nav {
    visibility: visible;
    height: calc(80% - 50px); }
    .open #gloval-nav::after {
      height: calc(90% - 50px); }
    .open #gloval-nav .gloval-nav_inner {
      opacity: 1; } }
  @media (max-width: 780px) and (max-width: 480px) {
    .open #gloval-nav {
      height: 449px; }
      .open #gloval-nav::after {
        height: 520px; } }

@media (max-width: 780px) {
  .open #gloval-nav li:hover {
    transition: .6s ease; }
  .open .header_top_back {
    box-shadow: none !important; }
  .nav_line {
    background: white;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #007640; }
    .nav_line p {
      color: #007640;
      display: inline-block;
      padding: 20px 0; }
    .nav_line a {
      width: 100%; } }

/* トップ画像 */
.header-wrapper {
  background-image: url(../images/top-back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 96%;
  margin: 0 auto;
  height: 77vh;
  position: relative;
  margin-top: 103px;
  max-width: 1400px;
  max-height: 800px; }
  .header-wrapper img {
    position: absolute;
    top: 9px;
    width: 60%;
    max-width: 466px;
    left: 1%;
    min-width: 262px; }
  @media (min-width: 1300px) {
    .header-wrapper {
      height: 76vh; } }
  @media (max-width: 780px) {
    .header-wrapper {
      background-size: contain;
      background-position: top center;
      height: 53vh; } }
  @media (max-width: 480px) {
    .header-wrapper {
      height: 39vh;
      background-size: cover;
      background-position: top right -10px;
      margin-top: 83px; }
      .header-wrapper img {
        top: 0; } }

/* 政策 */
#greeting {
  padding: 13rem 0; }
  @media (max-width: 780px) {
    #greeting {
      padding: 7rem 0; } }
  @media (max-width: 480px) {
    #greeting {
      padding: 0; } }

.row {
  flex-direction: row-reverse;
  align-items: end; }

.prof-image {
  margin: 0 auto; }
  .prof-image img {
    width: 100%; }
  @media (max-width: 780px) {
    .prof-image {
      width: 65%; } }
  @media (max-width: 480px) {
    .prof-image {
      width: 72%; } }

      .prof-row{
        align-items: center;
      }

/*議会報告画像*/
.report-img {
  border: 1px solid #ccc;
  margin: 0 auto;
  max-width: 900px;
}
.harf-img {
  max-width: 600px;
}

/*# sourceMappingURL=style.css.map */
