/* ===================================================================
//CSS information

// file name  :  header.css
// style info :  スタイル指定
=================================================================== */

header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  z-index: 10;
  transition: all .4s ease-out;
  will-change: height, background;
}
header h1 {
  position: absolute;
  top: 45px;
  left: 80px;
  width: 360px;
  height: 35px;
  transition: all .4s ease-out;
  will-change: top;
  z-index: 2;
}
header h1 a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
header h1 a img {
  width: 100%;
  height: 100%;
}
header h1 .white {
  display: none;
}
header nav {
  position: relative;
  width: 100%;
}
header nav .language {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 60px;
  background: #222222;
  transition: all .4s ease-out;
  will-change: top;
}
header nav .language ul {
  width: 100%;
  text-align: center;
}
header nav .language ul li {
  position: relative;
  display: inline-block;
  font-size: 12px;
}
header nav .language ul li+li::before {
  content: "／";
  position: absolute;
  left: -8px;
  color: #ffffff;
}
header nav .language ul li a {
  font-size: 1.2rem;
  color: #ffffff;
}
header nav .language ul li.jp {
  padding-right: 15px;
}
header nav .language ul li.en {
  color: #2BF09F;
  cursor: default;
  padding-left: 15px;
}
header nav .globalNav {
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 600;
}
header nav .globalNav .menuBtn {
  display: none;
}
header nav .globalNav .globalNavList {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  border-bottom: 1px solid #333333;
}
header nav .globalNav .globalNavList li {
  position: relative;
}
header nav .globalNav .globalNavList li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 29.5px 19px;
  line-height: 1;
}
header nav .globalNav .globalNavList li a:hover {
  color: #222222;
}
header nav .globalNav .globalNavCurrent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
	background: linear-gradient(to right, #6FFF85, #00FCD5);
  transition: all .25s ease-out;
  will-change: width, left;
  pointer-events: none;
}
header .lowerPageLink {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  padding: 15px 0;
  background: #ffffff;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    opacity: 0;
  opacity: 0;
  transition: all .4s ease-out;
  will-change: top, opacity, pointer-events;
  pointer-events: none;
}
header .lowerPageLink::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 50%;
  transform: translateX(50%);
  border: 20px solid transparent;
  /*border-bottom: 20px solid #fff;*/
  z-index: 2;
}
header .lowerPageLink::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  height: 20px;
}
header nav .globalNav .globalNavList li:nth-child(6) .lowerPageLink {
  right: 0;
  left: auto;
  transform: none;
}
header nav .globalNav .globalNavList li:nth-child(6) .lowerPageLink::before {
  right: 58px;
}
header nav .globalNav .globalNavList li .lowerPageLink a {
  padding: 5px 20px;
  transition: all .3s ease-out;
  will-change: color;
}
header nav .globalNav .globalNavList li .lowerPageLink a:hover {
  color: #2BF09F;
  will-change: auto;
}
header nav .globalNav .globalNavList li .lowerPageLink a span.linkIcn {
  display: inline-block;
  margin-left: 15px;
  max-width: 16px;
  vertical-align: text-top;
}
header nav .globalNav .globalNavList li .lowerPageLink a span.linkIcn svg {
  width: 100%;
  fill: #222222;
  transition: all .25s ease-out;
}
header nav .globalNav .globalNavList li .lowerPageLink a:hover span.linkIcn svg {
  fill: #2BF09F;
}
header nav .globalNav .globalNavList li:hover .lowerPageLink {
  top: 55px;
}
header nav .globalNav .globalNavList li .lowerPageLink li {
  padding: 15px 0;
}
header nav .globalNav .globalNavList li:nth-child(2):hover > .lowerPageLink,
header nav .globalNav .globalNavList li:nth-child(4):hover > .lowerPageLink,
header nav .globalNav .globalNavList li:nth-child(5):hover > .lowerPageLink,
header nav .globalNav .globalNavList li:nth-child(6):hover > .lowerPageLink {
  opacity: 1;
  pointer-events: auto;
}
header nav .globalNav .globalNavList .languageMobile {
  display: none;
  pointer-events: none;
}

header:hover {
  background: rgba(255, 255, 255, .8);
}
.is_scroll header {
  height: 60px;
  background: rgba(255, 255, 255, 1);
}
.is_scroll header h1 {
  top: 15px;
}
.is_scroll header nav .language {
  top: -60px;
}


