/* CSS Document */

body {
	margin: 0;
	padding:0;
	background: #fff;
	color: #111;
	line-height: 1.8;
	font-family:sans-serif; "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
}

img {width: auto;max-width: 100%;height: auto;vertical-align:top;}

a {color:#0066ff;transition:all .3s;text-decoration:none;}
a:hover {color:#3399ff;}
a:visited {color:#0066ff;}

a:hover {transition:all .3s;	opacity:0.5;}


#pankuzu a {
	position: relative;

	&::after {
		position: absolute;
		bottom: -3px;
		left: 0;
		display: block;
		content: "";
		width: 100%;
		height: 2px;
		background: #3399ff;
		transform: scale(0,1);
		transform-origin: right top;
		transition: transform .3s ease;
	}

	&:hover {
		&::after {
			transform-origin: left top;
			transform: scale(1,1);
		}
	}
}


h3 {
	font-size:1rem
	color: #000033;
	letter-spacing: 1px;
	word-spacing: 1.5em;
	border-bottom:1px solid;
}


.mb {display:none !important;}

.clearfix {
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}
.clearfix:after {
	clear: both;
}

section {margin-bottom:80px;}


/*header*/
/*---------------------------------------------------- */
header {
	width:100%;
	height:135px;
	position:sticky;
	top:0;
	z-index:99;
	background:#fff;
}

#header {
	max-width:1280px;
	margin:0 auto;
	padding:10px 0 0 0;
	position:sticky;
	top:0;
}

#logo {
	width:25%;
	margin: 10px 0;
	padding: 0;
	float: left;
}

#hdr-nav {
	width:auto;
	margin:0;
	padding:0;
	display: -webkit-flex;
    display: flex;
	justify-content: right;
	align-items: center;
	text-align:right;
}

#hdr-nav li {
	margin:0 5% 0 0;
	padding:0;
	list-style:none;
	float:left;
	font-size:0.8rem;
	text-align:center;
}


#hdr-nav li a{
	display:block;
	padding:8px 0 8px 20px;
	color: #666;
	text-decoration:none;
}

#hdr-nav li a:visited {
	color: #666;
}
#hdr-nav li a:active {
	color: #666;
}
#hdr-nav li a:hover {
	color: #aaa;
}

.arrow {
	position: relative;
	display: inline-block;
	padding: 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.gr-ico::before{
	left: 3px;
	width: 4px;
	height: 4px;
	border-top: 2px solid #61c1be;
	border-right: 2px solid #61c1be;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#gnavi{
    display: flex;
    margin:10px 0 0 0;
	padding:0;
    list-style: none;
	width:100%;
}
#gnavi li {
	float: left;
	padding:10px 4%;
	width: 20%;
	border-right: 1px solid #999;
	box-sizing: border-box;
	text-align:center;
}

.brn{
	border-right:none !important;
}


/*footer*/
/*---------------------------------------------------- */
footer {
	background: #718cc7;
	margin:0;
}

.footer {
	width:90%;
	margin:0 auto;
	padding:2rem 5%;
	color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #fff;
}

address {
	font-style: normal;
	font-size:0.8rem;
	line-height:1.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer__navi {
  padding: 0;
  list-style: none;
}

.footer__navi li {
  margin-bottom: 0.75rem;
	font-size:0.8rem;
}

.footer__address {
  margin-bottom: 2rem;
}

.footer__address a {
  text-decoration: underline;
}

.flex {
  display: flex;
}

.grid {
 grid-template-columns: repeat(3, minmax(0, 1fr));
}

  .md-justify-between {
    justify-content: space-between;
  }

  .footer__address a {
    text-decoration: none;
    pointer-events: none;
  }


.copyright {
	text-align:center;
	font-size:0.8rem;
	padding:30px 0 0 0;
	color:#fff;
}

@media screen and ( min-width:1024px )
{
/*フッターを折り返す*/
  .lg-flex {
    display: flex;
	}
}


/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#61c1be;
  border-radius: 4px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #9accca;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/*common*/
/*---------------------------------------------------- */
#wrapper {
	max-width:1280px;
	margin: 0 auto;
}

#pankuzu {
	color:#666;
	margin:0 0 20px 20px;
	padding-top:20px;
	border-top:1px solid #ededed;
	letter-spacing:2px;
}


#tit {background:url(../images/tit_back.png);width:100%;height:60px;margin-bottom:20px;}
#tit h1 {color:#fff;font-size:1.3rem;padding:15px 0 0 20px;letter-spacing:2px;vertical-align:center;}
#tit h1 span{font-size:10px;font-weight:normal;padding-left:20px;}

