@charset "utf-8";

/*--------------------------------------------------------------
  header
--------------------------------------------------------------*/

.header_wrap {
  /* overflow: hidden; */
}

#header {
  position: relative;
  padding: 0;
  background-color: #fff;
	height: 190px;
  z-index: 999;
	transition: all .3s;
  /* box-shadow: 0px 5px 10px -2px rgba(0,0,0,0.3); */
}

.header_logo_area {
  position: fixed;
  z-index: 1000000;
  top: 0;
  left: 0;
  width: 100%;
	height: 190px;
  padding: 0;
  /* overflow: hidden; */
  background-color: #fff;
  /* box-shadow */
  box-shadow: 0px 4px 5px -2px rgba(10,10,10,0.1);
	background-image: url("../img/header-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	transition: all .3s;
}

h1.site_title {
	width: 100%;
	text-align: center;
	margin: 30px auto;
	line-height: 1;
	transition: all .3s;
}

h1.site_title a {
	display: inline-block;
	transition: all .1s;
}

h1.site_title a:hover {
	opacity: .7;
}

.global-nav {
  margin: 0;
}

@media screen and (min-width: 1025px) {
	/* スクロールしたときの設定 */
	#header.is_scroll {
		height: 100px;
	}

	.header_logo_area.is_scroll {
		height: 100px;
	}

	.header_logo_area.is_scroll .menu > ul {
    padding: 15px 0 0 0;
	}

	h1.site_title.is_scroll {
		width: 25%;
		margin: 10px auto 0;
	}

}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
  #header {
    height: 65px;
  }

	h1.site_title {
    width: 50%;
    float: left;
    margin: 10px 0 13px 2%;
  }

}

@media screen and (max-width : 767px) {
  #header {
    height: 65px;
    padding: 0;
    box-shadow: none;
    margin: 0;
  }

	.home #header {
    margin: 0;
  }

	.home .header_wrap {
    /* padding-bottom: 10px; */
  }

	.header_wrap {
    padding-bottom: 0;
  }

	h1.site_title {
    width: 75%;
    margin: 0 0 0 10px;
    padding: 16px 0 0 0;
  }

	h1.site_title img {
    width: 100%;
  }

	.contact_area {
    display: none;
  }

	.mobile_header_i {
    overflow: hidden;
    width: 20%;
    float: left;
    padding: 15px 0 0 8%;
    box-sizing: border-box;
  }

	.mobile_header_i a {
    display: inline-block;
    padding: 3px 10%;
  }

	.mobile_header_i a i.fa-phone-alt {
    color: #111;
    font-size: 3.3rem;
	}

}




/*--------------------------------------------------------------
  container・contents・rowの設定
--------------------------------------------------------------*/

#container {
  /*ページの大枠*/
  width: 100%;
}

.row {
  max-width: 1040px;
  margin: 0 auto;
}

.row_header {
  max-width: 1040px;
  margin: 0 auto;
}

.row_relative {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

#contents {
  /*ページの中枠*/
	padding: 0 0 150px;
	overflow: hidden;
	background-image: url("../img/footer-bg.png");
  background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
  .row,
  .row_header,
  .row_relative {
    padding: 0 15px;
  }
  #contents {
    padding: 0 0 70px;
  }
}


@media screen and (max-width : 767px) {
  .row,
  .row_header,
  .row_relative {
    padding: 0 15px;
  }
  #contents {
    /*ページの中枠*/
    padding: 0 0 40px;
  }
  .home #contents {
    /*ページの中枠*/
  }
}



/*--------------------------------------------------------------
  パンくずリスト
--------------------------------------------------------------*/

.breadcrumbs {
  margin: 0 auto 20px;
  padding-top: 2px;
}

.breadcrumbs span a,
.archive .breadcrumbs span a,
.category .breadcrumbs span a {
  font-size: 1.2rem;
  margin: 0;
  color: #51342f;
  display: inline-block;
}

