@charset "UTF-8";
/* clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/*----------------------------------------------------
	再設定
----------------------------------------------------*/
html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
	color: #333;
	font-size: 0.875rem;
}

a {
	transition: all 0.3s;
}
a:link, a:visited {
	color: #2489ce;
}
a:hover, a:active {
	color: #72b7e6;
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
	vertical-align: bottom;
}

input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/*----------------------------------------------------
	汎用クラス
----------------------------------------------------*/
.container_s {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.container_w {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

/*----------------------------------------------------
	共通レイアウト
----------------------------------------------------*/
header .inn {
  padding: 20px 0;
}
header .inn .right .search {
  padding-right: 1rem;
}
header .inn .right .search input[type="text"] {
  border: 1px solid #eee;
  height: 26px;
  line-height: 26px;
  background: #eee;
}
header .inn .right .search input[type="submit"] {
  transition: all 0.3s;
  height: 26px;
  color: #fff;
  background: #072f80;
  padding: 0 14px;
  font-size: 12px;
  border: 1px solid #072f80;
}
header .inn .right .search input[type="submit"]:hover {
  cursor: pointer;
  background: #fff;
  color: #072f80;
}
header .inn .right .lang a {
  display: inline-block;
  line-height: 24px;
  padding: 0 1rem;
  border: 1px solid #072f80;
  background: #072f80;
  color: #fff;
  text-decoration: none;
}
header .inn .right .lang a i {
  font-size: 10px;
}
header .inn .right .lang a:hover {
  background: #fff;
  color: #072f80;
}
header .header_menu {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 1000;
  background: #153272;
  padding: 20px;
}
header .header_menu div {
  position: relative;
}
header .header_menu span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
header .header_menu span:nth-child(1) {
  top: 6px;
}
header .header_menu span:nth-child(2) {
  top: 19px;
}
header .header_menu span:nth-child(3) {
  top: 32px;
}
header .header_menu.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
}
header .header_menu.open span:nth-child(2) {
  width: 0;
  left: 50%;
}
header .header_menu.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #fff;
}

nav#gnav {
  position: relative;
}
nav#gnav .bar {
  background: #072f80;
  border-bottom: 2px solid #112758;
  position: relative;
}
nav#gnav .bar .container {
  position: static;
}
nav#gnav .bar .flex li a {
  display: block;
  padding: 20px 2rem 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
nav#gnav .bar .flex li a:hover {
  background: #112758;
}
nav.japanese .bar .flex li:nth-child(3),
nav.japanese .bar .flex li:nth-child(6) {
  flex: 2;
}

nav#gnav .gnavsub {
  display: none;
  position: absolute;
  left: 0;
  top: 63px;
  background: RGBa(255, 255, 255, 1);
  border-bottom: 2px solid #eee;
  width: 100%;
  padding: 35px 0 40px;
  z-index: 99;
}
#index nav#gnav .gnavsub {
  background: RGBa(255, 255, 255, 0.75);
}
nav#gnav .gnavsub .flex {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
nav#gnav .gnavsub .flex .tit {
  background: #60a0cf;
  width: 20%;
  height: 140px;
  color: #fff;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  padding: 20px 2rem;
}
nav#gnav .gnavsub .flex .tit span {
  display: inline-block;
  font-size: 1.125rem;
  border-bottom: 1px solid #fff;
  line-height: 1.5em;
  padding-bottom: 6px;
}
nav#gnav .gnavsub .flex .nav {
  width: 23%;
}
nav#gnav .gnavsub .flex .nav ul li {
  margin-bottom: 10px;
}
nav#gnav .gnavsub .flex .nav ul li a {
  display: block;
  text-decoration: none;
  padding: 8px 0.5rem;
  color: #153272;
  border-bottom: 1px solid #153272;
  text-align: left;
  line-height: 1.5em;
}
nav#gnav .gnavsub .flex .nav ul li a:hover {
  color: #217fc4;
  border-bottom: 1px solid #217fc4;
  background: RGBa(255, 255, 255, 0.5);
}

nav#spnav {
  background: #fff;
  padding: 10px 2%;
  display: none;
  position: relative;
  z-index: 9999;
}
nav#spnav ul li {
  margin-bottom: 6px;
}
nav#spnav ul li a {
  display: block;
  padding: 10px 1rem;
  font-weight: bold;
  background: #f4f8fc;
  color: #153272;
  text-decoration: none;
}
nav#spnav ul li .sub {
  display: none;
  padding: 6px 0;
}
nav#spnav ul li .sub > li a {
  position: relative;
  background: #fff;
  padding: 5px 2rem;
}
nav#spnav ul li .sub > li a:before {
  content: '';
  position: absolute;
  left: 0.8rem;
  top: 0.9rem;
  width: 8px;
  height: 3px;
  background: #217fc4;
}

nav#spnav ul li.util{ text-align:center;}
nav#spnav ul li.util a{ background:#072f80; color:#FFFFFF;}

.util .search {
	padding-right: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: none;
	padding: 10px 0;
}
.util .search input[type="text"] {
	border: 1px solid #eee;
	width: 240px;
	height: 26px;
	line-height: 26px;
	background: #eee;
}
.util .search input[type="submit"] {
	transition: all 0.3s;
	height: 26px;
	color: #fff;
	background: #072f80;
	padding: 0 14px;
	font-size: 12px;
	border: 1px solid #072f80;
}
.util .search input[type="submit"]:hover {
	cursor: pointer;
	background: #fff;
	color: #072f80;
}