.lead {
	color:#111;
	padding:0 0 30px 0;
	word-wrap: break-word;
	text-align:left;
	}

.txtGray {
	font-size: 0.8rem;
	color: #666;
	margin:0 0 0 10px;
}


.tbl {
	border-collapse:collapse;
	width: 80%;
	margin:30px 10%;
	font-weight: normal;
	color: #333333;
	line-height: 1.5em;
	letter-spacing: 1px;
	line-height: 1.8;
	word-spacing: 1.5em;
	font-size: 1rem;
}
.tbl th {
	width:18%;
	padding:18px 5%;;
	font-weight:normal;
	color:#01127A;
	text-align: right;
	white-space:nowrap;
}
.tbl td {
	padding:18px;
}

.tbl th,.tbl td {
	border-bottom: 1px solid #cccccc;
}

.btn {width:42%;margin: 30px 2.5% !important;float:left;font-size: 16px;font-weight: bold;text-decoration: none;display: block;text-align: center;padding:10px 0;color: #fff;background-color: #0fb5ff;border-radius: 8px;/*box-shadow:3px 3px #333333;*/text-decoration: none;cursor: pointer;}
.btn:hover {color: #fff;background-color: #0073c5}
.btn:visited {color: #fff;}


/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#333;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

/* fadeIn */
.fadeIn{
animation-name: fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger{
    opacity: 0;
}




/* fadeUp */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger{
    opacity: 0;
}




/*トップページ*/
/*---------------------------------------------------- */
.mainimg {max-width:1920px;margin:0 auto;position:relative;}
.mainimg h1 {margin:0;padding:0;}
.mainimg p {position: absolute;width:50%;top:25%;left:25%;}

.top_group {
	width: 60%;
	height:auto;	
	margin:20px auto 50px;
	padding: 0;
	list-style-type: none;
}

.top_group li {
	float: left;
	width:calc(96%/2);
	height:auto;
	margin:0 1%;
	padding:0;
}

.info_box {
	margin-top:20px;
	padding:16px 30px;
	font-size:1rem;
	line-height:1.8;
	background:#fff;
	border:3px solid #dedede;
	border-radius:8px;
	}

.info_box a {
	color: #111;
	}

.infotop_tit {font-size:1.2rem;font-weight:bold;line-height:1.4;color:#000033;margin:20px 0;padding:0;}
.infotop_lead {font-size:1rem !important;margin:10px 0 30px 0;padding:0 0 20px 0;border-bottom:1px solid #ccc;}
.info_box h4 {margin:30px 0 -20px;padding:0;line-height:0;}
.date {font-size:0.8rem;}


/*企業理念*/
/*---------------------------------------------------- */

#psp_l {width:40%;float:left;margin-top:30px;text-align:center;}
#psp_l img {width:30%;}

#psp_r {width:60%;float:left;margin-top:30px;}


/*------交通案内-----*/
.bus-name {
    padding: 0 0 15px 140px;
    font-size: 0.9rem important;
}

.under_line{
	border-bottom: 1px solid #666;
}


.bus-name span {
    color: #fff;
    padding:4px 8px;
}
.bus-name img {
    padding: 3px 0 0 0;
}

.hanabus {
background: #33aaff;
color:#fff;
}
.seibubus {
background: #ff6600;
color:#fff;
}
.kantoubus {
background: #52b229;
color:#fff;
}

.hanabus_txt {
color:#33aaff;
}
.seibubus_txt {
color:#ff6600;
}
.kantoubus_txt {
color:#52b229;
}


/* コンテンツ - プライバシーポリシー*/
/*---------------------------------------------------- */

#privacy {
	font-size: 1rem;
	font-weight: normal;
	color: #333333;
	letter-spacing: 1px;
}

sign {
	font-size: 10px;
	font-weight: bold;
	color: #666666;
	text-align: right;
	letter-spacing: 1px;
	word-spacing: 1.5em;
	width: 100%;
}
/* コンテンツ - 採用情報*/
/*---------------------------------------------------- */




/* コンテンツ - 沿革*/
/*---------------------------------------------------- */

.enkaku_ph {
	margin:30px 0;
	display:inline-block;
}
.enkaku_ph div {
	width:calc(100%/3);
	float:left;
}

.enkaku_ph img {
	width:94%;
	margin:0 3%;
}


.enkaku_ph p {
	font-size: 0.8rem;
	margin:16px;
}


.historiography {
	border-collapse: collapse;
	font-size: 0.9rem;
	color: #333333;
	line-height: 1.8;
	letter-spacing: 1px;
	word-spacing: 1.5em;
	width:100%;
	margin-bottom:30px;
}


.historiography th {
	width:20%;
	margin-left:5%;
	padding:12px;
	text-align:left;
	color:#01127A;
	font-weight:normal;
	border-bottom:1px solid #B0B0B0;
}

.month {
	width:6%;
	text-align:center;
	color: #333333;
	white-space:nowrap;

}

.historiography td {
	padding:12px;
	border-bottom:1px solid #B0B0B0;
}


.border-none {
	border:none;
}

#naviyear ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#naviyear li {
	margin-right: 10px;
}
#naviyear li a {
	display: block;
	text-decoration: none;
	width: 66px;
	height: 14px;
}
#naviyear li#year01 {
	float: left;
	background: url(history_images/images/btnYear01.gif) no-repeat;
}
#naviyear li#year02 {
	float: left;
	background: url(history_images/images/btnYear02.gif) no-repeat;
}
#naviyear li#year03 {
	float: left;
	background: url(history_images/images/btnYear03.gif) no-repeat;
}
#naviyear li#year04 {
	float: left;
	background: url(history_images/images/btnYear04.gif) no-repeat;
}
#naviyear li#year05 {
	float: left;
	background: url(history_images/images/btnYear05.gif) no-repeat;
}
#naviyear li#year01 a:hover {
	float: left;
	background: url(history_images/images/btnYear01_on.gif) no-repeat;
}
#naviyear li#year02 a:hover {
	float: left;
	background: url(history_images/images/btnYear02_on.gif) no-repeat;
}
#naviyear li#year03 a:hover {
	float: left;
	background: url(history_images/images/btnYear03_on.gif) no-repeat;
}
#naviyear li#year04 a:hover {
	float: left;
	background: url(history_images/images/btnYear04_on.gif) no-repeat;
}
#naviyear li#year05 a:hover {
	float: left;
	background: url(history_images/images/btnYear05_on.gif) no-repeat;
}
#history {
	clear: both;
	margin-top: 10px;
	font-size: 10px;
	color: #666666;
	text-align: left;
	text-decoration: none;
}


