@charset "UTF-8";
/* CSS Document */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  text-align: center;
}
a {
  color: #666666;
  text-decoration: none;
}
a:hover {
  color: #666666;
  text-decoration: underline;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
a[href*="tel:"] {
  pointer-events: none;
}
.sp {
  display: none;
}
.sp-no {
  display: block;
}
.col-red {
  color: #a42c2b;
}
.float-left {
  float: left;
  margin-right: 60px;
}
.float-right {
  float: right;
  margin-left: 60px;
}
.float-center {
  text-align: center;
}
.mb-30 {
  margin-bottom: 20px;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.txt-center {
  text-align: center;
}
.txt-large {
  font-size: 120%;
}
.txt-small {
  font-size: 90%;
}
.txt-large-black {
  font-size: 160%;
  color: #333333;
  text-align: center;
}
img {
  height: auto;
}
marker {
  background: linear-gradient(transparent 0%, #fff799 0%);
  font-weight: bold;
  border-radius: 6px;
}
@media screen and (max-width: 811px) {
  body {
    font-size: 15px;
  }
  a[href*="tel:"] {
    pointer-events: initial;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .sp {
    display: block;
  }
  .sp-no {
    display: none;
  }
  .float-left {
    float: none;
    margin: 0px;
    width: 100%;
  }
  .float-right {
    float: none;
    margin: 0px;
    width: 100%;
  }
}
/* -----------------------------------------------------------------------------
    header
   -------------------------------------------------------------------------- */
#header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 115px;
  z-index: 1;
  background: #ffffff;
  border-top: 6px solid #006431;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
#header-wrapper {
  width: 1280px;
  position: relative;
  margin: 0 auto;
}
.header-logo {
  position: absolute;
  top: 13px;
  left: 0px;
}
.header-sns {
  position: absolute;
  top: 36px;
  right: 0px;
}
.header-sns ul {
  list-style: none;
  display: flex;
  display: -webkit-flex;
}
.header-sns ul li {
  padding-right: 10px;
}
.header-sns ul li img {
  width: 30px;
  height: 30px;
}
#header-navi {
  position: absolute;
  top: 0px;
  right: 250px;
  width: 605px;
}
#header nav ul li {
  display: inline-block;
  padding: 15px 25px;
  margin: 0px;
  font-weight: 700;
}
#header nav ul li a {
  color: #333333;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  display: inline-block;
}
#header nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #006431;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#header nav ul li a:hover::after {
  transform: scale(1, 1);
}
#header nav ul li a:hover {
  color: #aaa
}
#header nav ul li a.header-navi-ac {
  border-bottom: 2px solid #006431;
}
#header nav ul li span {
  display: block;
  font-size: 80%;
  color: #666;
  font-weight: 100;
}
@media screen and (max-width: 1099px) {
  #header-wrapper {
    width: 100%;
  }
  #header-navi {
    right: 0px;
  }
  .header-sns {
    display: none;
  }
}
@media screen and (max-width: 812px) {
  #header {
    width: 100%;
    height: 80px;
  }
  .header-logo {
    position: absolute;
    top: 8px;
    left: 8px;
  }
  .header-logo img {
    width: auto;
    height: 60px;
  }
  .header-sns {
    display: none;
  }
  #header-navi {
    position: fixed;
    top: 0;
    right: 0px;
    left: auto;
    width: 100%;
  }
  #header nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    text-align: center;
    background: #006431;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2
  }
  #header nav ul li {
    display: block;
    padding: 10px 40px
  }
  #header nav ul li a {
    text-decoration: none;
    color: #eee;
    width: 100%;
  }
  #header nav ul li span {
    color: #ccc;
  }
  #header .btn-gnavi {
    position: fixed;
    top: 28px;
    right: 30px;
    width: 30px;
    height: 24px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms
  }
  #header .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #666;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms
  }
  #header .btn-gnavi span:nth-child(1) {
    top: 0px;
  }
  #header .btn-gnavi span:nth-child(2) {
    top: 10px;
  }
  #header .btn-gnavi span:nth-child(3) {
    bottom: 0px;
  }
  #header .btn-gnavi.open span {
    background: #ccc;
  }
  #header .btn-gnavi.open span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  #header .btn-gnavi.open span:nth-child(2) {
    opacity: 0;
  }
  #header .btn-gnavi.open span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  #header .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 6px #666
  }
  #header .contents section:nth-child(odd) p {
    left: 10%
  }
  #header .contents section:nth-child(even) p {
    right: 10%
  }
}
/* -----------------------------------------------------------------------------
    contents
   -------------------------------------------------------------------------- */
#contents {
  padding-top: 115px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}