.breadcrumbs span a span:hover {
  text-decoration: underline;
}
.single .breadcrumbs span,
.single .breadcrumbs span.post,
.blog .breadcrumbs span.post,
.archive .breadcrumbs span,
.archive .breadcrumbs span.archive,
.page .breadcrumbs span.post,
.search .breadcrumbs span.search {
  font-size: 1.2rem;
  margin: 0;
  display: inline-block;
  line-height: 1.5;
}

.breadcrumbs span.current-item {
  color: #1a9d48;
}

.breadcrumbs .fa-chevron-right {
  margin: 0 5px;
  font-size: 1.2rem;
  color: #aaa;
}

.breadcrumb a {
  /*パンくずリストのリンクの設定*/
  color: #000;
}

.breadcrumb a:hover,
.breadcrumb a:active {
  /*パンくずリストのリンクホバー時の設定*/
  color: #ccc;
}



@media screen and (max-width : 767px) {
	.breadcrumbs {
    margin: 0 auto 15px;
    padding: 3px 15px 0;
    line-height: 1.5;
  }
}



/*--------------------------------------------------------------
  main
--------------------------------------------------------------*/

#main {

}

#sidebar {

}

.cat_main,
.search_main {
  width: 75%;
  float: right;
}

.cat_sidebar {
  width: 22%;
  float: left;
}



@media screen and (max-width : 767px) {
	#main {
	  float: none;
	  padding: 0;
		width: 100%;
	}
  .blog #main,
  .single #main {
    padding: 10px 0 0;
  }
	#sidebar {
	  float: none;
		width: 100%;
	}
  .cat_main,
  .search_main,
  .cat_sidebar  {
    width: 100%;
    float: none;
  }
}



/*--------------------------------------------------------------
  mainvisu
--------------------------------------------------------------*/

.mainvisu {
  /*メイン画像の大枠*/
  width: 100%;
  /* height: 845px; */
  margin: 0 auto;
  padding: 0;
  /*メイン画像の背景　削除もしくは変更*/
  background-color: #fff;
  background-image: none;
  background-position: none;
  background-size: none;
}

.slide_area,
.fs-main {
  /*スライダー*/
  position: relative;
  margin: 0 auto 0;
  border: none;
}

.my_slick {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.my_slick .slick-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
  /*　画面サイズが768pxから1024pxまではここを読み込む　*/
  .mainvisu {
    /* padding: 60px 0 0; */
    /* width: 90%; */
    /* padding: 0; */
    /* margin: 40px auto 0; */
  }
}

@media screen and (max-width : 767px) {
  /*768以下の設定*/
  .mainvisu {
    /*メイン画像の大枠*/
    height: auto;
    margin: 0 auto;
  }
}



/*--------------------------------------------------------------
  subvisu
--------------------------------------------------------------*/

.subvisu {
  width: 100%;
}

.subvisu h1 {
	color: #236909;
	text-shadow:
	2px 2px 0 #fff,
	-2px 2px 0 #fff,
	-2px -2px 0 #fff,
	2px -2px 0 #fff;
  text-align: center;
	font-size: 30px;
  font-size: 3.0rem;
  font-weight: 400;
  margin: 0;
	padding: 73px 0;
	background-image: url("../img/sub-visual.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.news_subvisu {
	margin: 0 0 100px;
}

ul.post-meta {
  padding: 0;
  margin: 0;
}

ul.post-meta li {
  list-style: none;
}

span.post-meta-key {
  display: block;
  text-align: center;
  font-size: 4.0rem;
  font-family: "TBUDGothic B";
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.5;
}

.entry_header h1 {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: .2em;
}

.entry_header h1 span {
  font-size: 2.4rem;
  color: #dfcdb3;
  letter-spacing: .1em;
  display: block;
  font-family: "aisha-latin";
  font-weight: 400;
  font-style: normal;
}

.entry_content {
  padding: 30px 35px 0;
  /* width: 85%; */
  margin: 0 0 100px;
}

.blog .entry_content,
.single .entry_content,
.archive .entry_content {
  margin: 0 0 40px;
  padding: 15px 10px 50px;
	border-bottom: 1px dashed #cccccc;
}

.single .entry_footer {
  margin: 0 0 30px;
}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
	.news_subvisu {
    margin: 0 0 50px;
	}

  .entry_content {
    padding: 30px 15px 0;
    margin: 0 0 60px;
  }
}

