/*固定表示の中身*/
.headerarea {
  position: relative;
  z-index: 10;
}
#header-inner {
  position: fixed;
  display: flex;
 top: 21px;
  right: 70px;
}
.lang-btn {
  position: relative;
  display: flex;
  align-items:baseline;
  list-style-type: none;
z-index: 99;
  font-size: 1rem;
  color: #d3d3d3;
  font-weight: 700;
	width: 4em;
	justify-content: space-between;
}
.jp-font {
  font-family: 'Lato', sans-serif;
}
.lang-off {
  color: gray;
}
.lang-on {
  text-decoration: none;
  color: lightgray;
  position: relative;
}
.drawer{
	margin-left: 30px;
}
.menu {
  z-index: 99;
  height: 22px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 30px;
}
.menu__line {
  background: #d3d3d3;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.menu__line--center {
  top: 10px;
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 10px;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform: scaleX(0);
}
.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}
/*メニューで表示される内容*/
ul.gnav__menu {
  list-style-position: outside;
}
/*gnav*/
nav.gnav {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  position: fixed;
	top: 0;
	left: 0;
  width: 100%;
  z-index: 98;
}
.gnav__wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  flex-direction: column;
}
.gnav__wrap ul.gnav__menu {
  width: 100%;
}
.gnav-cv {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0;
  margin: 1em auto;
  letter-spacing: 1px;
  white-space: nowrap;
}
.gnav-cv a {
  text-align: center;
  background: #000;
  border: solid 2px #fff;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.5em 1em;
}
.gnav__menu__item {
  margin: 40px 0;
  text-align: center;
}
.gnav__menu__item a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  /*padding: 40px;*/
  text-decoration: none;
  transition: .5s;
}
.gnav__menu__item a:hover {
  color: #666;
}
.gnav-lang {
  color: #808080;
  display: flex;
  justify-content: space-around;
  font-size: 16px;
}
.gnav-lang p {
  padding: 0 1em;
}
.gnav-lang a {
  text-decoration: none;
  color: #fff;
}
.gnav-lang .en {
  border-left: solid 1px #fff;
}
/*-------------------------------------
 ▼中型画面向けデザイン（タブレットなど）
 --------------------------------------*/
@media screen and (min-width: 768px) {
  .lang-btn {
    z-index: 99;
    list-style: none;
    top: 50px;
    right: 130px;
    position: fixed;
    width: 80px;
    display: flex;
    justify-content: space-around;
    font-size: 1rem;
    color: #d3d3d3;
  }
  .menu {
    height: 22px;
    width: 40px;
    right: 50px;
    top: 50px;
  }
.gnav__menu__item {
    margin: 40px 0;
}
  .gnav__menu__item a {
    font-size: 22px;
  }
  .gnav-cv {
    font-size: 22px;
  }
  .gnav-lang {
    justify-content: space-around;
    font-size: 22px;
  }
}
/*-------------------------------------
 スマホlandscape対応
 --------------------------------------*/
@media all and (orientation: landscape) {
	.gnav__menu__item {
    margin: 20px 0;
    text-align: center;
}
}
/*-------------------------------
 ▼大型画面向けデザイン（PCなど）
 --------------------------------*/
@media screen and (min-width: 1024px) {
  .lang-btn {
    z-index: 99;
    list-style: none;
    top: 59px;
    right: 160px;
    position: fixed;
    width: 90px;
    display: flex;
    justify-content: space-around;
    font-size: 1.3rem;
    color: #d3d3d3;
  }
  .menu {
    height: 22px;
    right: 80px;
    top: 60px;
    width: 42px;
  }
  .menu__line {
    /*background: #fff;*/
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu__line--center {
    top: 10px;
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .gnav__menu__item a {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 4px;
    padding: 40px;
  }
  .gnav-cv {
    font-size: 1.7em;
    font-weight: 700;
    text-align: center;
    padding: 1em 0.8em;
    margin: 1em auto;
    white-space: nowrap;
  }
.gnav__menu__item {
    margin: 40px 0;
}
  .gnav-lang {
    justify-content: space-around;
    font-size: 1.5em;
  }
  .menu__line--top.active {
    top: 10px;
  }
  .menu__line--bottom.active {
    bottom: 10px;
  }
}