#contents section {
  clear: both;
  overflow: hidden;
  padding: 30px auto;
}
/* 見出し------------------------------------------*/
.contents-title {
  width: 100%;
  height: 300px;
  background: url("../images/title_bg.png") no-repeat right #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contents-title h1 {
  font-size: 36px;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 1280px;
  text-shadow: 0 0 5px #ffffff;
}
.contents-title h1 span {
  border-bottom: 1px solid #333333;
}
h2 {
  font-size: 36px;
  letter-spacing: 0.05em;
  margin: 0 0 1.5em 0;
  text-align: center;
  font-weight: 900;
  color: #006431;
}
h2 span {
  border-bottom: 2px solid #006431;
}
h3 {
  font-size: 22px;
  margin: 0 0 1em 0;
  color: #006431;
}
h4 {
  font-size: 20px;
  margin: 0 0 1em 0;
}
section p {
  margin: 0 0 1em 0;
  line-height: 2em;
}
.list-ul {
  padding-left: 2em;
}
/* sp */
@media screen and (max-width: 812px) {
  #contents {
    padding-top: 80px;
    width: 100%;
  }
  .contents-title {
    height: 120px;
    background-size: auto 100%;
  }
  .contents-title h1 {
    letter-spacing: 0em;
    font-size: 24px;
    width: 100%;
    margin: 60px 0 0 20px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
}
/* パーツ------------------------------------------*/
.youtube-area {
  position: relative;
}
.youtube-area iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.twitter-area {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.googleform-area {
  text-align: center;
  position: relative;
  width: 100%;
  height: 1223px;
  overflow-y: scroll;
}
.googleform iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 1em auto;
}
.btn-area span {
  display: block;
  font-size: 80%;
}
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  position: relative;
  background: #006431;
  border: 1px solid #006431;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 65px 0 45px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  font-weight: 700;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn-02 {
  ;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  position: relative;
  background: #cce198;
  border: 1px solid #cce198;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 50px 0 30px;
  color: #006431;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn-02:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #006431;
  border-right: 2px solid #006431;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn-pdf {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  position: relative;
  background: #006431;
  border: 1px solid #006431;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 0 65px 0 45px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  font-weight: 700;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn-pdf:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn:hover, a.btn-02:hover, a.btn-pdf:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
@media screen and (max-width: 812px) {
  a.btn, a.btn-02, a.btn-pdf {
    letter-spacing: 0em;
  }
}
/* contents
   ========================================================================== */
.cont-all {
  width: 100%;
  position: relative;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2) inset;
  padding: 2em 0;
}
.cont-green {
  background: #006431;
  color: #ffffff;
}
.cont-green h2 {
  color: #ffffff;
}
.cont-green h2 span {
  border-bottom: 2px solid #ffffff;
}
.cont-lightgreen {
  background:
    url(../images/bg_line_top.png) no-repeat top left, url(../images/bg_line_bottom.png) no-repeat bottom right;
  background-color: #e3efc6;
}
.cont-stripe {
  background: repeating-linear-gradient(135deg, #eeeeee, #eeeeee 15px, #f8f8f8 15px, #f8f8f8 30px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2) inset;
}
.cont-inner {
  width: 1100px;
  margin: 0px auto;
  text-align: left;
}
.column-2 {
  display: flex;
  justify-content: space-between;
}
.column-2 .column-item {
  width: 49%;
}
.column-4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.column-4 .column-item {
  width: 48%;
}
.column-img-right {
  display: flex;
  justify-content: space-around;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  padding: 0 20px;
}
.column-img-right > div:first-child {
  padding-left: 5em;
}
.column-img-right > div:last-child {
  font-size: 110%;
}

.box-1{
	background: #ffffff;
	margin:5px auto;
  padding: 2em;
}


@media screen and (max-width: 1099px) {
  .cont-inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 812px) {
  .cont-all {
    width: 100%;
  }
  .cont-inner {
    width: 100%;
    padding: 0 20px;
  }
  .column-img-right, .column-2, .column-4 {
    width: 100%;
    display: block;
    padding: 0 20px;
  }
  .column-2 .column-item, .column-4 .column-item {
    width: 100%;
  }
  .column-img-right > div:first-child {
    padding: 1em;
    text-align: center;
  }
}
/* ==========================================================================
   トップページ
   ========================================================================== */
#contents-top {
  margin-top: 115px;
  width: 100%;
  height: 600px;
  position: relative;
  background: url("../images/main_img.png") no-repeat #f9ffeb;
  background-position: right;
  background-size: auto 100%;
  display: flex;
  justify-content: space-around;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
.top-main {
  width: 1100px;
}
.top-main h1 {
  text-align: left;
}
.main-sns {
  padding-top: 30px;
  list-style: none;
  display: flex;
  display: -webkit-flex;
}
.main-sns li {
  padding-right: 10px;
}
.column-2 .youtube-area {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.top-policy {
  background: url(../images/top_yamada.png) no-repeat left top, url(../images/top_koike.png) no-repeat right top;
  padding-bottom: 20px;
}
.top-policy-txt {
  text-align: left;
  margin: 2em auto;
  padding: 0 150px;
}
@media screen and (max-width: 1100px) {
  .top-main {
    margin-top: 320px;
    width: 90%;
  }
  .main-sns {
    padding-top: 10px;
  }
}
/* sp */
@media screen and (max-width: 812px) {
  #contents-top {
    display: none;
  }
  .top-main-sp {
    margin-top: 70px;
  }
  .top-policy {
    background: none;
  }
  .top-policy-txt {
    width: 100%;
    padding: 0 20px;
  }
}
/* ==========================================================================
   都民ファーストのブレない改革
   ========================================================================== */
.column-policy {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-top: 2em;
}
.column-policy img {
  margin: 0 0 0 50px;
}
.policy-box {
  margin: 0 30px 30px 30px;
  border: 3px solid #666666;
  background: #ffffff;
}
.policy-box h3 {
  color: #fff100;
  background: #006431;
  padding: 10px;
  font-size: 30px;
  text-align: center;
}
.policy-box ol {
  font-size: 24px;
  color: #006431;
  font-weight: 600;
  padding: 0;
  counter-reset: number;
  list-style-type: none !important;
}
.policy-box ol li {
  padding: 0.5em 0;
  position: relative;
  padding-left: 2em;
  line-height: 1.2em;
	text-align: left;
}
.policy-box ol li:before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 40px;
  font-style: italic;
  color: #d4f49d;
}
.cont-inner .policy-box {
  margin: 30px 0;
}
.policy-box-inner {
  padding: 0 80px 30px 80px;
}