/* コンテンツ - グループ企業*/
/*---------------------------------------------------- */

.tit_group {
	text-align:center;color:#1e50a2;margin:30px 40px;
}

#group_l{
	margin:0;
	padding:0px 0 100px 0;
	width: 68%;
	float:left;
}

#group_r {
	margin:0;
	padding:40px 0 100px 0;
	width: 32%;
	float:left;
}

.group_ph {
	width:44%;
	margin:28px 3%;
	float:left;
}

.group_ph img {
	box-shadow: 3px 3px 3px #ccc;
	border-radius:8px;
}



/*#group_r p {
	margin: 0;
	position: relative;
	font-size: 1rem;
	line-height: 1.8em;
}
#group_r strong {
	color: #0066CC;
	font-weight: bold;

}

#group_r a {
	color: #333;

	text-decoration:underline;
}
#group_r  a:hover {
	color: #999;
}

#group_r strong a {
	color: #0066CC;
	font-weight: bold;
	font-size: 12px;
}

#group_r strong a:HOVER {
	color: #0099CC;
}
*/

/* 採用情報 */
/*---------------------------------------------------- */
#recruit {
	margin:100px 0 300px;
	text-align:center;
}



/* 31　*/
/*---------------------------------------------------- */
.tenpo_31 {
 	width:49%;
	float:left;
	margin:0 0.5%;
}
.tenpo_31 dl {
	display:flex;
	flex-wrap: wrap;	
	line-height: 1.4;
	margin-right:1%;	
}
.tenpo_31 dt {
	width:18%;
	font-size:0.8rem;
	margin:0 2% 0 0;
	padding:4px 0;
	text-align:center;
	color:#fff;
	background:#004096;
	height:1rem;
}
.tenpo_31 dd {
	width:80%;
	font-size:1rem;
	margin:0 0 20px 0;
	padding:0;
}


.w20 {width:20% !important;}
.mt10 {margin-top:10px !important;}
.mt20 {margin-top:20px !important;}
.mt30 {margin-top:30px !important;}
.mt40 {margin-top:40px !important;}
.mt50 {margin-top:50px !important;}
.mb10 {margin-bottom:10px !important;}
.mb20 {margin-bottom:20px !important;}
.mb30 {margin-bottom:30px !important;}
.mb40 {margin-bottom:40px !important;}
.mb50 {margin-bottom:50px !important;}
.mb80 {margin-bottom:80px !important;}
.mb100 {margin-bottom:100px !important;}
.ml4 {margin-left:4px !important;}
.ml16 {margin-left:19px !important;}
.ml30 {margin-left:33px !important;}

