@charset "utf-8";
/* CSS Document */

/*---------------------------------------------------------------------
	container
---------------------------------------------------------------------*/
#container {
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}
.pc_none { display: none; }

@media screen and (max-width: 768px) {
  .pc_none { display: block; }
  .sp_none { display: none; }
  body { font-size: 1.4rem !important; }
}
/*---------------------------------------------------------------------
	edit_btn
---------------------------------------------------------------------*/
#edit_btn {
  background: #444;
}
#edit_btn #edit_btn_inner {
  padding: 5px 10px;
  margin: 0 auto;
}
#edit_btn a {
  color: #333;
  font-size: 13px;
  border-radius: 4px;
  display: block;
  float: right;
  font-weight: bold;
  margin: 5px 0 5px 5px;
  padding: 3px 15px 4px;
  text-decoration: none;
  background-image: -moz-linear-gradient(50% 0% -90deg, rgb(255,255,255) 0%, rgb(238,238,238) 100%);
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(238,238,238)));
  background-image: -webkit-linear-gradient(-90deg, rgb(255,255,255) 0%, rgb(238,238,238) 100%);
  background-image: -o-linear-gradient(-90deg, rgb(255,255,255) 0%, rgb(238,238,238) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(255,255,255) 0%, rgb(238,238,238) 100%);
  background-image: linear-gradient(180deg, rgb(255,255,255) 0%, rgb(238,238,238) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff,endColorstr=#ffeeeeee,GradientType=0)";
 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff, endColorstr=#ffeeeeee, GradientType=0);
}
#edit_btn a:hover {
  background-image: -moz-linear-gradient(50% 0% -90deg, rgb(238,238,238) 0%, rgb(255,255,255) 100%);
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgb(238,238,238)), color-stop(1, rgb(255,255,255)));
  background-image: -webkit-linear-gradient(-90deg, rgb(238,238,238) 0%, rgb(255,255,255) 100%);
  background-image: -o-linear-gradient(-90deg, rgb(238,238,238) 0%, rgb(255,255,255) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(238,238,238) 0%, rgb(255,255,255) 100%);
  background-image: linear-gradient(180deg, rgb(238,238,238) 0%, rgb(255,255,255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffeeeeee,endColorstr=#ffffffff,GradientType=0)";
 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffeeeeee, endColorstr=#ffffffff, GradientType=0);
}

/*---------------------------------------------------------------------
	goToSpSiteButton
---------------------------------------------------------------------*/
#goToSpSiteButton {
  display: none;
  text-align: center;
  background-color: #fff;
}
#goToSpSiteButton a {
  background: #55ba45 none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-size: 60px;
  font-size: 6rem;
  line-height: 1.6;
  margin: 15px auto;
  padding: 0;
  text-align: center;
  text-decoration: none;
  width: 80%;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  #goToSpSiteButton {
    display: block;
    text-align: center;
  }
}

/*---------------------------------------------------------------------
	site_header
---------------------------------------------------------------------*/
#site_header {
    position: fixed;
    width: 100%;
  background-color: rgba(255,255,255,.9);
  z-index: 99;
  border-bottom: 1px solid #eee;
}
#site_header .inner {
  box-sizing: content-box;
  margin: 0 auto;
  width: 1000px;
  padding: 10px;
}
#site_header .header_left {
  float: left;
}
/* logo */
#site_header .fll {
  margin: 0;
  float: left;
}
#site_header .site_logo a {
  display: block;
}
#site_header .site_logo {
    padding: 10px;
}
#site_header .site_logo img {
    width: 90%;
}
#site_header .header_list {
  float: right;
}
#site_header .header_navi {
    margin: 15px 0 5px;
}
#site_header .header_navi ul {
    font-size: 0;
}
#site_header .header_navi ul li {
    font-size: 16px;
    letter-spacing: normal;
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
    box-sizing: content-box;
}
#site_header .header_navi li + li {
  margin-left: 5px;
}
#site_header .header_navi li > a {
    color: #222;
    display: block;
    text-decoration: none;
    transition: .5s;
    padding-bottom: 4px;
    box-sizing: border-box;
}
#site_header .header_navi li > a:hover {
    border-bottom: 2px solid #009bc3;
    transition: .5s;
    padding: 0;
}
.btn_site_navi, #site_navi { display: none; }

@media screen and (max-width: 1280px) {
  #site_header .fll { max-width: 380px; }
  #site_header .header_navi ul li {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 1024px) {
  #site_header .header_list {
    display: none;
  }
@media screen and (max-width: 768px) {
  #site_header .site_logo {
      padding: 0 1.3% 1.3%;
      max-width: 78%;
  }
}
/*---------------------------------------------------------------------
	site_navi
---------------------------------------------------------------------*/
#site_navi { 
  display: block; 
	backface-visibility: hidden;
	background-color: rgba(0,155,195,0.8);
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
	z-index: 95;
	overflow: hidden;
	padding: 90px 15px 15px;
	opacity: 0;
	transform: rotateX(-90deg);
	-webkit-transform: rotateX(-90deg);
    transform-origin: top right 0;
	-webkit-transform-origin: top right 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.315, 1.16) 0.8s;
}
#site_navi.activ{
	opacity: 1;
	transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
	
	height: 100%;
    position: fixed;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.315, 1.16) 0.4s;
}

