@charset "utf-8";

/*=======================================================
基本設定
=======================================================*/
*{
	margin: 0;
	padding: 0;
}
*, *: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;
	font-style: normal;
	-webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
	line-break: strict;
	word-wrap: break-word;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
*,*:focus,a:focus{
	outline:none;
}
html{
	font-family: "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, 
	"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 17px;
	letter-spacing: 0.04em;
	-webkit-text-size-adjust: 100%;
	color: #222; 
}
body,header,main,footer{
	min-width:1020px;
}
body{
    background: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
article,aside,figcaption,figure, 
footer,main,header,nav,section {
	display: block;
}
table{
	border-collapse: separate;
	border-spacing: 0;
}
ul,ol{
	list-style: none;
}
p,li,dt,dd,th,td{
	-ms-line-break:strict;
	line-break:strict;
	-ms-word-break:break-strict;
	word-break:break-strict;
}
a {
	text-decoration: none;
}
a:hover,.hp_hover:hover{
	opacity: 0.7;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
figure {
	line-height: 0;
}
img{
	max-width: 100%;
	height: auto;
	border-style: none;/* IE10 */
}
input, button, select, textarea{
    -webkit-appearance: none;
	border-radius: 0;
	appearance: none;
	background-color: transparent;
	border: none;
	cursor: pointer;
	font-size: 16px;
    outline: none;
}
/*PC/SP*/
.pc{
	display: initial!important;
}
.sp{
	display: none!important;
}
/*電話番号タップ*/
a[href^="tel:"] {
    pointer-events: none;
	cursor: default;
}
@media only screen and (min-device-width:1025px) {
  a:hover,.hp_hover:hover{
      opacity: 0.7;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all  0.3s ease;
  }
  label:hover{
      cursor: pointer;
  }
}
@media screen and (max-width : 750px){
	html{
		font-size: 32px;
	}
	body,header,main,footer{
		min-width:750px;
		max-width:750px;
		width:100%;
	}
	body {
		overflow-x: hidden;
	}
	.sp{
		display: initial!important;
	}
	.pc{
		display: none!important;
	}
	a[href^="tel:"] {
    	pointer-events: initial;
	}
}

/*=============================
　共通デザイン
==============================*/
/*コンテンツ内側*/
.ly_head_inner,
.ly_foot_inner,
.ly_cont_inner{
    width: 1020px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
/*各sectionメイン見出し*/
.el_sec_mainTtl{
    display: flex;
    justify-content: center;
	align-items: center;
}
/*bl_media*/
.bl_media{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.bl_media_imgWrapper{
    width: 500px;
}
.bl_media_body{
    width: 510px;
}
.bl_media_body > *:last-of-type{
    margin-bottom: 0;
}
.bl_media_body p{
    margin-bottom: 25px;
}
.bl_media__rev{
    flex-direction: row-reverse;
}
/*bl_card*/
.bl_cardUnit{
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}
.bl_card{
    position: relative;
}
/*bl_bulletList*/
.bl_bulletList > *:last-of-type{
    margin-bottom: 0;
}
.bl_bulletList > li{
    margin-bottom: 5px;
    padding-left: 1em;
    position: relative;
}
.bl_bulletList > li::before{
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
/*bl_vertPosts*/
.bl_vertPosts_item{
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1ecda;
    display: flex;
	align-items: center;
}
.bl_vertPosts_header{
    margin-right: 40px;
}
.bl_vertPosts_date{
    width: 111px;
    height: 26px;
    font-size: 15px;
}
.bl_vertPosts_ttl{
    color: #222;
    font-size: 16px;
}
/*el_btn*/
.el_btn{
    margin-right: auto;
    margin-left: auto;
    padding-top: 7px;
    padding-right: 20px;
    background: #000;
	color: #fff;
	font-weight: bold;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.el_btn::after{
	content: "";
	display: block;
	width: 0;
	height: 0;
    margin-top: auto;
    margin-bottom: auto;
	border-style: solid;
	border-width: 4.5px 0 4.5px 8px;
	border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
}
.el_btn__orange{
    background: #ee9e21;
    border-bottom-color: #9b6715;
}
/*el_label*/
.el_label{
    padding-top: 3px;
    background: #000;
    color: #fff;
    display: flex;
	justify-content: center;
	align-items: center;
}
/*el_triangleLink*/
.el_triangleLink{
    padding: 0 0 0 1em;
    color: #000 ;
    font-weight: bold;
    position: relative;
}
.el_triangleLink::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent ;
    position: absolute;
    top: 7px;
    left: 0;
}
/*※*/
.el_att{
    padding: 0 0 0 1em;
	text-indent: -1em;
}
.el_att::before{
	content: "※";
}
/*サムネイル*/
.el_thumbnail{
    width: 1px;
    height: 1px;
}
.el_thumbnail img{
    width: auto;
    min-width: 1px;
    min-height: 1px;
    max-width: 120%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	transform: translateY(-50%) translateX(-50%);
}
.el_thumbnail .el_noImg{
    width: 1px;
	height: 1px;
}
/*お問い合わせボックス*/
.bl_cta{
	width: 786px;
    height: 220px;
    padding-top: 28px;
	margin: 0 auto 54px;
	border: 2px solid #095c85;
}
.bl_cta .ly_cont_inner{
    display: flex;
	justify-content: center;
	align-items: center;
}
.bl_cta_ttl{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 22px;
}
.bl_cta_tel {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	position: relative;
	padding-left: 20px;
	flex-wrap: wrap;
}
.bl_cta_tel::before {
	content: "";
    display: block;
    background: url(images/common/icon_tel.svg) no-repeat;
    width: 40px;
    height: 40px;
    margin-top: -6px;
    background-size: contain;
    margin-right: 14px;
}
.bl_cta_tel span {
	margin-left: 15px;
}
.bl_cta_att {
	padding-left: 145px;
}
/*下層-大見出し*/
.bl_lowerMv {
	border-bottom: 4px solid #a0905f;
}
.el_lower_lv1Heading{
	height: 225px;
	text-align: center;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	position: relative;
	letter-spacing: 0.1em;
	padding-top: 67px;
}
.el_lower_lv1Heading::before {
	display: block;
	margin-bottom: 18px;
	font-size: 18px;
	letter-spacing: 0.05em;	
}
.el_lower_lv1Heading::after {
	content: "";
	display: block;
	width: 53px;
	height: 2px;
	background: #a0905f;
	position: absolute;
	top: 98px;
	left: 0;
	right: 0;
	margin: auto;
}
/*下層-パンくず*/
.bl_breadcrumbs {
	width: 1020px;
	margin: auto;
    padding-top: 15px;
	display: flex;
	align-items: center;
}
.bl_breadcrumbs li {
	font-size: 14px;
	letter-spacing: 0.1em;
	display: flex;
    align-items: center;
}
.bl_breadcrumbs li:first-of-type ~ li::before{
	content: ">";
	margin-right: 7px;
    margin-left: 7px;
}
.bl_breadcrumbs li a {
	color: #006699;
	text-decoration: underline;
}
@media screen and (max-width : 750px){
/*コンテンツ内側*/
  .ly_head_inner,
  .ly_foot_inner,
  .ly_cont_inner{
      width: 690px;
  }
/*bl_media*/
  .bl_media{
      display: block;
  }
  .bl_media_imgWrapper{
      width: 100%!important;
      margin-bottom: 50px;
  }
  .bl_media_body{
      width: 100%!important;
      margin-top: 0;
  }
  .bl_media_body p{
      margin-bottom: 35px;
  }
/*bl_card*/
  .bl_cardUnit{
      display: block;
  }
  .bl_card{
      width: 100%!important;
  }
  .bl_card + .bl_card{
      margin-top: 40px;
  }
  .bl_card_imgWrapper,
  .bl_card_body{
      width: 100%!important; 
  }
/*bl_vertPosts*/
  .bl_vertPosts_item{
      padding-top: 30px;
      padding-bottom: 30px;
      border-bottom: 2px solid #e1ecda;
  }
  .bl_vertPosts_date{
      width: 172px;
      height: 40px;
      font-size: 24px;
  }
  .bl_vertPosts_ttl{
      font-size: 26px;
  }
/*bl_table__scroll*/
  .bl_table__scroll{
      padding-bottom: 20px;
      overflow-y: scroll;
  }
  .bl_table__scroll::before{
      content: "横にスクロールしてください。";
      display: block;
      margin-bottom: 15px;
      font-size: 22px;
      position: -webkit-sticky;
      position: sticky;
      left: 0;
  }
  .bl_table__sticky{
      position: -webkit-sticky;
      position: sticky;
      left: -1px;
  }
/*el_btn*/
  .el_btn{
  }
/*el_label*/
  .el_label{
      padding-top: 0;
  }
/*el_triangleLink*/
  .el_triangleLink::before{
      border-width: 8.5px 0 8.5px 17px;
  }
/*サムネイル*/
  .el_thumbnail{
      width: 1px;
      height: 1px;
  }
/*お問い合わせボックス*/
	.bl_cta {
		width: 690px;
		height: auto;
		padding: 35px 0;
	}
	.bl_cta_ttl {
		font-size: 34px;
	}
	.bl_cta_tel {
		margin-bottom: 25px;
		padding-left: 0;
	}
	.bl_cta_tel img {
		width: 458px;
	}
	.bl_cta_tel::before {
		width: 60px;
		height: 60px;
		margin-top: -6px;
		background-size: contain;
		margin-right: 14px;
	}
	.bl_cta_tel span {
		margin-top: 15px;
		margin-left: 0;
	}
	.bl_cta_att {
		padding-left: 0;
		width: 580px;
		margin: auto;
	}
/*下層-大見出し*/
  .el_lower_lv1Heading{
      padding-top: 47px;
      font-size: 36px;
  }
	.el_lower_lv1Heading::before {
		font-size: 28px;
		margin-bottom: 28px;
	}
	.el_lower_lv1Heading::after {
		width: 86px;
		height: 4px;
		top: 92px;
	}
/*下層-パンくず*/
	.bl_breadcrumbs {
		width: 690px;
	}
	.bl_breadcrumbs li {
		font-size: 26px;
	}
	.bl_breadcrumbs li:first-of-type ~ li::before {
		margin-right: 10px;
		margin-left: 10px;
	}
}
/*=============================
　ヘルプタグ
==============================*/
/*margin*/
.hp_mb10{
    margin-bottom: 10px!important;
}
/*bold*/
.hp_bold{
    font-weight: bold!important;
}
/*opacity1*/
.hp_opacity1{
    opacity: 1!important;
}
/*アクセントカラー*/
.hp_color__red{
    color: #e14636;
}
/*小文字*/
.hp_font__small {
	font-size: 15px;
}
@media screen and (max-width : 750px){
	.hp_font__small {
		font-size: 24px;
	}
}
/*=============================
　header
==============================*/
.ly_head{
	width: 100%;
	background: #0b6894;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
}
.is-fixed  {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	background: rgba(255,255,255,.9);
}
.ly_head_inner{
    display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 17px;
}
/*ロゴ*/
.bl_head_logoUnit {
    display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 404px;
}
.el_head_logo img {
	vertical-align: bottom;
}
.el_head_union {
	color: #fff;
	font-size: 13px;
	line-height: 1.46;
	margin-top: 4px;
	margin-right: 35px;
	display: flex;
	align-items: flex-start;
}
.el_head_union::before {
	content:"";
	display: block;
	background: url(images/common/union_logo.svg) no-repeat;
	width: 46px;
	height: 38px;
	margin-right: 6px;
}
/*電話とお問い合わせ*/
.bl_contactUnit {
    display: flex;
	justify-content: space-between;
	align-items: center;
	width: 528px;
}
.el_tel {
    display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.el_tel::before {
	content: "";
	display: block;
	background: url(images/common/icon_tel.svg) no-repeat; 
	width: 28px;
	height: 28px;
	margin-top: -6px;
	margin-right: 10px;
}
.el_time {
	color: #fff;
	font-size: 13px;
	margin-left: 30px;
}
.el_head_btn {
	background: #a0905f;
	width: 234px;
	height: 55px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding-top: 3px;
	padding-left: 40px;
	position: relative;
}
.el_head_btn::before {
	content: "";
	display: block;
	background: url(images/common/icon_mail.svg) no-repeat; 
	width: 27px;
	height: 15px;
	position: absolute;
	top: 21px;
	left: 35px;
}
/*ナビ*/
#el_spNavInput {
	display: none;
}
.bl_head_gloNav {
	background: #002237;
}
.bl_head_gloNav_inner{
	width: 1020px;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}
.bl_head_gloNav_inner a {
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.08em;
	width: 226px;
    display: flex;
	justify-content: center;
	align-items: center;
	height: 39px;
}
.bl_head_gloNav_inner li {
	position: relative;
}
.bl_head_gloNav_inner li::after {
	content: "";
	display: block;
	width: 1px;
	height: 39px;
	background: #a0905f;
	position: absolute;
	top: 0;
	right: 0;
}
.bl_head_gloNav_inner .home::before {
	content: "";
	display: block;
	width: 1px;
	height: 39px;
	background: #a0905f;
	position: absolute;
	top: 0;
	left: 0;
}
.bl_head_gloNav_inner .home a {
	width: 114px;
}
.bl_head_gloNav_inner .airport {
	padding-left: 12px;
}
.bl_head_gloNav_inner .airport span {
	font-size: 16px;
}
@media screen and (max-width : 750px){
	.ly_head{
		height: 136px;
		background: none;
	}
	.ly_head_inner {
		padding: 25px 104px 25px 0;
	}
	.ly_head::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background: #0b6894;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 900;
	}
	.ly_head_inner{
		z-index: 1000;
	}
/***ロゴ***/
	.bl_head_logoUnit {
		width: auto;
	}
	.el_head_logo img {
		width: 245px;
		height: 70px;
		vertical-align: middle;
	}
	.el_head_union {
		display: none;
	}
/***お問い合わせ***/
	.bl_contactUnit {
		width: 304px;
	}
	.el_head_btn {
		width: 168px;
		height: 92px;
		border-radius: 5px;
		padding: 45px 0 0;
		font-size: 22px;
		position: relative;
	}
	.el_head_btn::before {
		width: 42px;
		height: 24px;
		background-size: contain;
		top: 17px;
    	left: 0;
    	right: 0;
    	margin: auto;
	}
/***電話する***/
	.el_tel a {
    	margin-bottom: 0;
    	width: 120px;
    	height: 92px;
    	background: #fff;
    	border-radius: 5px;
		display: block;
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		position: relative;
		padding-top: 53px;
		color: #064469;
	}
	.el_tel::before {	
		position: absolute;
    	top: 30px;
    	left: 0;
    	right: 0;
    	width: 36px;
    	height: 36px;
    	background-size: contain;
    	margin: auto;
		z-index: 2;
	}
/***ナビ***/
	.bl_head_gloNav,
	.el_spNavMenuIcon{
		display: block;
		background: none;
		width: 80px;
		height: 90px;
		position: absolute;
		top: 13px;
		right: 15px;
	}
  /*MENUボタン*/
  .el_spNavMenuIcon{
      position: relative;
	  height: 100%;
  }
  .el_spNavMenuIcon span {
      position: absolute;
      left: 0;
      width: 80px;
      height: 6px;
      background-color: #fff;
      border-radius: 2.5px;
      transition: all .4s;
      z-index: 1000;
  }
  .el_spNavMenuIcon span:nth-of-type(1) {
      top: 0;
  }
  .el_spNavMenuIcon span:nth-of-type(2) {
      top: 25px;
  }
  .el_spNavMenuIcon span:nth-of-type(3) {
      bottom: 34px;
  }
  #el_spNavInput:checked ~ .el_spNavMenuIcon span:nth-of-type(1) {
      -webkit-transform: translateY(23px) rotate(-315deg);
      transform: translateY(23px) rotate(-315deg);
  }
  #el_spNavInput:checked ~ .el_spNavMenuIcon span:nth-of-type(2) {
      opacity: 0;
  }
  #el_spNavInput:checked ~ .el_spNavMenuIcon  span:nth-of-type(3) {
      -webkit-transform: translateY(-28px) rotate(315deg);
      transform: translateY(-28px) rotate(315deg);
  }
  .el_spNavMenuIcon::after{
      content: "MENU";
	  font-size: 22px;
	  font-weight: bold;
	  color: #fff;
      display: block;
      position: absolute;
      bottom: -8px;
      left: 0;
      right: 0;
      z-index: 1000;
      text-align: center;
  }
  /*中身*/
  .bl_head_gloNav_inner{
      width: 100%;
      height: 100vh;
	  top: 136px;
      left: 0;
      z-index: 800;
      position: fixed;
      display: block;
      padding-top: 30px;
	  padding-bottom: 120px;
	  overflow: scroll;
  }
	.bl_head_gloNav_inner li::after,
	.bl_head_gloNav_inner .home::before {
		content: none;
	}
 .bl_head_gloNav_inner > li > a {
		width: 100%!important;
		font-size: 34px;
		height: 140px;
  }
	.bl_head_gloNav_inner .airport span {
		font-size: 34px;
	}
  .bl_spNavBgBlack{
      width: 100%;
      height: 100vh;
      background: rgba(9,44,65,0.95);
      position: fixed;
	  top: 136px;
      left: 0;
      z-index: 700;
      display: block;
  }
  /*閉じるボタン*/
  .bl_head_gloNav_inner .el_trigerClose{
      content: "閉じる";
      width: 259px;
      height: 75px;
      margin: 50px auto 0;
      background: #fff;
      border-radius: 40px;
      color: #002237;
      font-size: 34px;
      font-weight: bold;
      display: flex!important;
      justify-content: center;
      align-items: center;
  }
/* 隠しておく */
  .bl_spNavBgBlack{
      opacity: 0;
      visibility: hidden;
  }
  .bl_head_gloNav_inner{
      -webkit-transform: translateY(-200%);
      transform: translateY(-200%);
  }
/*表示（右へスライド）*/
  #el_spNavInput:checked ~ .bl_spNavBgBlack,
  #el_spNavInput:checked ~ .bl_head_gloNav_inner{
      opacity: 1;
      visibility: visible;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all  0.5s ease;
  }
  #el_spNavInput:checked ~ .bl_head_gloNav_inner{
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}
/*=============================
　main
=============================*/
main {
	flex: 1 0 auto;
	min-height: 1px;/*IE11 img resizing bug*/
	padding-top: 152px;
}
@media screen and (max-width : 750px){
	main {
		padding-top: 136px;
	}
}
/*=============================
　footer
=============================*/
.ly_foot{
	margin-top: auto;
	background: #002237;
	padding-top: 36px;
	height: 116px;
	position: relative;
}
/*ロゴ*/
.el_foot_logo img {
    width: 193px;
	height: 52px;
}
/*ナビ*/
.bl_foot_gloNav {
	position: absolute;
	top: 0;
	left: 317px;
}
.bl_foot_gloNav_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 583px;
}
.bl_foot_gloNav_inner li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_foot_gloNav_inner li:not(:last-of-type)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 16px;
	background: #fff;
	margin-top: -2px;
}
.bl_foot_gloNav_inner a {
	margin-right: 18px;
	font-size: 15px;
	color: #fff;
}
/*電話番号*/
.bl_foot_add {
	position: absolute;
	top: 34px;
	left: 317px;
	color: #fff;
	font-size: 15px;
}
.bl_foot_add a {
	color: #fff;
}
.bl_foot_add span {
	margin-right: 14px;
}
/*コピーライト*/
.bl_foot_copyright{
	width: 100%;
	padding: 5px 0;
	background: #020e15;
	text-align: center;
}
.bl_foot_copyright small{
	color: #6d7d86;
	font-size: 11px;
	font-family: Verdana;/* Android */
}
/*ページトップボタン*/
.el_pagetop{
	width: 1040px;
	height: 0;
	margin: 0 auto;
    text-align: right;
	position: relative;
}
.el_pagetop span {
	width: 58px;
	height: 91px;
	cursor: pointer;
	z-index: 9998;
}
.el_pagetop img{
    height: 100%;
	opacity:0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all  0.5s ease-in-out;
}
.el_pagetop .in img{
	opacity: 1;
}
@media screen and (max-width : 1400px){
/***ページトップボタン***/
  .el_pagetop{
      width:100%;
  }
  .el_pagetop span{
      right: 20px;
  }
}
@media screen and (max-width : 750px){
	.ly_foot {
		padding-top: 0;
		height: 470px;
	}
	.ly_foot_inner {
		width: 100%;
	}
/*ナビ*/
	.bl_foot_gloNav {
		left: 0;
		width: 100%;
	}
	.bl_foot_gloNav_inner {
		width: 100%;
		flex-wrap: wrap;
	}
	.bl_foot_gloNav_inner a {
		margin-right: 0;
		font-size: 32px;
		width: 374px;
		height: 98px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.bl_foot_gloNav_inner a span {
		font-size: 26px;
	}
	.bl_foot_gloNav_inner li {
		border-bottom: 1px solid #fff;
	}
	.bl_foot_gloNav_inner li:nth-of-type(odd) {
		border-right: 1px solid #fff;
	}
	.bl_foot_gloNav_inner li:not(:last-of-type)::after {
		content: none!important;		
	}
/*ロゴ*/
	.el_foot_logo {
		position: absolute;
		bottom: 104px;
		left: 0;
		right: 0;
		text-align: center;
	}
	.el_foot_logo img {
		width: 345px;
		height: 96px;
	}
/*電話番号*/
	.bl_foot_add {
		top: initial;
		font-size: 26px;
		bottom: 23px;
		right: 0;
		left: 0;
		text-align: center;
	}
/*ページトップボタン*/
	.el_pagetop{
		width: 750px;
	}
	.el_pagetop span{
		width: 92px;
		height: 146px;
		right: 25px;
		bottom: 25px;
	}
	.el_pagetop img {
		width: 92px;
	}
/*コピーライト*/
	.bl_foot_copyright small {
		font-size: 16px;
	}

}
/*=============================
　下層ページ共通
==============================*/
main.lower 

/*=============================
　投稿関係
==============================*/
/*bl_catList*/
.bl_catList{
	margin-bottom: 40px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 30px;
	border: 1px solid #000;
	display: flex;
	align-items: center;
}
.bl_catList_ttl{
	margin-right: 30px;
	padding-top: 3px;
	color: #000;
	font-size: 20px;
	font-weight: bold;
}
.bl_catList_inner{
	display: flex;
	flex-wrap: wrap;
}
.bl_catList_inner li{
	margin-right: 10px;
}
/*el_catLabel*/
.el_catLabel{
	display: inline-block;
	padding-top: 8px;
	padding-right: 18px;
	padding-bottom: 5px;
	padding-left: 17px;
	color: #fff;
	font-weight: bold;
}
.el_catLabel.information{
	background: #000;
}
.el_catLabel.all{
	background: #000;
}
/*wp-pagenavi*/
.wp-pagenavi{
	margin-top: 50px;
	display:flex;
	justify-content: center;
}
.wp-pagenavi > *{
	margin-right:5px;
	padding-top:6px;
	padding-right:12px;
	padding-bottom:3px;
	padding-left: 12px;
	border-radius: 5px;
}
.wp-pagenavi > *:last-child{
	margin-right: 0;
}
.wp-pagenavi a{
	border: 1px solid #000;
	color: #000;
}
.wp-pagenavi span{
	background: #000;
	color: #fff;
	font-weight: bold;
}
/*記事詳細ページ*/
.bl_post{
	margin-bottom: 50px;
}
.bl_post_ttl{
	margin-bottom: 15px;
	padding-right: 140px;
	padding-bottom: 10px;
    border-bottom: 2px solid #000;
    line-height: 1.4;
    color: #000;
    font-size: 28px;
    font-weight: bold;
}
.bl_post_date{
	width: 110px;
	height: 30px;
	background: #dfdfdf;
	color: #222;
	font-size: 0.8em;
    position: absolute;
    top: 5px;
    right: 0;
}
/*前へ 次へボタン*/
.bl_pager {
	position: relative;
	height: 42px;
}
.bl_pager_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_pager_link a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 42px;
	color: #fff;
	background: #000;
	padding-top: 3px;
	position: relative;
}
.bl_pager_prev a::before,
.bl_pager_next a::after {	
	content: "";
	display: block;
	width: 0;
	height: 0;
    margin-top: auto;
    margin-bottom: auto;
	border-style: solid;
	position: absolute;
	top: 2px;
	left: 17px;
    bottom: 0;
}
.bl_pager_prev a::before {
	border-width: 5.5px 9px 5.5px 0;
	border-color: transparent #fff transparent transparent;
}
.bl_pager_next a::after {
	border-width: 5.5px 0 5.5px 9px;
	border-color: transparent transparent transparent #fff;
	left: initial;
	right: 17px;
}
.bl_pager .el_btn {
	width: 224px;
	height: 42px;
	border-radius: 0;
	padding-right: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.bl_pager .el_btn::before,
.bl_pager .el_btn::after {
	content: none;
}
@media screen and (max-width : 750px){
/*bl_catList*/
  .bl_catList{
      padding-right: 15px;
      padding-bottom: 5px;
      padding-left: 15px;
      flex-wrap:wrap;
  }
  .bl_catList_ttl{
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px;
      padding-top: 0;
      font-size: 26px;
      text-align: center;
  }
  .bl_catList_inner li{
      margin-right: 5px;
      margin-bottom:10px;
  }
  .bl_catList_inner li a{
      padding-top: 8px;
      padding-bottom: 8px;
      font-size: 22px;
  }
/*記事詳細ページ*/
  .bl_post .bl_post_header{
      margin-bottom: 40px;
  }
  .bl_post .bl_vertPosts_cat{
      position: static;
  }
  .bl_post .bl_vertPosts_date{
      position: static;
  }
/*wp-pagenavi*/
  .wp-pagenavi{
      margin-top: 50px;
      display:flex;
      justify-content: center;
  }
  .wp-pagenavi > *{
      margin-right:10px;
      padding-top:10px;
      padding-right:15px;
      padding-bottom:10px;
      padding-left: 15px;
  }
/*前へ 次へボタン*/
  .bl_pager {
	  height: 55px;
  }
  .bl_pager_link a {
	  width: 150px;
	  height: 55px;
  }
  .bl_pager .el_btn {
      width: 275px;
      height: 55px;
  }
  .bl_pager_prev::before {
    border-width: 7.5px 11px 7.5px 0;
  }
  .bl_pager_next::after {
    border-width: 7.5px 0 7.5px 11px;
  }
}

/*IE*/
@media all and (-ms-high-contrast: none){
/*ページトップボタン*/
.el_pagetop{
    width: 100%;
}
.el_pagetop span{
    right: 25px;
}
}
/* Edge */
_:-ms-lang(x)::backdrop,{

}
/*firefox*/
_:lang(x)::-moz-placeholder,{

}
/*Mac Safari*/
@media only screen and (min-device-width:1025px) {
_::-webkit-full-page-media, _:future, :root .el_label{
    padding-top: 0;
}
_::-webkit-full-page-media, _:future, :root .el_btn{
	padding-top: 2px;
}
_::-webkit-full-page-media, _:future, :root .el_triangleLink::before{
	top: 4px;
}
}
/*iPad*/
@media only screen and (min-device-width:768px) and (max-device-width:1024px) {
  _::-webkit-full-page-media, _:future, :root .el_pagetop {
    	width: 100%;
  }
}