@charset "utf-8";

/************************************************
 共通設定
*************************************************/
html {
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5; /*わざと単位無し*/
  color: #1f2954;
  background: #FFF;
}


@media print, screen and (min-width: 768px){
  body {
    min-width: 1000px;
    background: url(../images/bg_pattern.png) repeat;
  }
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a:link, a:visited {
  color: #3B9DE3;
}
a:hover, a:active {
  color: #F38300;
  transition: 0.3s;
}
a:hover img {
  opacity: 0.5;
  transition: 0.3s;
}

/* ==============================================
 フレーム
=============================================== */
.wrapper {
  margin: 0 10px;
}
@media print, screen and (min-width: 768px){
  .wrapper {
    width: 1024px;
    margin: 0 auto;
  }
}

#container {
  margin: 0 auto;
  padding: 30px 0;
  min-height: 300px;
  background: #FFF;
}

@media print, screen and (min-width: 768px){
  #container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .home #container {
    flex-direction: row;
  }
}

/* ==============================================
 ヘッダー
=============================================== */
#header {
  background: #FFF;
  justify-content: space-between;
  align-items: center;
  border-top: 8px solid #86B632;
}
#header_top {
  margin: 0 auto;
}
#header_top .wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 93px;
}
#header_top a {
  width: 75%;
}
#header_top img {
  max-height: 70px;
}

@media print, screen and (min-width: 768px){
  #header {
    height: 260px;
  }
  #header_top {
    background: url(../images/img_header_town_line.png) repeat-x bottom;
  }
  #header_top .wrapper{
    height: 150px;
    padding-top: 30px;
    background: url(../images/img_header_town.png) no-repeat bottom right;
  }
  #header_top a {
    width: 50%;
  }
  #header_top img {
    max-height: none;
  }
}

#header_bottom {
  width: 1024px;
  height: 45px;
  line-height: 44px;
  margin: 0 auto;
}
#header_bottom p {
  font-size: 13px;
  margin: 0 auto;
  text-align: center;
}

/* グローバルナビ
----------------------------------------------- */
#global_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #595757;
}
#global_nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  border-bottom: 5px solid #00a53d
}
#global_nav a:hover,
#global_nav a:active {
  color: #ff5454;
  transition: 0.3s;
  border-bottom: 5px solid #f14e05
}
#global_nav li {
  width: 171px;
  line-height: 52px;
  font-size: 1.2rem;
  background: url(../images/menu.png) no-repeat center left;
  text-align: center;
}
#global_nav .button {
  padding: 7px 13px;
}

/* グローバルナビ スマホ
----------------------------------------------- */
#global_nav_sp {
  position: absolute;
  top: 100px;
  right: 0;
  width: 300px;
  height: 100%;
  display: none;
  background: #86B632;
  z-index: 999;
}
#global_nav_sp_overlay {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, .5);
  z-index: 998;
}
#global_nav_sp ul {
  list-style: none;
  text-align: center;
  margin: 0 10px;
  padding: 0;
}
#global_nav_sp li {
  border-bottom: 1px #FFF solid;
  padding: 10px;
}
#global_nav_sp li:last-child {
  border-bottom: none;
}
#global_nav_sp ul a {
  display: block;
  padding: 15px 0;
  color: #FFF;
}

/* グローバルナビ スマホトグルボタン
----------------------------------------------- */
#global_nav_toggle {
  width: 50px;
  height: 48px;
  position: relative;
  cursor: pointer;
  background: #86B632;
  border-radius: 5px;
}
#global_nav_toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 36px;
  background: #fff;
  left: 7px;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#global_nav_toggle span:nth-child(1) {
    top: 10px;
}
#global_nav_toggle span:nth-child(2) {
    top: 22px;
}
#global_nav_toggle span:nth-child(3) {
    bottom: 10px;
}
/* global_nav_toggle アニメーション */
.global_nav_sp_open #global_nav_toggle span:nth-child(1) {
   top: 22px;
   -webkit-transform: rotate(315deg);
   -moz-transform: rotate(315deg);
   transform: rotate(315deg);
}
.global_nav_sp_open #global_nav_toggle span:nth-child(2) {
   width: 0;
   left: 50%;
}
.global_nav_sp_open #global_nav_toggle span:nth-child(3) {
   top: 22px;
   -webkit-transform: rotate(-315deg);
   -moz-transform: rotate(-315deg);
   transform: rotate(-315deg);
}

/* パンくず
----------------------------------------------- */
#breadcrumbs {
  padding: 20px 20px 10px 0;
  margin: 0;
  font-size: 0.9em;
  background-color: #FFF;
}
#breadcrumbs li {
  display: inline;
  list-style-type: none;
}
#breadcrumbs li:after {
  content:" > ";
}
#breadcrumbs li:last-child:after {
  content: "";
}

@media print, screen and (min-width: 768px){
  #breadcrumbs {
    padding-left: 20px;
  }
}