/* site_navi_list */
#site_navi > ul {
    height: 100%;
    overflow: scroll;
	-webkit-overflow-scrolling: touch;
}
#site_navi li {
	font-size: 1.8rem;
	border-bottom: 1px dotted #fff;
	
	opacity: 0;
	transform: rotateY(90deg);
	position: relative;
	transition: all 1s ease 0s;
}
#site_navi li:first-child { border-top: 1px dotted #fff; }
#site_navi.activ li {
	opacity: 1;
	/*right: 0;*/
	transform: rotateY(0deg);
	transition: all .3s ease .5s;
}
	#site_navi.activ ul li.navi_01 { transition-duration: .5s; }
	#site_navi.activ ul li.navi_02 { transition-duration: .7s; }
	#site_navi.activ ul li.navi_03 { transition-duration: .9s; }
	#site_navi.activ ul li.navi_04 { transition-duration: 1.1s; }
	#site_navi.activ ul li.navi_05 { transition-duration: 1.3s; }
	#site_navi.activ ul li.navi_06 { transition-duration: 1.5s; }
	#site_navi.activ ul li.navi_07 { transition-duration: 1.7s; }
	#site_navi.activ ul li.navi_08 { transition-duration: 1.9s; }
	#site_navi.activ ul li.navi_09 { transition-duration: 2.1s; }
	#site_navi.activ ul li.navi_10 { transition-duration: 2.3s; }
	#site_navi.activ ul li.navi_11 { transition-duration: 2.5s; }
	
	#site_navi ul li.navi_01 { transition-duration: 1.7s; }
	#site_navi ul li.navi_02 { transition-duration: 1.5s; }
	#site_navi ul li.navi_03 { transition-duration: 1.3s; }
	#site_navi ul li.navi_04 { transition-duration: 1.1s; }
	#site_navi ul li.navi_05 { transition-duration: .9s; }
	#site_navi ul li.navi_06 { transition-duration: .7s; }
	#site_navi ul li.navi_07 { transition-duration: .5s; }
	#site_navi ul li.navi_08 { transition-duration: .3s; }
	#site_navi ul li.navi_09 { transition-duration: .1s; }

#site_navi ul li a {
	color: #FFFFFF;
	display: block;
	padding: 5px 0;
	margin-bottom: 5px;
	text-align: center;
	text-decoration: none;
}
#site_navi ul li a:hover {}


/* sitenavi_sp btn */
.btn_site_navi {
  display: block;
    position: absolute;
    right: 14px;
    top: 12px;
    z-index: 110;
  margin-right: 15px;
}

	.panel-btn {
		display: inline-block;
		position: relative;
		color: #009bc3;
		padding: 0;
		text-decoration: none;
		font-weight: bold;
		font-size: 12px;
		padding: 23px 0 0;
	}
	.panel-btn:hover{}

	#panel-btn-icon {
		display: block;
		position: absolute;
		top: 10px;
		left: 50%;
		width: 40px;
		height: 5px;
		margin: -2px 0 0 -20px;
		background: #009bc3;
		transition: .2s;
	}
	#panel-btn-icon:before,
	#panel-btn-icon:after{
	  display: block;
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: 0;
	  width: 100%;
	  height: 5px;
	  background: #009bc3;
	  transition: .3s;
	}
	#panel-btn-icon:before{
	  margin-top: -13px;
	}
	#panel-btn-icon:after{
	  margin-top: 7px;
	}
	
	/* close */
	#panel-btn.close{
		background-color: #009bc3;
	}
	.close #panel-btn-icon {
	  background: transparent;
	}
	.close #panel-btn-icon:before,
	.close #panel-btn-icon:after {
	  margin-top: -2px;
	}
	.close #panel-btn-icon:before{
	  transform: rotate(-35deg);
	  -webkit-transform: rotate(-35deg);
	}
	.close #panel-btn-icon:after{
	  transform: rotate(-145deg);
	  -webkit-transform: rotate(-145deg);
	}

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



#pagebody {
    margin-top: 60px;
}
@media screen and (max-width: 768px) {  
  #pagebody {
      margin-top: 45px;
  }
}
/*---------------------------------------------------------------------
	topic_path_top
---------------------------------------------------------------------*/
/*.topic_path_top {
  margin-bottom: 30px;
}*/
.topic_path_top > ol {
  font-size: 13px;
  font-size: 1.3rem;
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 1200px;
  padding: 8px 15px;
}
.topic_path_top > ol > li {
  display: inline-block;
}
.topic_path_top > ol > li + li::before {
  content: ">";
  margin: 0 5px;
}
.topic_path_top > ol > li a {
  text-decoration: underline;
}
.topic_path_top > ol > li:last-child a {
    text-decoration: none;
    color: #333;
}

/*---------------------------------------------------------------------
	pagebody
---------------------------------------------------------------------*/
.pagebody_inner,
#pagebody_inner {
  margin: 0 auto 60px;
  max-width: 1200px;
}
.contentbody .main_img {
    margin-bottom: 50px;
}
.contentbody .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.alpha {
    float: left;
    width: 75%;
}
.beta {
    float: right;
    width: 23%;
}
@media screen and (max-width: 768px) {
  .contentbody .inner,
  .pagebody_inner {
    margin: 0 15px;
  }
  .contentbody .main_img {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 580px) {
  .alpha {
      float: none;
      width: 100%;
  }
  .beta {
      float: none;
      width: 100%;
  }
}
/*--------------------------------------------------
	alpha
--------------------------------------------------*/
#alpha {
  float: left;
  width: 780px;
  min-height: 600px; /* 作業時に削除 */
}

