﻿@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.03em;
	-webkit-text-size-adjust: 100%;
	color: #333; 
}
body,header,main,footer{
	min-width:1000px;
}
body{
    background: #fff;
}
article,aside,figcaption,figure,picture,
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;
}
img{
	width: 100%;
	height: auto;
	border-style: none;/* IE10 */
}
picture{
    line-height: 0;
}
picture img{
    vertical-align: top;
}

/*PC/SP*/
.pc{
	display: initial!important;
}
.sp{
	display: none!important;
}
@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: 28px;
	}
	body,header,main,footer{
		min-width:750px;
		max-width:750px;
		width:100%;
	}
	.sp{
		display: initial!important;
	}
	.pc{
		display: none!important;
	}
}

/*=============================
　共通デザイン
==============================*/
/*レイアウト*/
.ly_head_inner,
.ly_foot_inner,
.ly_cont,
.ly_cont_inner{
    width: 1000px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
/*2カラム*/
.ly_cont__col{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.ly_cont_main{
    width: 700px;
}
.ly_cont_side{
    width: 280px;
}
/*各sectionメイン見出し*/
.el_sec_mainTtl{
    display: flex;
    justify-content: center;
	align-items: center;
}
/*bl_media*/
.bl_mediaUnit{
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}
.bl_media{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    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_popUp*/
.bl_popUp{
    margin: auto;
    background: ;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
}
input:checked + .bl_popUp{
    opacity: 1;
    visibility: visible;
}
.bl_popUp_inner{
    width: 100%;
    height: 100%;
    background: ;
    overflow-y: scroll;
}
.bl_popUp .el_closeBtn{
    width: 29px;
    height: 29px;
    background: ;
    border-radius: 100%;
    position: absolute;
    top: 15px;
    right: 30px;
}
.bl_popUp .el_closeBtn::before,
.bl_popUp .el_closeBtn::after{
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    margin: auto;
    background: ;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.bl_popUp .el_closeBtn::before{
    transform: rotate(45deg);
}
.bl_popUp .el_closeBtn::after{
    transform: rotate(-45deg);
}
.bl_popUp + .el_closeBg{
    width: 100vw;
    height: 100vh;
    margin: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
}
input:checked + .bl_popUp + .el_closeBg{
    display: block;
}
/*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 トップNEWS*/
.bl_vertPosts {
	margin-bottom: 30px;
}
.bl_vertPosts_item{
    padding-top: 22px;
    padding-bottom: 19px;
	padding-left: 28px;
	padding-right: 40px;
	background: #fff;
    border: 1px solid #a2a2a2;
    display: flex;
	align-items: center;
	margin-bottom: 22px;
	height: 78px;
}
.bl_vertPosts_header{
    margin-right: 40px;
}
.bl_vertPosts_date{
    width: 137px;
    height: 33px;
    font-size: 15px;
	display: flex; 
	align-items: center; 
	justify-content: center;
	flex-shrink: 0;
	background: #847b5c;
	color: #fff;
}
.bl_vertPosts_ttl{
    color: #222;
    font-size: 16px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/*el_btn*/
.el_btn{
    margin-right: auto;
    margin-left: auto;
    padding: 3px 10px 0 0;
    background: #927239;
	border-radius: 8px;
	color: #fff;
	font-weight: bold;
	text-align: center;
    text-decoration: none;
	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: 5px 0 5px 9px;
	border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 2px;
    right: 16px;
    bottom: 0;
}
/*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 1rem;
	position: relative;
}
.el_att::before{
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
/*サムネイル*/
.bl_thumbnail{
    width: px;
    height: px;
    position: relative;
    overflow: hidden;
}
.bl_thumbnail img{
	width: auto;
    min-width: 100%;
    max-width: 200%;
    min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	transform: translateY(-50%) translateX(-50%);
}
.bl_thumbnail .eyecatch,
.bl_thumbnail .noImg{
	width: 100%;
}
/*お問い合わせボックス*/
.bl_cta{
    height: px;
    background: url("images/common/cta_bg.jpg") center / 2000px px no-repeat;
}
.bl_cta .ly_cont_inner{
    padding-top: ;
}
.bl_cta .bl_info{
    padding-top: ;
}
.bl_cta .bl_info .bl_ttl{
    width: px;
    height: px;
}
.bl_cta .bl_info .el_contactBtn{
    width: px;
    height: px;
    font-size: px;
}
/* フォーム */
#form {
	background: #fff;
	padding-top: 65px;
	padding-left: 72px;
	padding-right: 70px;
	padding-bottom: 70px;
}
.bl_formTable {
	width: 100%;
}
.bl_formTable tr {
	display: flex; 
	align-items: center;
	margin-bottom: 32px;
}
.bl_formTable th,
.bl_formTable td {
	display: block;
}
.bl_formTable th {
	text-align: left;
	width: 256px;
	margin-right: 105px;
	font-size: 18px;
	font-weight: normal;
	position: relative;
}
.bl_formTable th::after {
    content: "必須";
    width: 58px;
    height: 24px;
    padding-top: 3px;
    background: #ee7444;
    color: #fff;
    font-size: 15px;
	font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}
.bl_formTable td {
	width: 497px;
}
input, button, select, textarea{
	border-radius: 10px;
	background-color: #dbdbdb;
	border: none;
	cursor: pointer;
	font-size: 18px;
    outline: none;
	padding: 10px 20px;
	width: 100%;
}
textarea {
	height: 232px;
}
.bl_formBtn {
	text-align: center;
}
.el_formBtn {
	width: 245px;
	height: 56px;
	background: #927239;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	padding-top: 3px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
/*el_txt*/
.el_txt {
    line-height: 1.53;
    margin-bottom: 30px;
}
.el_txt:last-of-type {
    margin-bottom: 50px;
}
/*下層-大見出し*/
.bl_lower_mainTtl{
	height: px;
	text-align: center;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
}
/*下層-パンくず*/
.bl_breadcrumbs .ly_cont_inner{
    padding-top: 15px;
	display: flex;
	align-items: center;
}
.bl_breadcrumbs li{
	font-size: 13px;
	display: flex;
    align-items: center;
}
.bl_breadcrumbs li:first-of-type ~ li::before{
	content: ">";
	margin: 0 7px;
}
.bl_breadcrumbs li a{
	text-decoration: none;
	color: #000;
}
@media screen and (max-width : 750px){
/*レイアウト*/
  .ly_foot_inner,
  .ly_cont,
  .ly_cont_inner{
      width: 690px;
  }
/*2カラム*/
  .ly_cont__col{
      display: block;
  }
  .ly_cont_main,
  .ly_cont_side{
      width: 100%;
  }
  .ly_cont_side{
      margin-top: 90px;
  }
  .ly_cont_side > *{
      margin-bottom: 60px;
  }
/*bl_media*/
  .bl_mediaUnit,
  .bl_media{
      display: block;
  }
  .bl_media{
      width: 100%!important;
  }
  .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: 50px;
  }
  .bl_card_imgWrapper,
  .bl_card_body{
      width: 100%!important; 
  }
/*bl_popUp*/
  .bl_popUp{
      width: 690px;
  }
  .bl_popUp .el_closeBtn{
      width: 40px;
      height: 40px;
      top: 15px;
      right: 15px;
  }
/*bl_vertPosts*/
	.bl_vertPosts {
		margin-bottom: 45px;
	}
  .bl_vertPosts_item{
      padding-top: 21px;
      padding-bottom: 30px;
	  padding-left: 20px;
	  flex-wrap: wrap;
	  height: auto;
  }
  .bl_vertPosts_header {
      margin-right: 0;
	  margin-bottom: 20px;
      width: 100%;
  }
  .bl_vertPosts_date{
      width: 188px;
      height: 43px;
      font-size: 22px;
  }
  .bl_vertPosts_ttl{
      font-size: 26px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      white-space: initial;
  }
/*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{
      padding: 4px 10px 0 0;
      border-bottom-width: 4px;
      font-size: 30px;
  }
  .el_btn::after{
      border-width: 7px 0 7px 11px;
      right: 36px;
  }
/*el_label*/
  .el_label{
      padding-top: 0;
  }
/*el_triangleLink*/
  .el_triangleLink::before{
      border-width: 8.5px 0 8.5px 17px;
  }
/*フォーム*/
	#form {
    	padding-top: 65px;
    	padding-left: 35px;
    	padding-right: 35px;
    	padding-bottom: 65px;
	}
	.bl_formTable tr {
		display: block;
	}
	.bl_formTable th {
    	width: 100%;
    	margin-right: 0;
		margin-bottom: 20px;
    	font-size: 32px;
	}
	.bl_formTable th::after {
    	width: 98px;
    	height: 41px;
    	font-size: 26px;
	}
	.bl_formTable td {
    	width: 100%;
	}
	input, button, select, textarea {
    	font-size: 32px;
    	padding: 17px 20px;
	}
	.el_formBtn {
    	width: 384px;
    	height: 94px;
    	font-size: 36px;
	}
	textarea {
		height: 364px;
	}
/*el_txt*/
	.el_txt {
		font-size: 30px;
	}
}

/*=============================
　ヘルプタグ
==============================*/
/*margin*/
.hp_mb10{
    margin-bottom: 10px!important;
}
/*明朝体*/
.hp_mincho{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
}
/*bold*/
.hp_bold{
    font-weight: bold!important;
}
/*opacity1*/
.hp_opacity1{
    opacity: 1!important;
}
/*電話リンク*/
.hp_tel{
    pointer-events: none;
    text-decoration: none;
}
/*アクセントカラー*/
.hp_color__yellow{
    color: yellow!important;
}
@media screen and (max-width : 750px){
/*電話リンク*/
  .hp_tel{
      pointer-events: auto;
  }
}

/*=============================
　header
==============================*/
.ly_head{
	width: 100%;
	height: 85px;
	background: linear-gradient(to bottom,#040812,#171e2c);
	border-bottom: 1px solid #f0c476;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100000;
}
.ly_head_inner{
    display: flex;
	justify-content: center;
	align-items: center;
    flex-wrap: wrap;
}
/*ナビ*/
.bl_head_gloNav_inner{
	width: 1000px;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_head_gloNav_inner li {
	display: flex; 
	align-items: center;
}
.bl_head_gloNav_inner li::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 58px;
    background: #747474;
    margin-right: 28px;
}
.bl_head_gloNav_inner li > a {
	color: #fff;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 61px;
	padding-top: 3px;
    line-height: 1.4;
}
.bl_head_gloNav_inner li > a:hover {
	color: #ae8845;
}
.bl_head_gloNav_inner .partner-companies > a {
	background: linear-gradient(to bottom,#252437,#585387);
	width: 177px;
}
#el_spNavInput,.el_spNavMenuIcon,.bl_spNavBgBlack,
.bl_head_gloNav_inner > .el_trigerClose{
    display:none;
}
/*ロゴ*/
.bl_head_logo {
	position: absolute;
	top: 7px;
	left: 150px;
}
.bl_head_logo img {
	width: 173px; 
}
@media screen and (max-width : 750px){
  .ly_head{
      height: 125px;
  }
  .ly_head::after{
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #000;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 900;
  }
	.ly_head_inner {
		justify-content: space-between;
 		width: 100%;
	}
/*ロゴ*/
	.bl_head_logo {
		top: 23px;
		left: -10px;
	}
	.bl_head_logo img {
		width: 215px;
	}
/***ナビ***/
  .bl_head_gloNav,
  .el_spNavMenuIcon{
      display: block;
      width: 80px;
      height: 89px;
  }
/*THE LABOとは＆協力企業・自治体募集*/
  .bl_head_subNav {
		z-index: 1000;
  }
	.bl_head_subNav_inner {
		display: flex;
		width: 610px;
		justify-content: space-between;
	}
	.bl_head_subNav_inner li a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		color: #fff;
		font-size: 32px;
		letter-spacing: 0.07em;
		height: 124px;
		line-height: 1.3;
		text-align: center;
	}
	.bl_head_subNav_inner .thelabo a {
		width: 278px;
		background: linear-gradient(to bottom,#654a1b,#b6924f);
	}
	.bl_head_subNav_inner .partner-companies a {
		width: 330px;
		background: linear-gradient(to bottom,#252437,#585387);
	}
/*MENUボタン*/
  .el_spNavMenuIcon{
      position: relative;
		right: 30px;
  }
  .el_spNavMenuIcon span {
      position: absolute;
      left: 0;
      width: 80px;
      height: 5px;
      background: linear-gradient(to right,#feeeca ,#f8dd8c);
      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(26px) rotate(-315deg);
      transform: translateY(26px) 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(-23px) rotate(315deg);
      transform: translateY(-23px) rotate(315deg);
  }
  .el_spNavMenuIcon::after{
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: url("images/common/head_gloNav_menu_sp.png") bottom center / 81px 19px no-repeat;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      margin: 0 auto;
  }
/**中身**/
	.bl_head_gloNav_inner{
      width: 100%;
      height: calc(100vh - 125px);
      top: 125px;
      left: 0;
      z-index: 800;
      position: fixed;
      overflow: scroll;
      display: flex;
		flex-wrap: wrap;
	  padding-top: 80px;
	}
	.bl_head_gloNav_inner > li {
		width: 100%;
	}
	.bl_head_gloNav_inner > li > a{
	width: 100%;
    height: auto;
    padding: 35px 0;
    font-size: 38px;     
	}
	.bl_head_gloNav_inner .partner-companies > a {
		background: none;
		width: 100%;
	}
	.bl_head_gloNav_inner li::before {
		content: none;
	}
/*順番*/
	.bl_head_gloNav_inner > .home {
		order: 1;
	}
	.bl_head_gloNav_inner > .thelabo {
		order: 2;
	}
	.bl_head_gloNav_inner > .summary {
		order: 3;
	}
	.bl_head_gloNav_inner > .about {
		order: 5;
	}
	.bl_head_gloNav_inner > .contact {
		order: 6;
	}
	.bl_head_gloNav_inner > .partner-companies {
		order: 4;
	}
	.bl_head_gloNav_inner > .el_trigerClose {
		order: 7;
	}
/*黒背景*/
	.bl_spNavBgBlack{
      width: 100%;
      height: 100vh;
      background: rgba(0,0,0,0.95);
      position: fixed;
	  top: 125px;
      left: 0;
      z-index: 700;
      display: block;
  }
/*閉じるボタン*/
  .bl_head_gloNav_inner .el_trigerClose{
      display: block;
  }
  .bl_head_gloNav_inner .el_trigerClose label{
      width: 224px;
      height: 68px;
      margin: 30px auto 94px;
      background: #ac9262;
      border-radius: 10px;
      color: #000;
      font-size: 38px;
      font-weight: bold;
	  letter-spacing: 0.1em;
      display: flex!important;
      justify-content: center;
      align-items: center;
  }
/* 隠しておく */
  .bl_spNavBgBlack,.bl_head_gloNav_inner{
      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);
  }
}

/*=============================
　footer
=============================*/
main{
    min-height: calc(100vh - 268px);
	margin-top: 85px;
}
.ly_foot {
	background: #111320;
}
.ly_foot_inner {
	width: 805px;
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
/*ロゴ*/
.bl_foot_logo{
    width: 131px;
	height: 108px;
}
/*ナビ*/
.bl_foot_gloNav{
    
}
.bl_foot_gloNav_inner {
    display: flex;
    flex-wrap: wrap;
    width: 470px;
	justify-content: space-between;
}
.bl_foot_gloNav_inner li {
	display: flex; 
	align-items: center;
	margin-bottom: 17px;
}
.bl_foot_gloNav_inner .partner-companies,
.bl_foot_gloNav_inner .about,
.bl_foot_gloNav_inner .contact {
	margin-bottom: 0;
}
.bl_foot_gloNav_inner li:not(.summary):not(.contact)::after {
	content: "";
    display: inline-block;
    width: 1px;
    height: 22px;
    background: #fff;
    margin-right: 28px;
}
.bl_foot_gloNav_inner li a {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #fff;
	padding-right: 31px;
}
.bl_foot_gloNav_inner .summary a,
.bl_foot_gloNav_inner .contact a {
	padding-right: 0;
}
/*コピーライト*/
.bl_foot_copyright{
	width: 100%;
	height: 35px;
	background: #272a3e;
	text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.bl_foot_copyright small{
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.08em;
	font-family: Verdana;/* Android */
}
/*ページトップボタン*/
.bl_pagetop{
	width: 1080px;
	height: 0;
	margin: 0 auto;
    text-align: right;
	position: relative;
}
.bl_pagetop span{
	width: 61px;
	height: 61px;
	z-index: 900;
	background: #9e8351;
	border-radius: 50%;
	opacity: 0;
}
.bl_pagetop img{
	width: 25px;
	position: absolute;
    top: 19px;
    right: 0;
    left: 0;
    margin: auto;
}
.bl_pagetop .fade{
    -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;
}
.bl_pagetop .in{
	opacity: 1;
	cursor: pointer;
}
@media screen and (max-width : 1400px){
/*ページトップボタン*/
  .bl_pagetop{
      width:100%;
  }
  .bl_pagetop span{
      right: 30px;
  }
}
@media screen and (max-width : 750px){
	main {
		min-height: calc(100vh - 659px);
		margin-top: 125px;
	}
	.ly_foot_inner {
		width: 100%;
		flex-wrap: wrap;
		padding-top: 0;
	}
/*ロゴ*/
	.bl_foot_logo {
    	width: 170px;
    	height: 141px;
    	order: 2;
    	margin: auto;
	}
/**ナビ**/
	.bl_foot_gloNav_inner {
		width: 100%;
		margin-bottom: 17px;
	}
	.bl_foot_gloNav_inner li {
    	width: 375px;
		margin-bottom: 0;
    	border-bottom: 1px solid #adadad;
	}
	.bl_foot_gloNav_inner .home,
	.bl_foot_gloNav_inner .thelabo,
	.bl_foot_gloNav_inner .summary {
    	border-right: 1px solid #adadad;
	}
	.bl_foot_gloNav_inner li:not(.summary):not(.contact)::after {
		content: none;
	}
	.bl_foot_gloNav_inner li a {
    	font-size: 28px;
    	padding-right: 0;
    	height: 105px;
		padding-left: 45px;
    	width: 100%;
		line-height: 1.4;
	}
	.bl_foot_gloNav_inner li a::before {
		content: "";
    	display: inline-block;
    	width: 0;
    	height: 0;
    	margin-top: auto;
    	margin-bottom: auto;
		margin-right: 20px;
    	border-style: solid;
    	border-width: 7px 0 7px 10px;
    	border-color: transparent transparent transparent #b19d68;
	}
/*順番*/
	.bl_foot_gloNav_inner .home {
		order: 1;
	}
	.bl_foot_gloNav_inner .thelabo{
		order: 3;
	}
	.bl_foot_gloNav_inner .summary {
		order: 5;
	}
	.bl_foot_gloNav_inner .partner-companies {
		order: 2;
	}
	.bl_foot_gloNav_inner .about {
		order: 4;
	}
	.bl_foot_gloNav_inner .contact {
		order: 6;
	}
/*コピーライト*/
	.bl_foot_copyright {
		height: 38px; 
	}
	.bl_foot_copyright small {
		font-size: 16px;
	}
/*ページトップボタン*/
  .bl_pagetop{
      width: 750px;
  }
  .bl_pagetop span{
	  width: 82px;
      height: 82px;
      margin: 0 0 0 668px;
	  right: 25px;
	  bottom: 25px;
  }
  .bl_pagetop img{
      width: 34px;
	  top: 27px;
  }
}

/*=======================================================
サンクス
=======================================================*/
.thanks {
	padding-bottom: 106px!important;
}
.thanks .bl_thanks {
	background: url(images/common/thanks_bg.png) top center / contain no-repeat;
	height: 366px;
    padding-left: 373px;
    padding-top: 95px;
	padding-right: 89px;
}
.thanks .bl_thanks_ttl {
	position: relative;
	font-size: 28px;
	margin-bottom: 25px;
}
.thanks .bl_thanks_ttl::before {
	content: "";
    display: block;
    position: absolute;
    top: -44px;
    left: -65px;
    width: 147px;
    height: 79px;
    background: url(images/common/ttl_img.png) center / contain no-repeat;
}
.thanks .bl_thanks_txt {
	color: #333!important;
	text-align: left!important;
	margin-bottom: 40px;
	font-size: 18px;
}
.thanks .bl_thanks_btn {
	width: 243px;
	height: 48px;
	font-size: 20px;
	margin-right: 10px;
	padding-right: 0;
}
.thanks .bl_thanks_btn::after {
	content: none;
}
@media screen and (max-width : 750px){
	.thanks {
		padding-top: 80px!important;
	}
	.thanks .bl_thanks {
    	background: url(images/common/thanks_bg_sp.png) top center / contain no-repeat;
    	height: 954px;
    	padding-left: 0;
    	padding-top: 125px;
    	padding-right: 0;
    	text-align: center;
	}
	.thanks .bl_thanks_ttl {
    	font-size: 40px;
    	margin-bottom: 30px;
		line-height: 1.5;
	}
	.thanks .bl_thanks_ttl::before {
    	top: -70px;
    	left: 74px;
    	width: 206px;
    	height: 111px;
	}
	.thanks .bl_thanks_txt {
    	text-align: center!important;
    	margin-bottom: 55px;
		line-height: 1.43;
		font-size: 30px;
	}
	.thanks .bl_thanks_btn {
    	width: 387px;
    	height: 77px;
    	font-size: 34px;
    	margin-right: auto;
	}
}
/* Edge */
_:-ms-lang(x)::backdrop,{

}

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

}

/* Mac,iPad Safari */
@media only screen and (min-device-width:768px){
_::-webkit-full-page-media, _:future, :root .el_label,
_::-webkit-full-page-media, _:future, :root .bl_vertPosts_date{
    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;
}
}

/* Mac Safari */
@media only screen and (min-device-width:1025px) {
_::-webkit-full-page-media, _:future, :root{

}
}

/* iPad Safari */
@media only screen and (min-device-width:768px) and (max-device-width:1024px) {
  _::-webkit-full-page-media, _:future, :root .bl_foot_gloNav_inner {
		width: 500px;
  }
}