body {
  min-height: 100vh;
  background: #000;
}
body.is-locked {
	overflow: hidden;
}

.l-header,
.l-header p,
.l-header a {
	font-family: Noto Sans JP,sans-serif;
}
.l-header .u-ff-en {
	font-family: Oswald,sans-serif;
}
.l-header nav {
	box-shadow: none;
}
.l-header ul {
	margin-left: 0;
}
.l-header li {
	list-style: none;
}
@media screen and (min-width:769px) {
	.l-header .u-sm-max {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.l-header .u-sm-min {
		display: none;
	}
}
.l-header{
  position: fixed;
  top: 0;
  z-index: 998;
  width: 100%;
}
.l-header-top {
  z-index: 30;
  position: relative;
	background: #343434;
}

.l-header-top__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 80px 16px 42px;
  isolation: auto;
  background-color: #fff;
  color: #000;
  height: 80px;
}

@media screen and (max-width:768px) {
  .l-header-top__inner {
    height: 50px;
    padding-left: 15px;
  }
}

.l-header-top__logo {
  max-width: 179px;
  flex: 0 0 179px;
  margin-bottom: 0;
}

.l-header-top__logo img {
  display: block;
}

@media screen and (max-width:768px) {
  .l-header-top__logo {
    max-width: 90px;
    flex: 0 0 90px;
  }
}

.l-header-top__name {
  width: 180px;
  margin-left: 55px;
  transform: translateY(2px);
}

.l-header-top__name svg {
  width: 100%;
  height: 23px;
  display: block;
}

.l-header-top__name svg path {
  fill: #000;
}

@media screen and (max-width:992px) {
  .l-header-top__name {
    display: none;
  }
}

.l-header-top__links {
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-right: 20px;
}

.l-header-top__links--english{
    font-weight: 700;
 }

@media screen and (max-width:768px) {
  .l-header-top__links {
    display: none;
  }
}

.l-header-top__links--item {
  padding: 0 20px;
}

.l-header-top__links--item:first-of-type {
  border-right: 1px solid #000;
}

.l-header-top__links--item a {
  color: #000;
  font-size: 14px;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

@media print, screen and (min-width:769px) {
  .l-header-top__links--item a:hover {
    color: #69be28;
  }
}

.l-header-top--line {
  width: 100%;
  height: 24px;
  background: url(/img/green_lines.jpg);
}

@media screen and (max-width:768px) {
  .l-header-top--line {
    height: 21px;
  }
}

.l-header-main-nav {
	box-shadow: none;
}

.l-header-main-nav__items {
  display: flex;
  justify-content: center;
  padding: 15px 0;
	list-style: none;
	margin: 0;
}

@media screen and (max-width:768px) {
  .l-header-main-nav__items {
    display: none;
  }
}

.l-header-main-nav__item {
  margin: 0 20px;
}

.l-header-main-nav__link {
  display: block;
  color: #c5c5c5!important;
  font-size: 15px;
}
.l-header-main-nav__link_in {
  margin-left: 5px;
  margin-right: 5px;
}

.l-header-main-nav__link>span {
  display: inline-block;
  position: relative;
  padding: 8px 0;
  letter-spacing: .03em;
}

.l-header-main-nav__link>span:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c5c5c5;
  content: "";
  opacity: 0;
  transition: opacity .2s ease;
}

.l-header-main-nav__link>span:after {
  position: absolute;
  right: 0;
  left: 0;
  color: #c5c5c5!important;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  content: attr(data-hover);
  opacity: 0;
  transition: all .4s cubic-bezier(.19, 1, .22, 1);
}

.l-header-main-nav__link:hover>span span {
  opacity: 0;
}

.l-header-main-nav__link:hover>span:after, .l-header-main-nav__link:hover>span:before {
  opacity: 1;
}

.l-header-fix {
  visibility: hidden;
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.l-header-fix.is-fix {
  visibility: visible;
  opacity: 1;
}

.l-header-fix__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background-color: #000;
}

.l-header-fix__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.l-header-fix__logo img {
  width: 76px;
}

@media screen and (max-width:768px) {
  .l-header-fix__logo {
    width: 80px;
    height: 80px;
  }
  .l-header-fix__logo img {
    width: 50px;
  }
}

.l-header-drawer {
  visibility: hidden;
  z-index: 200;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh)*100);
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  background-color: #fff;
}