/*--------- text -----------*/
.page_ttl {
    color: #333;
    font-size: 212%;
    font-weight: normal;
    background: url(/image/bg_h1.jpg) left top;
    padding: 45px 15px 32px;
    line-height: 1.4;
}
.page_ttl span {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.content1 {
  line-height: 1.8;
}
.content1 p {
  margin: 1em 0;
}
.content1 h2 + p,
.content1 h3 + p,
.content1 h4 + p,
.content1 h5 + p,
.content1 h6 + p {
  margin-top: 0;
}
.content1 div > p {
  margin-top: 0;
}

/* headline */
.content1 * + h2 {
  margin-top: 80px;
}
.content1 * + h3 {
  margin-top: 60px;
}
.content1 * + h4 {
  margin-top: 40px;
}
.content1 * + h5 {
  margin-top: 20px;
}
.content1 h2 + h3,
.content1 h3 + h4 {
  margin-top: 0;
}

/* utility */
.content1 * + dl,
.content1 * + ol,
.content1 * + ul,
.content1 * + table {
  margin-top: 20px;
}

.lead_01,
.content1 h2 {
    font-size: 212%;
    font-weight: normal;
    background: url(/image/bg_02.png), url(/image/icon/icon_h2.png) no-repeat left center;
    margin-bottom: 35px;
    padding: 40px 0 40px 25px;
    position: relative;
    line-height: 1.2;
}
.lead_01::before,
.content1 h2::before {
    position: absolute;
    content: "";
    background: #BFBFBF;
    width: 5px;
    height: 80px;
    right: 0;
    top: 20px;
}
.lead_02,
.content1 h3 {
    font-size: 200%;
    font-weight: normal;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #BDBDBD;
  position: relative;
}
.lead_02::before, .content1 h3::before {
    position: absolute;
    content: "";
    background: #009bc3;
    width: 200px;
    height: 1px;
    bottom: -1px;
    left: 0;
}
.lead_03, .content1 h4 {
    font-size: 187.5%;
    font-weight: normal;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #707070;
}
.lead_04, .content1 h5 {
    font-size: 148%;
    font-weight: normal;
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
}
.lead_04::before,
.content1 h5::before {
  background-color: #BDBDAE;
  border-radius: 50%;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 15px;
  left: 0;
}
.lead_04::after,
.content1 h5::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 4px;
  width: 4px;
  position: absolute;
  top: 19px;
  left: 4px;
}
.lead_05 {
    color: #0B615E;
    font-size: 150%;
}
.lead_06 {
    color: #0B0B61;
    font-size: 150%;
}
.lead_07 {
    color: #610B4B;
    font-size: 150%;
}
.bg_box_01 {
    background: #F0F7F6;
    padding: 20px;
}
.bg_box_02 {
    background: #F2F2F2;
    padding: 20px;
}
.fc_01 {
  color: #D80000;
}
.fc_02 {
  color: #336600;
}
.bg_01 { background: #F5F5F5; }
.bg_02 { background: #FFD2BC; }
.bg_03 { background: #ADD6FF; }
.bg_04 { background: #E9F8EA; }
.bg_05 { background: #FFF6F2; }
.bg_06 { background: #ECF6FF; }
.modified_date {
  color: #333;
  font-size: 86.66%;
  margin-bottom: 20px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page_ttl {
      font-size: 160%;
      padding: 5% 20px;
      background-size: cover;
  }
  .lead_01, .content1 h2 {
      font-size: 160%;
      padding: 6% 6% 6.3%;
      margin-bottom: 20px;
      background-position: left center;
  }
  .content1 * + h2 {
    margin-top: 50px;
  }
  .content1 * + h3 {
    margin-top: 40px;
  }
  .content1 * + h4 {
    margin-top: 30px;
  }
  .lead_05,
  .lead_06
  .lead_07 {
      font-size: 130%;
      line-height: 1.4;
  }
}
/*--------- btn -----------*/
a.btn_01 {
  display: inline-block;
  vertical-align: top;
  color: #333;
  text-decoration: none;
  font-size: 106.66%;
  border: 1px solid #ccc;
  min-width: 31.66%;
  padding: 17px 30px 17px 20px;
  position: relative;
  transition: .3s;
}
a.btn_01::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(-45deg);
}
a.btn_01.arrow_l::before {
  right: auto;
  left: 23px;
  transform: rotate(135deg);
}
a.btn_01:hover {
  color: #915E33;
  background: #FCF8ED;
  border-color: #D2A47E;
}
/**/
.list_disc li {
    list-style-type: none; /*点を非表示*/
    position: relative; 
    }
.list_disc li::before {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    left: -15px;
    top: 0.7em;
    content: "";
    background: #00736D;
}
.c_00 {
    list-style-position: inside;
    padding-left: 0 !important;
}
.c_00 li { padding-left:25px; }
.c_00 li:nth-child(odd) { background:#F2F2F2; } 
.c_00 li::before { left:10px; }
.c_00 li a { text-decoration: none; }
/*--------- template -----------*/
.fll_img {
  float: left;
  margin: 0 2.5% 2.5% 0;
  /* width: 31.66%; */
  max-width: 30%;
}
.flr_img {
  float: right;
  margin: 0 0 2.5% 2.5%;
  /* width: 31.66%; */
  max-width: 30%;
}

.fll_img img,
.fll_img img {
  max-width: 100%;
  height: auto;
}
.fl_over {
  overflow: hidden;
}
.caption,
.list_1column .caption,
.list_2column .caption,
.list_3column .caption,
.list_4column .caption,
.list_5column .caption {
  font-size: 86.66%;
  line-height: 1.4;
  padding-top: 7px;
  text-align: center;
  margin: 0;
}
.list_1column img,
.list_2column img,
.list_3column img,
.list_4column img,
.list_5column img {
  width: 100%;
  height: auto;
}

/* list_2column */
.list_2column {
  font-size: 0;
}
.list_2column .item {
  width: 48.75%;
  font-size: 15px;
  display: inline-block;
  vertical-align: top;
  margin: 0 2.5% 2.5% 0;
}
.list_2column .item:nth-child(2n) {
  margin-right: 0;
}

/* list_3column */
.list_3column {
  font-size: 0;
}
.list_3column .item {
  width: 31.66%;
  font-size: 15px;
  display: inline-block;
  vertical-align: top;
  margin: 0 2.5% 2.5% 0;
}
.list_3column .item:nth-child(3n) {
  margin-right: 0;
}

/* list_4column */
.list_4column {
  font-size: 0;
}
.list_4column .item {
  width: 23.08%;
  font-size: 15px;
  display: inline-block;
  vertical-align: top;
  margin: 0 2.5% 2.5% 0;
}
.list_4column .item:nth-child(4n) {
  margin-right: 0;
}

/* list_5column */
.list_5column {
  font-size: 0;
}
.list_5column .item {
  width: 18%;
  font-size: 15px;
  display: inline-block;
  vertical-align: top;
  margin: 0 2.5% 2.5% 0;
}
.list_5column .item:nth-child(5n) {
  margin-right: 0;
}

.contact_box {
  background: #fafafa;
  padding: 15px 20px;
  border: 3px solid #133775;
}
* + .contact_box {
  margin-top: 60px;
}
.lease_content .lease_content {
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .list_2column .item {
      width: 100%;
      display: block;
      margin: 0 0 2%;
  }
  .list_4column .item {
      width: 48.68%;
  }
  .list_4column .item:nth-child(2n) {
      margin-right: 0;
  }
}
/*page*/
.line_01 {
    position: relative;
    margin: 0 0 40px;
}
.line_01::before {
    position: absolute;
    content: "";
    background: #d90000;
    width: 100%;
    height: 1px;
    top: 10px;
    left: 0;
    z-index: -1;
}
.red_disc {
    padding: 15px 15px 15px 30px;
    background: #F5F5F5;
    position: relative;
}
.red_disc::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #009bc3;
    border-radius: 50%;
    top: 25px;
    left: 15px;
}
.lease_content { text-align: center; }
@media screen and (min-width: 768px) {
  .lease_content {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  .lease_content .fll {
    display: inline-block;
    vertical-align: top;
    width: 40%;
  }
  .lease_content .flr {
    display: inline-block;
    width: 59.7%;
  }
  
}
.trading_content {
    position: relative;
    border: 1px solid #BFBFBF;
    padding: 20px;
    background: #EBFAFF;
}
.trading_content dt {
    border: 1px solid #BFBFBF;
    background: #BFEFFF;
    width: 140px;
    text-align: center;
    position: absolute;
    top: -15px;
    left: 15px;
}
.environment_content {
    position: relative;
    border: 1px solid #BFBFBF;
    padding: 20px;
    background: #EEEEFF;
}
.environment_content dt {
    border: 1px solid #BFBFBF;
    background: #D4D4FF;
    width: 140px;
    text-align: center;
    position: absolute;
    top: -15px;
    left: 15px;
}
.about_content {
    display: table;
    width: 100%;
    margin-top: 0 !important;
}
.about_content dt {
    display: table-cell;
    text-align: center;
    width: 20%;
    border-top: 1px solid #555;
    padding: 20px 0;
}
.about_content dd {
    display: table-cell;
    width: 80%;
    padding: 20px;
    border-top: 1px dashed #666;
}
.about_content.last_line dt { border-bottom: 1px solid #666; }
.about_content.last_line dd { border-bottom: 1px dashed #666; }
.kessan_list {
    padding: 20px 40px;
    line-height: 2.2;
}
.kessan_list {
    padding-left: 20px;
    line-height: 2.2;
}
.kessan_list li {
    background: url(/image/icon_arrow02.png) no-repeat .5rem 1rem;
    padding-left: 30px;
}
.enkaku, .enkaku td {
    border: none;
}
.enkaku tr:nth-child(2n+1) {
    background: #f5f5f5;
}
.sdgs_content {
    margin: 0 0 50px;
    border-bottom: 1px dashed #0599d9;
    padding-bottom: 20px;
}
.sdgs_content .fll {
    float: left;
    width: 30%;
    padding: 0 5%;
}
.sdgs_content .flr {
    float: right;
    width: 70%;
}
.sdgs_content .lead_02 {
    border-bottom: none;
    padding: 0 0 0 20px !important;
    margin-bottom: 0 !important;
}

.sdgs_content .lead_02::before {
    background-color: #009bc3;
    border-radius: 50%;
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 24px;
    left: 0;
}
.sdgs_content .lead_02::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 7px;
    width: 7px;
    position: absolute;
    top: 28px;
    left: 4px;
}
.sdgs_content .list_disc {
    margin-top: 0 !important;
    padding-left: 30px !important;
}
@media screen and (max-width: 768px) {
  .enkaku td {
      display: block;
      width: 100% !important;
      line-height: 1;
  }
  .enkaku td:nth-child(2n+1) {
      padding-top: 20px;
  }
  .enkaku td:nth-child(2n) {
      margin-bottom: 10px;
      padding-top: 0;
  }
  .sdgs_content .fll {
      padding: 0 2.8% 0 0;
  }
  .sdgs_content .list_disc {
      margin-top: 0 !important;
      padding-left: 30px !important;
  }
  .sdgs_content .lead_02 {
      font-size: 160%;
      line-height: 1.4;
    padding-left: 15px !important;
  }
  .sdgs_content .lead_02::before {
      width: 12px;
      height: 12px;
      top: 12px;
  }
  .sdgs_content .lead_02::after {
      height: 6px;
      width: 6px;
      top: 15px;
      left: 3px;
  }
}
/*--------- list_index -----------*/
* + #list_index {
  margin-top: 60px;
}
#list_index {
  letter-spacing: -.5em;
}
#list_index .item {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    margin: 0 3% 3% 0;
    width: 31.3%;
}
#list_index .item:nth-child(3n) {
  margin-right: 0;
}
#list_index .item a {
    color: #212121;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
}
#list_index .item a:hover {
  transition: .8s;
}
#list_index .item .thumb {
  position: relative;
  padding-bottom: 66.66%;
  overflow: hidden;
  display: block;
}
#list_index .item .thumb img {
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  max-width: none;
  max-height: 100%;
  transition: .5s;
}
#list_index .item a:hover .thumb img {
  opacity: 1;
  transform: scale(1.08);
}
#list_index .item .thumb + .detail {
  border-top: 1px solid #ccc;
}
#list_index .item .detail {
  padding: 12px;
  position: relative;
}
#list_index .item .ttl {
    font-size: 150%;
    font-weight: normal;
    position: relative;
    background: #d3e3f3;
    padding: 4px 30px 4px 10px;
}
#list_index .item .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -7px;
  border: 5px solid transparent;
  border-left: 8px solid #358fdd;
}
#list_index .item .lead {
    font-size: 90%;
    margin-top: 10px;
}
.list_index_contents > ul {
  margin-top: 10px;
}
.list_index_contents > ul li {
  margin-left: 30px;
  list-style: disc outside;
}

