/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 18 2025 | 00:17:17 */
/* 言語選択ボタン */

#header_lang {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 70px;
  height: 70px;
  background-color: #888;
  color: #fff;
}

@media (max-width: 768px) {
	#header_lang {
		right: 60px;
	}
}

@media (max-width: 991px) {
  #header_lang {
    height: 60px;
  }
}

#header_lang>ul>li>a {
  display: grid;
  place-items: center;
  position: relative;
  width: 70px;
  height: 100%;
  line-height: 70px;
  border-left: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
	#header_lang>ul>li>a {
		border-left: 0;
	}
}
#header_lang>ul>li>ul>li>a {
  display: grid;
  place-items: center;
  position: relative;
  width: 70px;
  height: 100%;
  line-height: 70px;
	background-color: #fff;
	color: #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
	transition: .3s;
}
#header_lang>ul>li>ul>li>a:hover {
  opacity: .95;
}

@media (max-width: 991px) {
  #header_lang>ul>li>a {
    height: 60px;
    line-height: 60px;
  }
}

@media (max-width: 1350px) {
  .p-global-nav .menu {
    padding-right: 70px;
  }
}

#header_lang ul ul {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  overflow: hidden; /* はみ出しを隠す */
} 
#header_lang ul ul.open {
  transform: scaleY(1);
}