#mainimg {
  background: url(/sis/common/images/top/mainimg01.jpg) no-repeat center center;
  background-size: cover;
}
#mainimg .container {
  padding-top: 300px;
  padding-bottom: 80px;
}
#mainimg .container h1 {
  text-shadow: 0 0 10px #999;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 20px;
}
#mainimg .container h1 span {
  display: inline-block;
  border-bottom: 7px solid #217fc4;
}
#mainimg .container .desc {
  text-shadow: 0 0 10px #999;
  text-align: center;
  color: #fff;
  font-size: 1rem;
}

#main {
  padding: 40px 0 100px;
}
#main #pankuzu {
  text-align: right;
  color: #888;
  margin-bottom: 80px;
}
#main #pankuzu a {
  color: #888;
}

#pageup {
  border-top: 2px solid #f4f8fc;
  text-align: right;
  padding: 20px 0 8px;
}

footer {
  background: #253570;
  color: #fff;
}
footer .container_w {
  overflow: hidden;
}
footer .inner {
  padding: 44px 0 30px;
}
footer .inner .links h2 {
  margin-bottom: 1rem;
}
footer .inner .links .nav01 {
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}
footer .inner .links .nav01 li {
  margin-bottom: 10px;
}
footer .inner .links .nav01 li a {
  color: #fff;
  text-decoration: none;
}
footer .inner .links .nav01 li a:hover {
  opacity: 0.7;
}
footer .inner .links .nav02 li {
  padding-right: 2rem;
}
footer .inner .links .nav02 li a {
  color: #fff;
  text-decoration: none;
}
footer .inner .links .nav02 li a:hover {
  opacity: 0.7;
}
footer .inner .info .flex .address {
  padding-right: 1.6rem;
  line-height: 1.5;
}
footer .inner .info .flex .address h2 {
  font-size: 1rem;
  margin-bottom: 20px;
}
footer .inner .info .flex .address h2 small {
  font-size: 0.75rem;
}
footer .inner .info .flex .address address {
  margin-bottom: 10px;
}
footer .inner .info .flex .map .waku {
  text-align: center;
  padding-bottom: 20px;
}
footer .inner .info .flex .map .waku a {
  display: block;
  padding: 10px 1rem;
  color: #fff;
  position: relative;
}
footer .inner .info .flex .map .waku a::before {
  content: '「';
  position: absolute;
  left: -1rem;
  top: 0;
  color: #fff;
  font-size: 1.5rem;
}
footer .inner .info .flex .map .waku a::after {
  content: '」';
  position: absolute;
  right: -1rem;
  bottom: 0;
  color: #fff;
  font-size: 1.5rem;
}
footer .inner .info .flex .map .waku a:hover {
  background: #fff;
  color: #072f80;
}
footer .googlemap .waku {
  text-align: center;
  padding-bottom: 20px;
}
footer .googlemap .waku a {
  display: block;
  padding: 20px 1rem;
  color: #fff;
  position: relative;
}
footer .googlemap .waku a::before {
  content: '「';
  position: absolute;
  left: -1rem;
  top: 0;
  color: #fff;
  font-size: 2rem;
}
footer .googlemap .waku a::after {
  content: '」';
  position: absolute;
  right: -1rem;
  bottom: 0;
  color: #fff;
  font-size: 2rem;
}
footer .googlemap .waku a:hover {
  background: #fff;
  color: #072f80;
}
footer .copyright {
  background: #fff;
  padding: 10px 2% 16px;
  color: #333;
  text-align: center;
  font-size: 0.75rem;
}

/*----------------------------------------------------
	 <= 1000px
----------------------------------------------------*/
@media (max-width: 1000px) {
  .container,
  .container_w,
  .container_s {
    padding-left: 2% !important;
    padding-right: 2% !important;
  }

  header {
    height: 80px;
  }
  header .inn {
    padding: 10px 4%;
  }
  header .inn .logo {
    max-width: calc(100% - 100px);
  }
  header .inn .right {
    display: none;
  }
  header .header_menu {
    display: block;
  }

  nav#gnav {
    display: none;
  }
  nav#gnav .flex {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  nav#gnav .flex li {
    width: 100%;
  }
}
/*----------------------------------------------------
	phone - tablet <= 767px
----------------------------------------------------*/
@media (max-width: 767px) {

  #mainimg .container {
    padding-top: 200px;
    padding-bottom: 50px;
  }
  #mainimg .container h1 {
    font-size: 1.75rem;
  }
  #mainimg .container .desc {
    font-size: 0.875rem;
  }

  #main #pankuzu {
    margin-bottom: 50px;
  }

  footer .inner {
    padding: 40px 0 20px;
  }
  footer .inner .links {
    display: none;
  }
  footer .inner .info .flex .map {
    display: none;
  }

	.tblwrap {
		display: block;
		margin: 0;
		overflow: auto;
		margin-bottom: 30px;
	}
	
	.tblwrap::-webkit-scrollbar {
	  height: 8px;
	}
	.tblwrap::-webkit-scrollbar-track {
	  margin: 0 2px;
	  background: #ccc;
	  border-radius: 5px;
	}
	.tblwrap::-webkit-scrollbar-thumb {
	  border-radius: 5px;
	  background: #888;
	}
}
/*----------------------------------------------------
	phone <= 480px
----------------------------------------------------*/
@media (max-width: 480px) {
  header .inn {
    padding-top: 14px;
  }
  footer .container_w {
    overflow: hidden;
  }
}