/*--------------------------------------------------
	list_topics
--------------------------------------------------*/
/* list_news */
.list_topics dl {
  border-bottom: 1px dotted #bbb;
}
.list_topics a {
  color: #000;
  display: table;
  width: 100%;
  font-size: 93.75%;
  text-decoration: none;
  padding: 20px 5px;
}
.list_topics dt {
    display: inline;
}
.list_topics dd {
    display: inline;
    margin-left: 15px;
    color: #002CB2;
}
.list_topics a:hover {
  text-decoration: underline;
}

/* .pager */
.pager {
  margin: 60px 0;
  padding: 50px 0;
  text-align: center;
  background: #FCF8ED;
}
.pager ul {
}
.pager ul li {
  font-size: 81.25%;
  margin: 3px;
  display: inline-block;
}
.pager a,
.pager span {
  color: #000;
  display: block;
  text-decoration: none;
  border: 1px solid #CCC;
  padding: 9px 16px;
  background-color: #fff;
}
.pager li.total span {
  border-color: #FFF;
}
.pager li.prev span,
.pager li.next span,
.pager li.first span,
.pager li.last span {
  border: 1px solid #ccc;
  color: #EDEDED;
}
.pager li.current span {
  color: #fff;
  background: #915E33;
}
.pager a:hover {
  color: #915E33;
  border: 1px solid #999;
  background: #EEEAD9;
}