@media screen and (max-width : 767px) {
	.news_subvisu {
		margin: 0 0 30px;
	}
  /*768以下の設定*/
  .subvisu h1 {
		padding: 50px 0;
  }
  span.post-meta-key {
    font-size: 3.0rem;
    letter-spacing: .1em;
    line-height: 1.3;
  }
  .entry_header h1 {
    font-size: 2.8rem;
    letter-spacing: .1em;
    line-height: 1.2;
  }
  .entry_header h1 span {
    font-size: 1.8rem;
  }
  .entry_content {
    padding: 0;
    margin: 0 0 50px;
  }
  .blog .entry_content,
  .single .entry_content,
  .archive .entry_content {
    margin: 0 0 40px;
    padding: 15px 0 30px;
  }
}



/*--------------------------------------------------------------
  thumbnail
--------------------------------------------------------------*/



/*--------------------------------------------------------------
  widget
--------------------------------------------------------------*/

.widget_title,
.main_page .widget_title {
  position: relative;
	color: #1a9d48;
	padding: 0 0 10px;
	box-sizing: border-box;
	font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 15px;
	font-weight: 100;
	line-height: 1;
	border-bottom: 1px dotted #cccccc;
}

.main_page .widget_title::before {
	border: none;
}

.widget ul {
  padding: 0 0 0 5px;
  margin: 0 0 60px;
}

.widget ul li {
  list-style: none;
}

.widget ul li a {
	position: relative;
	font-size: 15px;
  font-size: 1.5rem;
  /* display: block; */
  color: #1a9d48;
  padding: 0 0 0 10px;
	box-sizing: border-box;
	/* overflow: hidden; */
  /* display: -webkit-box; */
  /* -webkit-box-orient: vertical; */
  /* -webkit-line-clamp: 1; */
	transition: all .3s;
}

.widget ul li a:hover {
	color: #333;
}

.widget.days ul li a {
	color: #333;
}

.widget.days ul li a:hover {
  color: #1a9d48;
}