.policy-box-inner h4 {
  font-size: 24px;
  color: #006431;
  font-weight: 600;
  padding: 0;
	margin: 0;
}
.policy-box-inner h4 span {
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 50px;
  font-style: italic;
  color: #d4f49d;
  padding-right:0.3em;
}
.policy-box-inner ul {
  padding:  0px 20px 20px 5em;
}



@media screen and (max-width: 812px) {
  .column-policy, .policy-box-inner, .policy-box-inner {
    padding: 0px 20px 20px 20px;
    display: block;
  }
  .column-policy img {
    margin: 0 auto;
  }
  .column-policy > div:first-child {
    text-align: center;
  }
  .policy-box {
    margin: 0 20px;
  }
  .policy-box h3 {
    font-size: 24px;
  }
  .policy-box ol {
    font-size: 18px;
  }
  .policy-box ol li {
    text-align: left;
  }
  .policy-box ol li:before {
    font-size: 30px;
  }
  .column-policy img {
    margin: 1em auto;
  }
  .policy-box-inner h4 {
    font-size: 18px;
	line-height: 1.2;
    padding-bottom: 20px;
  }
  .policy-box-inner h4 span {
    font-size: 40px;
  }
  .policy-box-inner ul {
  padding:  0px 20px 20px 2em;
}

 }

/* ==========================================================================
   プロフィール
   ========================================================================== */
.column-profile-img {
  display: flex;
  flex-wrap: wrap;
  width: 300px;
  margin: 0 0 50px 50px;
}
@media screen and (max-width: 812px) {
  .column-profile-img {
    display: flex;
    flex-wrap: row wrap;
    justify-content: space-around;
    width: 100%;
    margin: 20px 0;
  }
  .column-profile-img > img {
    width: 25%;
    height: 25%;
  }
}
/* ==========================================================================
   footer
   ========================================================================== */
#footer {
  width: 100%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2) inset;
  padding: 2em 0;
}
.footer-info {
  padding: 2em 0;
}
.footer-nav {
  clear: both;
  list-style: none;
  font-size: 14px;
  line-height: 1em;
  text-align: center;
  padding: 20px;
}
.footer-nav li {
  display: inline-block;
  padding: 0 2em;
  border-right: 1px solid #333333;
}
.footer-nav li:first-child {
  border-left: 1px solid #333333;
}
.footer-sns {
  padding: 1em 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.footer-sns li {
  padding-right: 10px;
}
.footer-copyright {
  padding: 1em 0;
  font-size: 12px;
  font-family: Verdana, Geneva, "sans-serif"
}
#footer p {
  padding: 0.5em 0;
}
.pagetop {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

@media screen and (max-width: 812px) {
  .footer-nav {
    clear: both;
    padding: 20px 0 0 0;
  }
  .footer-nav li {
    padding: 0 0.5em;
  }
}
/* ==========================================================================
   efefect
   ========================================================================== */


#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 2%;
  bottom: 2%;
  background: #80b298;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  line-height:1;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*フェードインアニメ*/


/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -30px);
	transition: all 0.8s ease-out;
 }

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 30px);
	transition: all 0.8s ease-out;
 }

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-30px, 0);
	transition: all 0.8s ease-out;
 }

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(30px, 0);
	transition: all 0.8s ease-out;
 }