/* link_prev_next */
.link_prev_next {
  text-align: center;
  margin-top: 40px;
}
.link_prev_next > li {
  display: inline-block;
}
.link_prev_next > li a {
  color: #915E33;
  border: 1px solid #bbb;
  display: block;
  padding: 12px 40px;
  text-decoration: none;
  transition: .3s;
  border-radius: 3px;
  font-size: 90%;
  font-weight: bold;
}
.link_prev_next > li a:hover {
  color: #fff;
  background-color: #915E33;
}

/*サムネイル付きトピックス*/
.list_thumb_topics {
    font-size: 0;
	margin-bottom: 30px;
}
.list_thumb_topics li {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
}
.list_thumb_topics li:nth-child(3n) {
	margin-right: 0;
}
.list_thumb_topics .thumb {
    position: relative;
    padding-bottom: 66.66%;
    overflow: hidden;
    background-color: #F8F6F0;
  border: 1px solid #ccc;
}
.list_thumb_topics .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}
.list_thumb_topics a { text-decoration: none; }
.list_thumb_topics .detail {
    font-size: 15px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px dotted #bbb;
}
.list_thumb_topics a:hover .detail { background-color: #f8f6f0; }

/*広報紙*/
.list_kouhou {
    font-size: 0;
	margin-bottom: 30px;
}
.list_kouhou .item {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
	text-align: center;
	border: 1px solid #bbb;	
}
.list_kouhou .item a { display: block; padding: 5px; }
.list_kouhou .item a:hover { background-color: #f5f4ef; }
.list_kouhou .item:nth-child(3n) {
	margin-right: 0;
}
.list_kouhou .ttl a {
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #333;
}
/*---------------------------------------------------
	beta
---------------------------------------------------*/
#beta {
  float: right;
  width: 200px;
  min-height: 300px; /* 作業時に削除 */
}

/*---------------------------------------------------
	sidemenu
---------------------------------------------------*/
#side_menu {
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
#side_menu .ttl {
  color: #fff;
  font-size: 100%;
  font-weight: normal;
  padding: 10px;
  background-color: #8A8A8A;
}
#side_menu a {
  display: block;
  padding: 5px;
  text-decoration: none;
}
#side_menu a:hover {
  text-decoration: underline;
}
#side_menu .level0 > a {
}
#side_menu .level1 > a {
}
#side_menu .level2 > a {
}
#side_menu .level3 > a {
}
#side_menu li + li, #side_menu li > ul {
  border-top: 1px dashed #ccc;
}

/*--------- beta -----------*/
.list_side_menu {
  margin-bottom: 1em;
  border: 1px solid #CCCCCC;
}
.list_side_menu .ttl {
  font-size: 90%;
  font-weight: normal;
  padding: 10px;
  position: relative;
  background-color: #ddd;
}
.list_side_menu a {
  color: #000;
  display: block;
}
.list_side_menu .ttl span {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  top: 12px;
  right: 10px;
}
.list_side_menu .type_01 {
  background-color: #fff;
}
.list_side_menu .type_01 dt {
  border-top: 1px solid #ccc;
  font-size: 12px;
  line-height: 1.2;
  padding: 7px 20px 0;
}
.list_side_menu .type_01 dt:first-child {
  border-top: none;
}
.list_side_menu .type_01 dd {
  margin: 0 10px;
  padding: 0 0 5px 12px;
  background-size: 6px;
  font-size: 13px;
}
.list_side_menu .type_02 {
  background-color: #fff;
}
.list_side_menu .type_02 > li {
  padding: 2px 10px;
  font-size: 13px;
  border-top: 1px solid #ccc;
}
.list_side_menu .type_02 > li:first-child {
  border-top: none;
}
.list_side_menu .type_02 > li > ul {
  display: none;
}
.list_side_menu .type_02 > li > ul > li {
  background-size: 6px;
  padding-left: 12px;
}
.list_side_menu .type_03 {
  padding: 10px;
  background-color: #fff;
}
.list_side_menu .type_03 > li {
  background-size: 6px;
  padding-left: 12px;
  font-size: 13px;
}

