@charset "UTF-8";
/* CSS Document */

/*============
nav
=============*/
@media screen and (min-width: 751px) {
.header {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 999;
    top: 0px;
	width: 94%;
	margin-top: 40px;
	min-width: 1288px;
}
.header .header-band {
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding-right: 44px;
    padding-left: 56px;
    min-width: 1000px;
}
.header .logo {
    width: 206px;
    float: left;
    margin-top: 15px;
	margin-bottom: 20px;
}
.header .global-nav {
    float: right;
    margin-top: 18px !important;
}
.nav li{
    float: left;
	margin-left: 20px;
}
.nav li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}
.header .top-company {
    margin-left: 56px;
}
.Pageindex__back  .top-company {
	width: 110px;
}
}
@media screen and (max-width: 750px) {
.header {
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
	z-index: 9999;
}
.header .header-band {
    background-image: -webkit-linear-gradient(315deg,rgba(103,243,239,1.00) 0%,rgba(34,107,168,1.00) 100%);
    background-image: -moz-linear-gradient(315deg,rgba(103,243,239,1.00) 0%,rgba(34,107,168,1.00) 100%);
    background-image: -o-linear-gradient(315deg,rgba(103,243,239,1.00) 0%,rgba(34,107,168,1.00) 100%);
    background-image: linear-gradient(135deg,rgba(103,243,239,1.00) 0%,rgba(34,107,168,1.00) 100%);
    height: 20.333vw;
	}
.global-nav {
    position: fixed;
    right: -60.937vw; /* これで隠れる */
    top: 0;
    width: 60.937vw; /* スマホに収まるくらい */
    height: 100vh;
    padding-top: 40px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    font-weight: 500;
}
.hamburger {
    position: fixed;
    right: 0;
    top: 0;
    width: 40px; /* クリックしやすいようにちゃんと幅を指定する */
    height: 40px; /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
    margin-right: 30px;
    margin-top: 10px;
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 12vw;
}
.nav li {
    text-align: left;
    padding: 0 14px;
}
.nav li a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #111;
  padding-left: 4.8vw;
}
.nav li a:hover {
  background-color: #eee;
}
.hamburger__line {
    position: absolute;
    left: 11px;
    width: 33px;
    height: 3px;
    background-color: #fff;
    transition: all .6s;
}
.hamburger__line--1 {
  top: 14px;
}
.hamburger__line--2 {
    top: 24px;
}
.hamburger__line--3 {
    top: 34px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
  background-color: #2275ae;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
  background-color: #2275ae;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
  background-color: #2275ae;
}
#header .header-band .logo {
width: 78%;
    line-height: 2.5vw;
    background-color: #fff;
    padding: 3.2vw 3.2vw;
    height: 20.333vw;
    box-sizing: border-box;
}
.header-band .logo h1 {
    margin-top: 3.5vw;
	width: 65%;
}
#header .header-band .logo .top-company.sp {
}
}




/*urlとhrefが一致している場合*/
ul.global-nav__list li.now_here{
    border-bottom: 2px solid #0f507f;
}
ul.global-nav__list li.now_here a{
	color: #0f507f;
}

.nav li.current{
    border-bottom: 2px solid #0f507f;
}
.nav li.current a{
	color: #0f507f;
}





/*ヘッダー後から固定*/
@media screen and (min-width: 751px) {
	.header.fixed{
		margin-top: 0px;
	}
	.fixed{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    z-index: 999;
    filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.2));
	width: 100%;
	}
}