.l-header-drawer.is-active {
  visibility: visible;
  opacity: 1;
}

.l-header-drawer__inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh)*100);
  overflow-y: auto;
}

.l-header-drawer-locale {
  z-index: 1;
  position: absolute;
  top: 28px;
  right: 130px;
}

@media screen and (max-width:768px) {
  .l-header-drawer-locale {
    top: 22px;
    right: auto;
    left: 7.8125vw;
  }
}

.l-header-drawer-locale__items {
  display: flex;
}

@media screen and (max-width:768px) {
  .l-header-drawer-locale__items {
    margin-left: -10px;
  }
}

.l-header-drawer-locale__item {
  position: relative;
  padding: 0 10px;
}

@media screen and (max-width:768px) {
  .l-header-drawer-locale__item {
    padding: 0 6px;
  }
}

.l-header-drawer-locale__item:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 70%;
  margin: auto;
  transform: rotate(8deg);
  background-color: #bbb;
  content: "";
}

.l-header-drawer-locale__item:last-child:before {
  display: none;
}

.l-header-drawer-locale__link {
  color: #bbb;
  font-size: 20px;
}

@media screen and (max-width:768px) {
  .l-header-drawer-locale__link {
    font-size: 15px;
  }
}

.l-header-drawer-locale__link.is-active {
  color: #69be28;
}

.l-header-drawer-nav {
  position: relative;
  padding: 60px 7.8125vw 30px;
  color: #fff;
}

@media print, screen and (min-width:769px) {
  .l-header-drawer-nav {
    max-width: 1280px;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh)*100);
    margin: 0 auto;
    padding: 5.2631578947vw;
  }
  .l-header-drawer-nav:before {
    position: absolute;
    top: 0;
    right: 7.8125vw;
    width: calc(100% - 320px - 7.8125vw);
    height: 100%;
    background: #3f3f3f;
    background-image: url("/img/logo_square_white.svg");
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 220px auto;
    content: "";
    display: none;
  }
}

@media print, screen and (min-width:993px) {
  .l-header-drawer-nav:before {
    right: 5.2631578947vw;
    width: calc(100% - 400px - 5.26316vw);
    background-size: 262px 312px;
  }
}

.l-header-drawer-nav__items {
	margin: 0;
}

@media print, screen and (min-width:769px) {
  .l-header-drawer-nav__item {
    width: 320px;
    margin: 30px 0;
  }
}

@media print, screen and (min-width:993px) {
  .l-header-drawer-nav__item {
    width: 450px;
  }
}

.l-header-drawer-nav__item ruby rt {
  transform: translateY(-.5em);
  letter-spacing: .5em;
  text-align: left;
}

.l-header-drawer-nav__link {
  display: block;
  position: relative;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  transition: color .2s ease;
  color: #000;
}

@media screen and (max-width:768px) {
  .l-header-drawer-nav__link.js-accordion:after, .l-header-drawer-nav__link.js-accordion:before {
    position: absolute;
    background-color: #c5c5c5;
    content: "";
  }
  .l-header-drawer-nav__link.js-accordion:before {
    top: 50%;
    right: 0;
    width: 13px;
    height: 1px;
    transform: translateY(-50%);
  }
  .l-header-drawer-nav__link.js-accordion:after {
    top: 50%;
    right: 6px;
    width: 1px;
    height: 13px;
    transform: translateY(-50%);
  }
  .l-header-drawer-nav__link.js-accordion.is-active:after {
    opacity: 0;
  }
}

@media print, screen and (min-width:769px) {
  .l-header-drawer-nav__link.js-header-drop:before {
    -webkit-backface-visibility: hidden;
    display: block;
    position: absolute;
    top: 50%;
    right: 50px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-top: 2px solid #bbb;
    border-right: 2px solid #bbb;
    backface-visibility: hidden;
    content: "";
    transition: border-color .2s ease;
    will-change: transform;
  }
  .l-header-drawer-nav__link.is-active, .l-header-drawer-nav__link:hover {
    color: #69be28;
  }
  .l-header-drawer-nav__link.is-active:before, .l-header-drawer-nav__link:hover:before {
    border-color: #69be28;
  }
}

@media print, screen and (min-width:993px) {
  .l-header-drawer-nav__link {
    font-size: 28px;
  }
}

@media screen and (max-width:768px) {
  .l-header-drawer-nav__link {
    padding: 2.6041666667vw 0;
    font-size: 18px;
  }
}

