/*レイアウト*/
body{
 display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wrapper {
  max-width: 1200px;
}
footer {
/*  position: absolute; /*←絶対位置*/
  bottom: 0; /*下に固定*/*/
	margin-top: auto;
}

.carousel-control-prev-icon{
	margin-left: -50%;
}
.carousel-control-next-icon{
	margin-right: -50%;
}

.width-max-30rem {
	max-width: 30rem;
}

/*フォント*/
body {
  font-family: 'Noto Serif JP', serif;
}
.middle-size-font{
	font-size: 1.2rem;
}

.copyright{
	font-size: 0.7rem;
}

footer a {
    color: #FFFFFF;	
}
footer a:hover {
    color: #FFFFFF;	
	opacity: 0.5;
}
.fonst-blue{
	color: 	#1e5479;
}

.flex-center{
	display: flex;
	align-items: center;
}

/*装飾 ---------------------------------------------------------------------- 装飾　*/
.under-line {
  border-bottom: #1e5479 1px solid;
}
.under-line-bold {
  border-bottom: #1e5479 3px solid;
}
.under-line-bold a {
	color: #1e5479;
	text-decoration: none;
}
.under-line-bold a:hover {
	color: #1e5479;
	text-decoration: none;
	opacity: 0.7;
}


.list-group-item {
  border-style: none;
}

.bg-blue{
	background: #1e5479;
}
.contents-gray-and-blue-line{
    background-color: #EEEEEE;
    border-top: 0.8px solid #1E5479;
	border-bottom: 0.8px solid #1E5479;
}
.top-dia-htag a {
	color: #FFFFFF;	
	text-decoration: none;
}
.top-dia-htag a:hover {
	color: #FFFFFF;	
	text-decoration: none;
	opacity: 0.7;
}
.link-text-color a {
    color: #0F0E0E;	
	text-decoration: none;
}
.link-text-color a:hover {
    color: #0F0E0E;	
	text-decoration: none;
	opacity: 0.7;
}

/*<!--リストの黒円マークを装飾-->*/
.list-mark-type-black-cirle li{
	list-style-type: none;
	font-size: 1.2rem;
	text-indent: -1rem;
}

.list-mark-type-black-cirle li::before {
    position: relative;
    top: 5px;
    left: -1rem;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    content: '';
    border-radius: 100%;
    background-color: #000000;
}

/*単一行で黒丸*/
.mark-type-black-cirle{
font-size: 1.2rem;

}
.mark-type-black-cirle::before {
	padding-right: 1rem;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    content: '';
    border-radius: 100%;
    background-color: #000000;
	
}
/*ナビゲーション下ボータ角なしへ*/
.list-group-horizontal .list-group-item:first-child
{
border-top-left-radius: 0rem;
border-bottom-left-radius: 0rem;
}
.list-group-horizontal .list-group-item:last-child
{
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
}


.gnav a {
    text-decoration: none;
    color: #08092E;
    border-bottom: 3px solid #FFFFFF;
}
.gnav:hover{
    border-bottom: 3px solid #1E5479;
	margin-bottom: -3px;

transition: 0.2s ;
} 
footer {
    background: #1e5479;
    　border-top: #1E5479;
    border-top: 1px solid #174362;
}
.no-list-mark li {
    list-style-type: none;	
}


/*ページトップへ移動*/
#page-top {
    position: fixed;
    bottom: 50px;
    right: 40px;
    font-size: 80%;
}
 
#page-top a {
    display: block;
    background: #1e5479;
    color: #fff;
    width: 100px;
    padding: 25px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
}
 
#page-top a:hover {
    background: #1e5479;
    text-decoration: none;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 99;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav.globalMenuSp {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    color: #fff;
    background-color: rgba(1,45,82,0.82);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover {
  background: #ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
}

/*<!--パンくずリスト-->*/

.breadcrumb{/* 背景色の変更 */
	background: #FFFFFF;
}
.breadcrumb a{/* 文字色 */
    color: #2C7BB1;
}
.breadcrumb-item.active{/* アクティブ文字色の変更 */
    color: #0E3755;
}
.breadcrumb-item+.breadcrumb-item::before{/* 区切り線の文字色変更 */
	color:#000;
}

/*トップページ*/

.top-dia a:hover {
	opacity: 0.7;
}
.carousel-item img {
	width: 100%;
	
}
.bg-top-slider{
	background-color: #1e5479;
}

/*業務内容ページ*/

.business-box-index {

}
.bussiness-box-img p {
	color: #1e5479;
}
/*ジョブ型*/
.seminar-link a {
	text-decoration: none;
	color: white;
}
.seminar-link a:hover {
	text-decoration: none;
	color: white;
	opacity: 0.7;
}
/*---------------------------------------------------------------------------------------------メディアクエリ--------*/
/*//768px以上 適用される（タブレットサイズ以上）*/
@media screen and (min-width:768px) and ( max-width:2600px) {
	.h-10rem{ 	height: 14rem; }

}
#user_gmap{width:100%; height:600px; margin:40px 0 5px 0;}