/*------サイドバナー-------*/
.bnr_side li {
    font-size: 14px;
    text-align: center;
    margin: 0 0 10px;
}
/*---------------------------------------------------------------------
	faq
---------------------------------------------------------------------*/
.list_faq {
}
.list_faq .item {
  margin-bottom: 20px;
}
.list_faq .btn_q {
}
.list_faq .btn_q >* {
  cursor: pointer;
  background-color: #d3e3f3;
  color: #1f3f99;
  display: block;
  font-size: 1.7rem;
  font-weight: normal;
  padding: 10px 10px 10px 41px;
  position: relative;
  text-decoration: none;
}
.list_faq .btn_q >*::before {
  color: #1f3f99;
  content: "Q";
  display: inline-block;
  font-size: 28px;
  font-size: 2.8rem;
  position: absolute;
  top: 2px;
  left: 10px;
}
.list_faq .box_a {
  display: none;
  border: 1px solid #d3e3f3;
  padding: 15px 15px 15px 40px;
  position: relative;
}
.list_faq .box_a::before {
  color: #ff8000;
  content: "A";
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
  position: absolute;
  top: 5px;
  left: 11px;
}
.faq_contents {
}
.faq_contents .icon_q {
}
.faq_contents .icon_a {
}
/*---------------------------------------------------------------------
	gallery　フォトアルバム
---------------------------------------------------------------------*/
.list_gallery {
    letter-spacing: -.5em;
}
.list_gallery .item {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    margin: 0 2.56% 2.56% 0;
    width: 31.53%;
}
.list_gallery .item:nth-child(3n) {
    margin-right: 0;
}
.list_gallery .item a {
	color: #000;
	display: block;
	position: relative;
}
.list_gallery .thumb {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
  background-color: #F8F6F0;
}
.list_gallery .thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}
.list_gallery .detail {
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
    padding: 5px 10px;
    width: 100%;
}