.button {
    display: inline-block;
    width: 80%; /* 幅を自動調整に */
	padding:16px 0;
    margin: 4px 10% 16px;
    text-align: center;
    text-decoration: none;
	font-size:1.3rem;
    line-height: 1;
    outline: none;
    background-color: #E7317E;
    color: #fff !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}


.button:hover {
    /*background-color: #6AAA63 !important;*/
    background-color: #F77E41 !important;
	opacity:1;
}
.button::before,
.button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}
.button,
.button::before,
.button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

/*------タブレット　ブレイクポイント------*/
@media screen and ( max-width:1024px )
{

	header {height:auto;}
	
	#logo {
		width:30%;
		margin:10px 8% 15px 1%;
		padding:0;
	}
	
	#pankuzu {font-size:0.9rem;}
	
	
	#hdr-nav li {font-size:0.7rem;}
	
	
	#gnavi li {
		padding:10px 2%;
	}
	
	#wrapper {margin:20px 1%;}
	
	.fixed_banner_img {
		width:130px !important;
		}
	
	.tbl {
		border-collapse:collapse;
		width: 100%;
		margin:30px 0%;
		}
	
	.button {
		width: 90%;
		padding:0.8rem;
		margin: 4px 5% 10px;
		font-size:0.9rem;
	}

}

/*------モバイル　ブレイクポイント------*/
@media screen and ( max-width:640px )
{

.mb {display:block !important;}
.pc,#page-top {display:none !important;}

.mb_tit {font-size:2.2rem;}

#logo {
	width:50%;
	margin:10px 25% 8px;
	padding:0;
}

#hdr-nav {
	display:none;
}

#gnavi li {
	padding:5px 2% 0px;
}

.footer__logo {
	width:35%;
	margin-bottom: 0.5rem;
}

.footer__address {font-size:0.8rem;}

.footer__navi li {
  margin-bottom: 0.75rem;
	font-size:0.7rem;
}

#tit {height:40px;margin-bottom:20px;}
#tit h1 {font-size:0.9rem;padding:8px 0 0 10px;letter-spacing:0px;}
#tit h1 span{font-size:8px;padding-left:10px;}

.lead {font-size:0.8rem;padding:0 0 15px 0;}

.button {
	font-size:0.8rem;
}


/*トップページ*/
/*---------------------------------------------------- */

.mainimg p {
	position: absolute;
	width:80%;
	top:35%;left:10%;
}


.fixed_banner {
top: 220px; 
}

address {
	font-size:1rem;
	line-height:1.8;
}

#wrapper {
	margin:20px 1%;
	}

.tit {
	font-size:2rem;
	padding:40px 0;
	}
.tit:before, .tit:after {
  border-top: 1px solid #fff;
  content: "";
  width: 10%; /* 線の長さ */
}
.tit:before {
  margin-right: 1em; /* 文字の右隣 */
}
.tit:after {
  margin-left: 1em; /* 文字の左隣 */
}

.subtit {padding:40px 0 20px 0;}
.subtit:before, .subtit:after {
  width: 10%; /* 線の長さ */
}

.subtit img {width:8%;margin-right:10px}

.info_box {
	margin-top:10px;
	padding:0px 8px;
	}

.info_tit {margin:10px 0 30px 0;}
.info_box h4 {padding:10px 0 50px 0;}
.info_box p {}
.infotop_lead {font-size:0.8rem !important;}


/*企業理念*/
/*---------------------------------------------------- */
#psp_l {width:100%;float:none;margin-top:30px;text-align:center;}
#psp_l img {width:30%;}

#psp_r {width:100%;float:none;margin-top:30px;}


/*沿革*/
/*---------------------------------------------------- */
.tit_group {
	text-align:center;margin:10px 0 20px 0;font-size:1rem;
}

.enkaku_ph {
	margin:15px 0;
}

.enkaku_ph p {
	font-size: 0.7rem;
	margin:8px;
}

.historiography th {
	width:20%;
	/*margin-left:1%;*/
	padding:8px;
	font-size:0.7rem;
}

.historiography td {
	font-size:0.7rem;
}

.month {
	width:6%;
	font-size:0.8rem;
}

.txtGray {
	font-size: 0.7rem;
	margin:0 0 0 10px;
}



/*交通案内*/
/*---------------------------------------------------- */
.bus-name {
	padding:0 0 16px 0;
	font-size:0.8rem;
}

.under_line {padding-bottom:16px;}

#company-box th {
	width:20%;
	}
#company-box td,#company-box th {
	font-size:0.7rem;
	}

.arrow_u {
	font-size:0.8rem;
	}

.tbl td,.tbl th {
	font-size:0.9rem;
	}
.tbl th {
	width:16%;
	padding:18px 4%;;
	}

.group_ph {
	margin:14px 3%;
	}

}
