/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://terakoyacloud.com/
Description: Child theme for Twenty Twenty-Five
Author: Your Name
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-child
*/
/* === 言語スイッチャー === */
.mh-lang-item a {
  display: flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.25em 0.4em;
}

.mh-lang-item.is-active a {
  background: #17b7f2;
  color: #fff;
  border-radius: 6px;
}

.mh-lang-item img {
  width: 20px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(0,0,0,0.2);
}
/* For Language Switcher */
.mh-has-dropdown {
  position: relative;
}
.mh-lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  list-style: none;
  padding: 0.4em 0;
  margin: 0;
  z-index: 10;
  min-width: 120px;
}
.mh-lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.8em;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}
.mh-lang-dropdown a:hover {
  background: #f0f8ff;
  color: #17b7f2;
}
.mh-has-dropdown:hover .mh-lang-dropdown {
  display: block;
}