@media only screen and (min-width:1px) and (max-width: 1450px) {
	header nav .globalNav .globalNavList li a {
		padding: 0 16px 19px;
	}
	header h1 {
		left: 20px;
	}
}

@media only screen and (min-width:1px) and (max-width: 1199px) {
  header {
    height: 60px;
  }
  header h1 {
    top: 15px;
    left: 15px;
    width: 220px;
  }
  .is_scroll header h1 {
    top: 15px;
  }
  header nav .language {
    display: none;
    pointer-events: none;
  }
  header nav .globalNav .menuBtn {
    display: block;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 33px;
    transition: all .4s ease-out;
    box-sizing: border-box;
    z-index: 10;
    cursor: pointer;
  }
  header nav .globalNav .menuBtn span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background-color: #233B6C;
    border-radius: 4px;
    transition: all .4s ease-out;
  }
  header nav .globalNav .menuBtn span:nth-of-type(1) {
    top: 0;
  }
  header nav .globalNav .menuBtn span:nth-of-type(2) {
    top: 6px;
  }
  header nav .globalNav .menuBtn span:nth-of-type(3) {
    top: 12px;
  }
  header nav .globalNav .menuBtn span:nth-of-type(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #233B6C;
    border-radius: 4px;
    transition: all .4s ease-out;
  }
  header nav .globalNav .menuBtn p {
    position: absolute;
    top: 20px;
    width: 100%;
	font-size: 10px;
    color: #233B6C;
    text-align: center;
    line-height: 1;
    opacity: 1;
    transition: all .4s ease-out;
  }
  header nav .globalNav .menuBtn.active span:nth-of-type(1) {
    opacity: 0;
    background-color: #ffffff;
  }
  header nav .globalNav .menuBtn.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg) translate(-10px,-10px);
    transform: rotate(-45deg) translate(-10px,-10px);
    background-color: #ffffff;
  }
  header nav .globalNav .menuBtn.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-color: #ffffff;
  }
  header nav .globalNav .menuBtn.active span:nth-of-type(3) {
    opacity: 0;
    background-color: #ffffff;
  }
  header nav .globalNav .menuBtn.active p {
    opacity: 0;
  }
  header nav .globalNav .globalNavList {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 80px 30px;
    background: #233B6C;
    transform: translateX(120%);
    transition: all .4s ease-out;
    overflow-y: scroll;
    z-index: 9;
  }
  header nav .globalNav .globalNavList.active {
    transform: translateX(0);
  }
  header nav .globalNav .globalNavList li {
    width: 100%;
    height: auto;
  }
  header nav .globalNav .globalNavList > li > a {
    height: inherit;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
  }
  header nav .globalNav .globalNavList > li > a:hover {
    color: #ffffff;
  }
  header .lowerPageLink {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    padding: 15px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    background: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }
  header nav .globalNav .globalNavList li .lowerPageLink li {
    width: 50%;
    padding: 5px 0;
  }
  header nav .globalNav .globalNavList li .lowerPageLink a {
    line-height: 1.4;
  }
  header nav .globalNav .globalNavList li a,
  header nav .globalNav .globalNavList li .lowerPageLink a,
  header nav .globalNav .globalNavList li .lowerPageLink a:hover {
    color: #ffffff;
  }
  header .lowerPageLink::before,
  header .lowerPageLink::after {
    display: none;
  }
  header nav .globalNav .globalNavList li:hover .lowerPageLink {
    top: inherit;
  }
  header nav .globalNav .globalNavList li .lowerPageLink a span.linkIcn svg,
  header nav .globalNav .globalNavList li .lowerPageLink a:hover span.linkIcn svg {
    fill: #ffffff;
  }
  header nav .globalNav .globalNavList li:nth-child(6) .lowerPageLink {
    border-bottom: none;
  }
  header nav .globalNav .globalNavList .languageMobile {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    pointer-events: auto;
  }
  header nav .globalNav .globalNavList .languageMobile a {
    position: relative;
    width: auto;
    padding: 0 29.5px;
    border-bottom: none;
  }
  header nav .globalNav .globalNavList .languageMobile a+a::before {
    content: "／";
    position: absolute;
    left: -8px;
    color: #ffffff;
  }
  header nav .globalNav .globalNavList .languageMobile a.en {
    color: #2BF09F;
  }
}

@media only screen and (max-width: 767px) {
  header nav .globalNav .globalNavList li .lowerPageLink li {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  header h1 a {
    width: 85%;
  }
}