.widget ul li a::before {
	font-family: "Font Awesome 5 Free";
  content: '\f0da';
  font-weight: 900;
	font-size: 15px;
	font-size: 1.5rem;
  color: #1a9d48;
  position: absolute;
  top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.widget_recent_entries ul li a {
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 10px 15px 10px 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.widget ul li ul.children {
  padding: 0;
  margin: 0;
}

.widget ul li ul.children li {
	padding: 0 0 0 10px;
	box-sizing: border-box;
}

.widget ul li ul.children li a {
	color: #333;
}

.widget ul li ul.children li a:hover {
	color: #1a9d48;
}

.widget ul li ul.children li a::before {
	font-family: "Font Awesome 5 Free";
  content: '・';
  font-weight: 900;
	font-size: 1rem;
	color: #333;
  position: absolute;
  top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}



@media screen and (max-width: 767px) {

  .widget_title {
    padding: 8px 0;
    margin: 10px 0 15px;
  }

	.widget ul {
		margin: 0 0 30px;
	}

  .widget span {
  	position: absolute;
  	top: 0;
  	right: 0;
  	display: block;
  	height: 100%;
  	width: 35.5px;
  }

  .widget span::before,
  .widget span::after {
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	display: block;
  	background-color: #fff;
  	content: '';
  	margin: auto;
  	-webkit-transition: all 0.4s;
  	transition: all 0.4s;
  }

  .widget span::before {
  	height: 2px;
  	width: 13.5px;
  }

  .widget span::after {
  	height: 13.5px;
  	width: 2px;
  }

  .widget .qa-open span::after {
  	opacity: 0;
  }
  .widget ul.widget_cat,
  .widget_archive ul,
  .widget_recent_entries ul {
    display: none;
  }

}


/*--------------------------------------------------------------
  page link 投稿のページでのページ送り
--------------------------------------------------------------*/

.nav-links {
  overflow: hidden;
  display: block;
  /* width: 70%; */
  margin: 0 auto 30px;
	transition: all .3s;
}

.nav_next {
  /*次の記事へのリンク*/
  text-align: right;
  display: block;
  float: right;
}

.nav_previous {
  /*次の記事へのリンク*/
  display: block;
  text-align: left;
  float: left;
}

.nav-links,
.nav_previous,
.nav_next {
  /*ページ送りの共通スタイル*/
  padding: 0;
}

.single .nav-links a {
  /*ページ送りのリンク*/
	font-size: 16px;
	font-size: 1.6rem;
  padding: 5px 15px;
	margin: 0 2px;
	color: #1a9d48;
	border: 1px solid #1a9d48;
	transition: all .3s;
}

.single .nav-links a:hover {
	color: #fff;
  background-color: #1a9d48;
}

.nav-links .current {
  /*ページ送りの現在のページ箇所の設定*/
  padding: 10px;
  text-align: center;
}

.link_page_nav {
  /*ページを分割したときのリンクの設定*/
  margin-bottom: 50px;
  text-align: right;
}

.link_page_nav span {
  /*ページを分割したときのリンクの設定*/
  display: inline-block;
  padding: 0;
}

.link_page_nav span {
  /*ページを分割したときのリンクの設定*/
  font-size: 13px;
  line-height: 30px;
  display: inline-block;
  overflow: hidden;
  width: 30px;
  height: 30px;
  margin: 0 5px 0 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  text-overflow: ellipsis;
  color: #999;
  border-radius: 3px;
  background: #ccc;
}

.link_page_nav a span {
  /*ページを分割したときのリンクの設定*/
  color: #fff;
  background: #ccc;
}

.link_page_nav a:hover span {
  /*ページを分割したときのリンクの設定*/
  color: #000;
  background: #ccc;
}

.blog .nav-links,
.category .nav-links,
.archive .nav-links,
.blog .wp-pagenavi,
.category .wp-pagenavi,
.archive .wp-pagenavi {
	text-align: center;
  padding: 10px 0;
	display: flex;
	justify-content: center;
}

.blog .pagination h2,
.category .pagination h2,
.archive .pagination h2,
.blog .wp-pagenavi .pages,
.category .wp-pagenavi .pages,
.archive .wp-pagenavi .pages {
	display: none;
}

.blog .nav-links .page-numbers,
.category .nav-links .page-numbers,
.archive .nav-links .page-numbers,
.blog .wp-pagenavi a,
.category .wp-pagenavi a,
.archive .wp-pagenavi a {
  /*ページ送りのナンバー設定*/
	font-size: 16px;
	font-size: 1.6rem;
	padding: 5px 15px;
	margin: 0 2px;
	border: 1px solid #1a9d48;
	color: #333;
	transition: all .3s;
}

.blog .wp-pagenavi a i,
.category .wp-pagenavi a i,
.archive .wp-pagenavi a i {
	color: #1a9d48;
	transition: all .3s;
}

.blog .page-numbers:hover,
.category .page-numbers:hover,
.archive .page-numbers:hover,
.blog .wp-pagenavi a:hover,
.category .wp-pagenavi a:hover,
.archive .wp-pagenavi a:hover {
	background-color: #1a9d48;
	color: #fff;
}

.blog .wp-pagenavi a:hover i,
.category .wp-pagenavi a:hover i,
.archive .wp-pagenavi a:hover i {
	color: #fff;
}

.blog .page-numbers.current,
.category .page-numbers.current,
.archive .page-numbers.current,
.blog .wp-pagenavi .current,
.category .wp-pagenavi .current,
.archive .wp-pagenavi .current {
	font-size: 16px;
	font-size: 1.6rem;
  padding: 5px 15px;
	margin: 0 2px;
	background-color: #1a9d48;
	border: 1px solid #1a9d48;
	color: #fff;
}

.wp-pagenavi .extend {
	display: flex;
	align-items: center;
}

@media screen and (max-width : 767px) {
  /*ページ送りの768px以下の設定*/
  .nav-links {
    overflow: hidden;
    display: block;
    width: 35%;
    margin: 0 auto 30px;
  }
  .blog .nav-links,
  .single .nav-links,
  .archive .nav-links,
  .category .nav-links {
    width: 100%;
  }
}



/*--------------------------------------------------------------
  category
--------------------------------------------------------------*/

.category_area {
  padding: 0 15px;
}

.category_area a {
  /*お知らせのカテゴリーのリンクの設定*/
  font-size: 13px;
  font-size: 1.3rem;
  padding: 4px 10px 2px 10px;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 5px;
  background: #fff0f0;
  color: #333;
  display: inline-block;
}

.category_area a:hover {
  /*お知らせのカテゴリーのホバー時の設定*/
  color: #fff;
  background: #c31230;
}



/*--------------------------------------------------------------
  tag（タグを使わない場合は不要）
--------------------------------------------------------------*/
.tagcloud a {
  /*お知らせのタグクラウドのリンクの設定*/
  font-size: 12px;
  font-size: 1.2rem;
  padding: 5px 10px;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid #ccc;
}

.tagcloud a:hover {
  /*お知らせのタグクラウドのホバー時の設定*/
  color: #fff;
  border: 1px solid #ccc;
  background-color: #999;
}

.tagcloud a:hover span {
  /*お知らせのタグクラウドのリンク背景の設定*/
  color: #999;
  background-color: #fff;
}

.tag-area a {
  /*お知らせのタグのリンクの設定*/
  font-size: 13px;
  font-size: 1.3rem;
  padding: 4px 10px 2px 10px;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 5px;
  background: #999;
}
/*お知らせのタグのホバー時の設定*/
.tag-area a:hover {
  color: #fff;
  background: #ccc;
}



/*--------------------------------------------------------------
  footer
--------------------------------------------------------------*/
.page-top {
	line-height: 1.0;
	position: fixed;
	bottom: 150px;
	right: 0;
	width: 60px;
  height: 67px;
  border-radius: 5px 0 0 5px;
	text-align: center;
	font-size: 1.2rem;
	z-index: 999;
  background-color: #ffaa00;
}

.page-top a {
	display: block;
	height: 57px;
	color: #fff;
	padding-top: 10px;
  transition: .2s all;
}

.page-top a:hover {
	padding-top: 5px;
}

.external_facility {
	background: #f9faf1;
}

.external_facility ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 37px 20px;
}

.external_facility ul li {
	width: 32%;
	list-style: none;
}
.external_facility ul li a {
	font-size: 18px;
	font-size: 1.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
	padding: 30px 0;
	box-sizing: border-box;
	transition: all .3s;
	line-height: 1;
	background-image: url("../img/footer-btn.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.external_facility ul li a i {
	font-size: 17px;
	font-size: 1.7rem;
	color: #1a9d48;
	margin-left: 5px;
}

.external_facility ul li a:hover {
	color: #1a9d48;
	transform: scale(0.97);
}

.footer {
  background: #1a9d48;
  padding: 0 0 5px;
  overflow: hidden;
  position: relative;
}

.footer_conts {
  padding: 50px 0 10px;
}

.footer_conts .inner_wrap {
  overflow: hidden;
  margin-bottom: 25px;
}

.footer_conts .inner_wrap .left {
  float: left;
  width: 36%;
}

.footer_conts .inner_wrap .right {
  float: right;
  width: 57%;
}

.office_address {
  margin: 0 0 20px;
}

.footer h2 {
  margin: 0;
}

.footer h2 a {
	display: inline-block;
	transition: all .3s;
}

.footer h2 a:hover {
	opacity: .7;
}

.footer h2 img {
  display: block;
}

.office_address p {
	line-height: 1.9;
	margin: 5px 0 10px;
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: 0px;
}

.footer_nav_wrap {
  padding-top: 20px;
  margin: 0;
}

.footer_nav_wrap ul {
	display: flex;
  margin: 0 auto;
  width: 100%;
  /* height: 38px; */
  /* overflow: hidden; */
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
  overflow: hidden;
}

.footer_nav_wrap ul li {
  float: left;
  width: 20%;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  text-align: center;
}

.footer_nav_wrap ul li a {
  color: #fff;
  display: block;
  padding: 5px 0;
  font-size: 1.6rem;
	transition: all .3s;
}

.footer_nav_wrap ul li a:hover,
.footer_nav_wrap ul li.current a {
  color: #ffaa00;
}

.copyright_area {
  text-align: center;
  color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
}

.copyright_area img {
	width: 12px;
	height: 12px;
}

.copyright_area a {
	display: inline-block;
	color: #fff;
	transition: all .3s;
}

.copyright_area a:hover {
	opacity: .7;
}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
	.external_facility ul {
		padding: 30px 0;
	}

	.external_facility ul li a {
		font-size: 15px;
		font-size: 1.5rem;
	}

	.footer h2 {
		text-align: center;
	}

	.footer_conts {
    padding: 20px 0 10px;
	}

	.footer_conts .inner_wrap {
    margin-bottom: 15px;
	}

	.footer_conts .inner_wrap .left {
    float: none;
    width: 100%;
  }

	.footer_conts .inner_wrap .right {
    float: none;
    width: 100%;
  }

	.office_address {
		margin: 10px 0;
	}

	.office_address p {
    font-size: 1.5rem;
    text-align: center;
		margin: 0;
  }

}


@media screen and (max-width : 767px) {
  .page-top {
		bottom: 70px;
  	width: 50px;
    height: 57px;
  }
  .page-top a {
  	height: 47px;
  	padding-top: 7px;
  }

	.external_facility ul {
		display: block;
		padding: 30px 0 20px;
	}

	.external_facility ul li {
		width: 100%;
		margin-bottom: 10px;
	}

	.footer h2 {
		text-align: center;
	}


	.footer_conts {
    padding: 30px 0 10px;
  }

	.footer_conts .inner_wrap {
    margin-bottom: 0;
  }

	.footer_conts .inner_wrap .left,
  .footer_conts .inner_wrap .right {
    float: none;
    width: 100%;
  }

	.office_address {
    padding: 0;
    margin: 0 0 30px;
  }

	.office_address p {
    line-height: 1.5;
    margin: 5px 0 10px;
    text-align: center;
  }

	.footer_link ul li {
    margin-right: 20px;
  }

}



/*--------------------------------------------------------------
  original class
--------------------------------------------------------------*/

.required {
  /*注目箇所のフォントカラー*/
  color: red;
}

.text-center {
	text-align: center;
}

.display_sp {
	display: none;
}

.display_none {
	display: none;
}

@media only screen and (max-width: 1024px) {
  .display_pc {
		display: none;
	}

	.display_sp {
		display: block;
	}

}



/*--------------------------------------------------------------
  google map
  GoogleMapをレスポンシブにする設定
--------------------------------------------------------------*/

@media screen and (max-width : 767px) {
  .ggmap,
  .iframe_wrap {
    /*GoogleMapを入れるときはclass名にggmapを入れてください*/
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 30px;
    padding-bottom: 56.25%;
  }

  .ggmap iframe,
  .ggmap object,
  .ggmap embed,
   iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