.list_gallery .detail dl {}
.list_gallery .detail .date {
    font-size: 90%;
    opacity: .9;
}
.list_gallery .detail .ttl {
  font-size: 110%;
}
/* gallery_detail */
.gallery_detail_head { margin-bottom: 30px; }
.gallery_detail_head .date {
	font-size: 17px;
	text-align: center;
}
.gallery_detail_head .ttl {
	font-size: 20px;
	font-weight: normal;
	text-align: center;
}
.gallery_detail_head .content {
	text-align: center;
	margin-top: 20px;
}
/*---------------------------------------------------------------------
	contact
---------------------------------------------------------------------*/
.mail_form {
  border: 8px solid #cfeceb;
  margin: 0 auto;
  padding: 22px;
}
.mail_form form {
  margin: 0 auto;
}
.mail_form form dl {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 20px;
}
.mail_form form dt {
  width: 30%;
  display: table-cell;
  vertical-align: top;
  font-size: 93.75%;
  padding-right: 10px;
  padding-top: 12px;
}
.mail_form form dd {
  display: table-cell;
  vertical-align: top;
}
.mail_form form .bg_on {
  background-color: #ececec;
  padding: 12px;
}
.mail_form form .bg_on label {
  /*width: 20%;*/
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.mail_form form .border_on {
  border: 1px solid #CCCCCC;
  padding: 12px;
}
.mail_form.confirm_list dd {
  background-color: #E5F6FB;
  padding: 12px;
  word-break: break-all;
}
.mail_form .btn_list {
  text-align: center;
  margin: 20px auto;
}
.mail_form .icon_required::before {
    content: "必須";
    color: #fff;
    background: #e20000;
    font-size: 80%;
    border-radius: 3px;
    padding: 2px 9px;
    margin-right: 10px;
}
.mail_form .error {
  color: #d71618;
  font-size: 13px;
}
.form_errors {
    color: #d80000;
    border: 5px solid #e69898;
    text-align: left;
    padding: 20px;
    background: #fafafa;
    margin-bottom: 20px;
}
.mail_form.type_02 form {
  max-width: none;
}
.mail_form.type_02 form dl {
  max-width: 870px;
}
.mail_form.type_02 form dl dt {
  width: 35%;
}
.mail_form input,
.mail_form button,
.mail_form textarea,
.mail_form select {
  margin: 0;
  font-size: 16px;
  padding: 12px;
}
.mail_form input:-ms-input-placeholder {
 color: #808080;
}
.mail_form select,
.mail_form textarea,
.mail_form input[type="tel"],
.mail_form input[type="text"],
.mail_form input[type="email"],
.mail_form input[type="password"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  background-color: #ececec;
}
.mail_form input.small {
  width: 27%;
}
.mail_form input[type="file"] {
  font-size: 16px;
}
.mail_form input[type="radio"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form input[type="checkbox"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background-color: #ececec;
  position: relative;
}
.mail_form .twin {
  font-size: 0;
}
.mail_form .twin input + input {
  margin-left: 3.44%;
}
.mail_form .twin input {
  width: 48.26%;
  display: inline-block;
}
.mail_form textarea {
  width: 100%;
  height: 150px;
  background-color: #ececec;
}
.mail_form input[type="text"]:focus,
.mail_form input[type="email"]:focus,
.mail_form textarea:focus {
  box-shadow: 0 0 7px #008CD6;
}
.btm_text {
  width: 69%;
  margin-left: auto;
}
.mail_form input[type="submit"] {
  color: #fff;
  padding: 1em 5em;
  background-color: #358FDD;
  border: none;
  border-radius: 0;
}
.mail_form input[type="submit"]:hover {
  background-color: #055FAD;
}
.mail_form input[type="reset"],
.mail_form input.back {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
  border: none;
  border-radius: 0;
}
.mail_form input[type="reset"]:hover,
.mail_form input.back:hover {
  background-color: #555;
}
.mail_form .btn_backhome {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #358FDD;
  text-decoration: none;
  border: none;
  border-radius: 0;
}
.mail_form .btn_backhome:hover {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
}
.form_message {
  background-color: #ffffbb;
  border: 2px solid #df0000;
  color: #df0000;
  font-size: 120%;
  font-weight: bold;
  margin: 10px auto;
  padding: 10px 15px;
}

@media screen and (max-width: 768px) {
  .mail_form {
    padding: 12px;
    border-width: 4px;
  }
  .mail_form form dl {
    padding: 0 10px;
    margin-bottom: 15px;
  }
  .mail_form form dt {
    display: block;
    width: auto;
    text-align: left;
    margin: 0 0 10px;
    padding: 0;
  }
  .mail_form form dd {
    display: block;
    width: auto;
  }
  .mail_form input,
  .mail_form button,
  .mail_form textarea,
  .mail_form select {
    padding: 10px;
  }
  .mail_form input.small {
    width: 50%;
  }
  .mail_form input[type="submit"] {
    padding: 1em;
  }
  .btm_text {
    width: auto;
    text-align: center;
  }
}

/* btn_radio  btn_checkbox */
.btn_radio,
.btn_checkbox {
    display: inline-block;
    margin-right: 6px;
}
.btn_radio + label,
.btn_checkbox + label {
  background-color: #fff;
  border: 1px solid #358fdd;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 13px 20px 13px 10px;
  position: relative;
  margin-bottom: 5px;
}

.btn_radio.size_s + label,
.btn_checkbox.size_s + label {
	padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
}

 
@media (min-width: 1px) {
    .btn_radio,
    .btn_checkbox {
        display: none;
        margin: 0;
    }
    .btn_radio + label,
    .btn_checkbox + label {
        padding-left: 37px;
		color: #000;
	transition: all .2s;
	-webkit-transition: all .2s;
    }
	.btn_radio:checked + label,
    .btn_checkbox:checked + label {
		background-color: #cbe2f6;
        border-color: #358fdd;
	}
    .btn_radio + label::before,
    .btn_checkbox + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;
         
        background: #FFF;
    }
    .btn_radio + label::before {
        border: 1px solid #358fdd;
        border-radius: 30px;
    }
    .btn_checkbox + label::before {
        border: 1px solid #358fdd;
    }
    .btn_radio:checked + label::after,
    .btn_checkbox:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .btn_radio:checked + label::after {
        left: 15px;
         
        width: 8px;
        height: 8px;
        margin-top: -4px;
         
        background: #358fdd;
        border-radius: 8px;
    }
    .btn_checkbox:checked + label::after {
        left: 12px;
         
        width: 16px;
        height: 8px;
        margin-top: -8px;
         
        border-left: 3px solid #358fdd;
        border-bottom: 3px solid #358fdd;
         
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.input_btn_list {
    letter-spacing: -.5em;
}

.input_btn_list li {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 10px 0;
}

.input_btn_list label {
    margin: 0 !important;
}

/*---------------------------------------------------------------------
	404
---------------------------------------------------------------------*/
.thumb_404 {
  margin-right: 40px;
  float: left;
  width: 20%;
}
.border_box {
  padding: 20px;
  border: 10px solid #fbf4e8;
}
.border_box > ul {
  color: #FF7F00;
  padding-left: 20px !important;
}

/*---------------------------------------------------------------------
	sitemap
---------------------------------------------------------------------*/
.list_sitemap {}
.list_sitemap .mgl15 {
    margin-left: 0 !important;
}
.list_sitemap a {
    text-decoration: none;
    padding: 15px 30px;
    display: block;
    border: 1px solid #ccc;
    margin: 10px 20px;
    position: relative;
}
.list_sitemap a::before {
    position: absolute;
    content: "";
    background: #009bc3;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: 28px;
    left: 13px;
}
.list_sitemap a:hover {
  opacity: .8;
}

.list_sitemap .level01 {
  font-size: 100%;
  font-weight: normal;
  margin-bottom: 15px;
}
.list_sitemap * + .level01 {
  margin-top: 40px;
}
.list_sitemap .level01 > a {
    display: block;
    background: #ccc;
    background-size: 50px;
    text-decoration: none;
    color: #133775;
    font-size: 160%;
    padding: 12px 15px;
    position: relative;
    border-radius: 3px;
}
.list_sitemap .level02 {
  font-size: 0;
}
.list_sitemap .level02 >li {
  font-size: 16px;
  display: inline-block;
  vertical-align: top;
  width: 49.16%;
  margin: 0 1.66% 1.66% 0;
}
.list_sitemap .level02 >li:nth-child(2n) {
  margin-right: 0;
}
.list_sitemap .level02 >li > a {
    border: 1px solid #ccc;
    display: block;
    text-decoration: none;
    padding: 12px;
    border-radius: 3px;
    color: #133775;
    background: #fafafa;
    position: relative;
}
.list_sitemap .level02 >li > a::before {
    content: "";
    position: absolute;
    right: 9px;
    top: 50%;
    margin-top: -6px;
    border: 4px solid transparent;
    border-left: 6px solid #133775;
}

.list_sitemap .level03,
.list_sitemap .level04,
.list_sitemap .level05 {
  color: #4787ed;
  margin-top: 10px;
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 36px;
}
.list_sitemap .level04,
.list_sitemap .level05 {
  margin-left: 24px;
}
.list_sitemap .level03 li + li {
  margin-top: 5px;
}

/*---------------------------------------------------------------------
	page_scroll
---------------------------------------------------------------------*/
#page_scroll_navi {
  position: fixed;
  right: 40px;
  bottom: 200px;
  z-index: 999;
}
#page_scroll_navi a {
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  display: block;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
}
#page_scroll_navi a:hover {
  transition: .3s;
  -webkit-transition: .3s;
}