/* メインビジュアル
----------------------------------------------- */
.main_visual_slider {
  margin: 0;
  padding: 0;
}
.main_visual_slider li {
  margin: 0;
  padding: 0;
}
.main_visual_slider img {
  width: 100%;
}

/* コンテンツ部分
----------------------------------------------- */
@media print, screen and (min-width: 768px){
  .page-content main {
    width: 70%;
  }
}

/* メニュー
----------------------------------------------- */
#leftside_menu {
  margin-bottom: 30px;
}
#leftside_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#leftside_menu li {
  padding: 15px 0 15px 15px;
  background: url(../images/bg_point01.png) no-repeat center left, url(../images/bg_leftside_menu.png) repeat-x bottom left;
}
#leftside_menu a:link, #leftside_menu a:visited {
 color: #393931;
}
#leftside_menu a:hover, #leftside_menu a:active {
  color: #E50C00;
}


/************************************************
 サイドメニュー
*************************************************/
.page-aside {
  margin: 20px auto;
  border-top: 5px solid #00a53d;
}

.sub_side_box {
  margin: 0 auto;
}

.sub_side_box ul.local_nav {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub_side_box .local_nav a {
  height: 50px;
  padding: 0 0 0 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d5d5d5;
  background: url(../images/icon_sidemenu.png) 20px center no-repeat;
  color: #1f2954;
  text-decoration: none;
}

.sub_side_box .local_nav a:hover, .sub_side_box .local_nav a:active {
  opacity: 0.5;
}

@media print, screen and (min-width: 768px){
  .page-aside {
    width: 27%;
    font-size: 14px;
  }
}


/* ==============================================
 フッター
=============================================== */
#footer {
  background: url(../images/bg_footer@2x.png);
  background-size: 100% 100%;
  padding: 20px 0 10px;
  text-align: center;
  color: #fff;
}
#footer .wrapper {
  text-align: center;
}
#footer a {
  font-size: 0.9em;
}
#footer a:link,
#footer a:visited {
  color: #fff;
  text-decoration: none;
}
#footer a:hover,
#footer a:active {
  color: #ff5454;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px){
  #footer {
    background: url(../images/bg_footer.png);
  }
  #footer .wrapper {
    text-align: left;
  }
}

/* フッターナビ
----------------------------------------------- */
#footer_nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 5px 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
#footer_nav li {
  padding: 0 0 0 15px;
}

#footer_nav .button {
  padding: 7px 13px;
}

/* コピーライト
----------------------------------------------- */
#footer_copyright {
  text-align: center;
  font-size: 0.8rem;
  margin: 0;
}

/* フッターロゴ
----------------------------------------------- */
#footer_logo {
  width: 70%;
  height: 40px;
  margin: 0 auto 10px;
}
#footer_address {
  width: 50%;
  margin: 0 auto 20px;
}
@media print, screen and (min-width: 768px){
  #footer_logo {
    width: 100%;
    height: 109px;
  }
}

/* ==============================================
 ユーティリティクラス
=============================================== */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.left_box {
  float: left;
}
.right_box {
  float: right;
}

/* 端末別非表示クラス */
@media screen and (max-width: 767px){
  .sp_invisible {
      display: none !important;
  }
}
@media print, screen and (min-width: 768px){
  .pc_invisible {
      display: none !important;;
  }
}

.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}

.text_red {
  color: #ff5454;
}

@media print, screen and (min-width: 768px){
  .bg_pattern {
    background: url(../images/bg_pattern.png) repeat;
  }
}

/* リスト
----------------------------------------------- */
.arrow_list_01 {
  list-style: none;
  padding: 0;
}
.arrow_list_01 li {
  border-top: 2px dotted #FC8F94;
  padding: 7px 0;
}
.arrow_list_01 li:last-child {
  border-bottom: 2px dotted #FC8F94;
}
.arrow_list_01 li::before {
  content: "";
  display: inline-block;
  border: 5px solid transparent;
  border-left-color: #DD3C44;
}
.arrow_list_01 li a:link, .arrow_list_01 li a:visited {
  color: #333;
}
.arrow_list_01 li a:hover, .arrow_list_01 li a:active {
  color: #22A115
}


/* ボタン
----------------------------------------------- */
.button {
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  padding: 10px 45px;
}
.button:hover,
.button:active {
  opacity: 0.5;
}

.button.primary {
  border: 1px solid #89B737;
  color: #fff !important;
  background: #89B737;
}
.button.red {
  border: 1px solid #ff5454;
  color: #ff5454 !important;
}
.button.white {
  border: 1px solid #fff;
  color: #fff !important;
}


@media screen and ( max-width: 480px ){
	.members {
		width: 100%;
		margin: 0 auto;　
		display: block;
		
	}
}
.i4ewOd-pzNkMb-haAclf {
	display: none;
}
.i4ewOd-pzNkMb-nK2kYb {
	display: none;
}
.i4ewOd-pzNkMb-jfdpUb-ornU0b {
	display: none;
}