@media screen and (max-width:768px) {
  .l-header-drawer-nav-drop {
    display: none;
  }
}

@media print, screen and (min-width:769px) {
  .l-header-drawer-nav-drop {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 320px;
    width: calc(100% - 320px - 10.52632vw);
    height: 100%;
    margin-left: 5.2631578947vw;
    padding-top: 5.2631578947vw;
    padding-left: 4.6052631579vw;
    border-left: 1px solid #ededed;
    background: #fff;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .l-header-drawer-nav-drop.is-active {
    visibility: visible;
    opacity: 1;
  }
}

@media print, screen and (min-width:993px) {
  .l-header-drawer-nav-drop {
    left: 450px;
    width: calc(100% - 450px - 10.52632vw);
  }
}

@media print, screen and (min-width:769px) {
  .l-header-drawer-nav-drop__item {
    margin: 30px 0;
  }
}

.l-header-drawer-nav-drop__link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  transition: color .2s ease;
	color: #000;
}

@media print, screen and (min-width:769px) {
  .l-header-drawer-nav-drop__link:hover {
    color: #69be28;
  }
}

@media print, screen and (min-width:993px) {
  .l-header-drawer-nav-drop__link {
    font-size: 20px;
  }
}

@media screen and (max-width:768px) {
  .l-header-drawer-nav-drop__link {
    padding: 2.6041666667vw 0 2.6041666667vw 3.90625vw;
    font-size: 15px;
  }
}

.l-header-hamburger {
  display: flex;
  visibility: hidden;
  z-index: 201;
  position: fixed;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease;
}

.l-header-hamburger.is-fix {
  visibility: visible;
  opacity: 1;
}

.l-header-top .l-header-hamburger {
  visibility: visible;
  position: absolute;
  opacity: 1;
}

@media print, screen and (min-width:769px) {
  .l-header-top .l-header-hamburger {
    height: 80px;
  }
}

.l-header-hamburger span {
  position: relative;
  width: 36px;
  height: 1px;
}

.l-header-hamburger span:after, .l-header-hamburger span:before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #7f7f7f;
  content: "";
  transition: top .2s ease, transform .2s ease;
}

.l-header-hamburger span:before {
  top: -6px;
}

.l-header-hamburger span:after {
  top: 6px;
}

.l-header-hamburger.is-active {
  visibility: visible;
  background-color: #69be28;
  opacity: 1;
}

.l-header-hamburger.is-active span:before {
  top: 0;
  transform: rotate(25deg);
  background-color: #fff;
}

.l-header-hamburger.is-active span:after {
  top: 0;
  transform: rotate(-25deg);
  background-color: #fff;
}

@media screen and (max-width:768px) {
  .l-header-hamburger {
    width: 50px;
    height: 50px;
  }
  .l-header-hamburger span {
    width: 23px;
  }
  .l-header-hamburger span:before {
    top: -5px;
  }
  .l-header-hamburger span:after {
    top: 5px;
  }
}

.l-header-main-nav__item--sub {
  position: relative;
}
.l-header-main-nav__item--sub:hover .l-header-main-nav__sub {
  opacity: 1;
  visibility: visible;
}

.l-header-main-nav__item--sub:hover .l-header-main-nav__link>span span{
  opacity: 0;
}

.l-header-main-nav__item--sub:hover .l-header-main-nav__link>span:after, 
.l-header-main-nav__item--sub:hover .l-header-main-nav__link>span:before {
    opacity: 1;
}

.l-header-main-nav__item--sub .l-header-main-nav__sub span::before {
  display: none;
}

.l-header-main-nav__sub {
  position: absolute;
  width: 265px;
  top: 35px;
  padding: 0;
  left: -55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  text-align: center;
}

.l-header-main-nav__sub .l-header-main-nav__link {
  white-space: nowrap;
}

.l-header-main-nav__sub .l-header-main-nav__link:hover {
  color: #69BE28 !important;
}

.l-header-main-nav__sub .l-header-main-nav__link:hover span::before {
  display: none;
}

.l-header-main-nav__sub ul {
  margin: 10px 20px;
}
body.jfnt {
  padding-top: 150px;
}

@media screen and (max-width:768px) {
  body.jfnt {
    padding-top: 50px;
  }
}

.l-header-main-nav__sub ul li:last-child{
  position: relative;
  left: 3px;
}