/*---------------------------------------------------------------------
	site_footer
---------------------------------------------------------------------*/
#site_footer {
    background: #fafafa;
    text-align: center;
    border-top: 3px solid #009bc3;
    background: url(/image/bg_footer.jpg) no-repeat center top;
    background-size: cover;
    -webkit-background-size: cover;
    margin-top: 80px;
}
#site_footer .inner {
  box-sizing: content-box;
  margin: 0 auto;
  padding: 30px;
  max-width: 1200px;
}
#site_footer #company_name {
    margin: 50px 0;
}
.copyright {
  color: #fff;
  font-size: 13px;
  text-align: center;
  background-color: rgba(0,0,0,.3);
  padding: 7px 0;
}
@media screen and (max-width: 1024px) {
  #page_scroll_navi {
    position: relative;
    bottom: auto;
    background: #009bc3;
    right: auto;
    z-index: 50;
  }
  #page_scroll_navi a {
    width: 100%;
  }
  #page_scroll_navi a::before {
    position: absolute;
    content: "";
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    top: 25px;
  }
  #page_scroll_navi img {
    display: none;
  }
}
#footer_navi {
    text-align: center;
}
#footer_navi li {
    display: inline-block;
    padding: 12px 20px;
    font-size: 95%;
}
#footer_navi a {
    text-decoration: none;
}
#footer_navi a:hover {
    color: #009bc3;
}

/*---------------------------------------------------------------------
	js-inview
---------------------------------------------------------------------*/
#pagebody .fade_in {
	opacity: 0;
	position: relative;
	top: 1%;
}

#pagebody .js_slide_up {
    opacity: 0;
    position: relative;
    top: 50px;
}
#pagebody .js_slide_down {
    opacity: 0;
    position: relative;
    top: -50px;
}
#pagebody .js_slide_left {
    opacity: 0;
    position: relative;
    left: -80px;
}
#pagebody .js_slide_right {
    opacity: 0;
    position: relative;
    right: -80px;
}
/*---------------------------------------------------------------------
	recruit
---------------------------------------------------------------------*/
.recruit h2 {
  background: url(/image/recruit/ttl_bg.png) no-repeat top right;
}
.recruit h2::before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  right: 0;
  top: 0;
}
  .recruit h2 img {
    display: inline;
    height: 87px;
    padding-bottom: 10px;
  }
.recruit .fc01 {
  color: #035BC6;
}
.recruit .fc02 {
  color: #26A87B;
}
.recruit p {
  font-size: 120%;
  line-height: 2;
}
.recruit h2 span {
  display: block;
  padding-top: 15px;
}
.recruit h3 {
  border-bottom: 5px solid #E3EDF4;
}
.recruit h3::before {
  background: none;
}
.recruit .text02 {
  color: #006199;
  font-weight: bold;
}
.recruit .text {
  margin-bottom: 20px;
}
.recruit .people { margin-bottom: 30px; }
.recruit .people .thumb {
  margin-bottom: 20px;
}
.recruit a.btn_01 { width: 180px; text-align: center; }
.recruit a.btn_01::before {
  content: "";
  background: url(/image/recruit/btn_arrow.png) no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  border: none;
  transform: rotate(0deg);
}
.list_5column_new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.list_5column_new .item {
  width: 33%;
  padding: 2%;
}
.recruit .list_box .item {
  border: 1px solid #ddd;
  text-align: center;
  padding: 10px 0;
}
.recruit .box a {
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
  border: 5px solid #ddd;
  padding: 10px 0;
  font-size: 120%;
}
.recruit .box a.bg01 { border-color: #FFEBEB !important; }
.recruit .box a.bg02 { border-color: #F6E9FF !important; }
.recruit .box a.bg03 { border-color: #FEF4BC !important; }
.recruit .box a.bg04 { border-color: #DFFFD8 !important; }
.recruit .box a.bg05 { border-color: #D7EFFB !important; }
.recruit .box.active a.bg01,
.recruit .box:hover a.bg01 { background: #FFEBEB !important; }
.recruit .box.active a.bg02,
.recruit .box:hover a.bg02 { background: #F6E9FF !important; }
.recruit .box.active a.bg03,
.recruit .box:hover a.bg03 { background: #FEF4BC !important; }
.recruit .box.active a.bg04,
.recruit .box:hover a.bg04 { background: #DFFFD8 !important; }
.recruit .box.active a.bg05,
.recruit .box:hover a.bg05 { background: #D7EFFB !important; }
.recruit .ttl {
  font-size: 200%;
  padding: 20px 0;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}
.recruit .table {
  margin: 20px;
}
.recruit .table dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.recruit .table dt {
  padding: 20px 0;
  color: #035BC6;
  font-size: 112%;
  border-bottom: 1px solid #035BC6;
  width: 20%;
  position: relative;
}
.recruit .table dt::before {
  position: absolute;
  content: "";
  background: #bbb;
  width: 1px;
  height: 88%;
  top: 6%;
  right: 0;
}
.recruit .table dd {
  padding: 20px;
  border-bottom: 1px solid #bbb;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .recruit {
    margin: 0 20px;
  }
  .recruit h2 { padding: 0; }
  .recruit h2 span {
    display: inline-block;
    font-size: 70%;
    margin: 55px 30px 0;
  }
  .recruit h2 img {
    display: inline-block;
    margin-top: -50px;
    height: 102px;
  }
  .recruit .people {
    display: flex;
    flex-wrap: wrap;    
  }
  .recruit .people .thumb {
    width: 35%;
    margin-right: 2%;
  }
  .recruit .people .detail { width: 63%; }
  .list_5column_new .item {  width: 20%; }
  .recruit p {
    font-size: 112%;
    line-height: 1.8;
    margin-bottom: 0.5rem;
  }
}

.mainlead {
  font-size: 180%;
  color: #007bbb;
  margin-bottom: 20px;
}