@charset "utf-8";
/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
/*fadeInのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.9;
}
header nav ul ul, .small-screen #menubar ul ul {
  animation: fadeIn 0.5s 0.1s both;
}
#menubar {
  display: none;
}
#menubar ul {
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
}
#menubar a {
  display: block;
}
.large-screen #menubar {
  display: block;
}
.small-screen #menubar.display-block {
  display: block;
}
#menubar_hdr.display-none {
  display: none;
}
.btnmenu_parent ul {
  display: none;
}
a.btnmenu::before {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: bold;
  margin-right: 0.5em;
}
@keyframes animation1 {
  0% {
    right: -100vw;
  }
  100% {
    right: 0px;
  }
}
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 30%;
  padding: 50px;
  height: 100%;
  background-color: #00421d;
  animation: animation1 0.2s both;
}
@media screen and (max-width: 1024px) {
    .small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 100%;
  padding: 50px;
  height: 100%;
  background-color: #00421d;
  animation: animation1 0.2s both;
}
    
}
.small-screen #menubar li {
  margin: 1rem 0;
}
.small-screen #menubar li a {
  padding: 1rem 0;
  font-size: 1.8rem;
  color: #FFF;
  text-decoration: none;
}
.small-screen #menubar li a:hover {
  text-decoration: underline;
}
.small-screen #menubar ul ul a {
  margin-left: 2rem;
}
#menubar_hdr {
  position: fixed;
  z-index: 101;
  cursor: pointer;
  top: 34px;
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  background-color: #FFF;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {#menubar_hdr {
  position: fixed;
  z-index: 101;
  cursor: pointer;
  top: 15px;
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  background-color: #FFF;
  border-radius: 50%;
}}
/*@media screen and (min-width:900px) {
  #menubar_hdr {
    top: 34px;
  }
}*/
#menubar_hdr:hover {
  transform: scale(1.1);
}
#menubar_hdr.ham {
  width: 50px;
  height: 50px;
}
#menubar_hdr div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#menubar_hdr div span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.5s ease-in-out;
  position: absolute;
}



#menubar_hdr div span:nth-child(1) {
  top: 0;
}
#menubar_hdr div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#menubar_hdr div span:nth-child(3) {
  bottom: 0;
}
#menubar_hdr.ham div span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#menubar_hdr.ham div span:nth-child(2) {
  opacity: 0;
}
#menubar_hdr.ham div span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

#menubar .logo {
  width: 62%;
  position: fixed;
	top:20px;
	left: 15%;}
#menubar .logo img{width: 100%;height: auto;}
/*.nav-contact {
  color: #231815;
  background-color: #FFF;
  text-align-last: center;
  border-radius: 20px;
  display: inline-block;
}
.nav-contact a {
  color: #231815;
  padding: 10px 20px;
  font-size: 1.6rem;
  border-radius: 20px;
  text-decoration: none;
}
.nav-contact a:hover {
  border-radius: 20px;
  background-color: #b7dbab;
  text-decoration: none;
}*/

.nav-language {
  color: #FFF;
  margin: 50px 0 0 0;
  font-size: 1.6rem;
}
.nav-language a {
  color: #FFF;
  font-size: 1.6rem;
  text-decoration: none;
}
.nav-language_en, .nav-language_line, .nav-language_jp {
  float: left;
  margin-right: 10px;
}
.nav-language_en a:hover, .nav-language_jp a:hover {
  text-decoration: underline;
}
.nav-language:after {
  content: "";
  display: block;
  clear: both;
}
.nav-line {
  width: 50px;
  margin: 0 auto;
  position: fixed;
  right: 20px;
  top: 110px;
  z-index: 997;
}
.nav-slack {
  width: 40px;
  margin: 0 auto;
  position: fixed;
  right: 25px;
  top: 180px;
  z-index: 998
}
.nav-line img, .nav-slack img {
  width: 100%;
  height: auto;
}