/* NAVIGATION WITH DROPDOWN */
.header--common {
  opacity: 0.95 !important;
  position: fixed !important;
  width: 100%;
  height: auto;
  z-index: 999999;
  transition: all 0.7s;
  top: 0;
}
.header--common:hover {
  opacity: 1 !important;
}
.header--dark {
  background: #000;
}
.header--light {
  background: #fff;
}
.menu__navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: calc(1400 / 1440* 100%);
  width: 100%;
  margin: 1px auto;
}
.menu__navbar__logo {
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  position: relative;
}
.menu__navbar__logo a {
  position: relative;
}
.menu__navbar__logo img {
  width: 100%;
}
.menu__navbar__logo span {
  position: absolute;
  color: #fff;
  left: 170px;
  width: 120px;
  font-weight: bold;
  top: 2px;
}
.menu__navbar__logo--business {
  width: 210px;
}
.menu__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu__list-item {
  position: relative;
}
.menu__list-link {
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 20px 10px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}
.header--light .menu__list-link {
  color: #2b2b2b;
}

.menu__dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
}
.menu__dropdown-toggle:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
}

.header--light .menu__dropdown-toggle:after {
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="6 9 12 15 18 9"></polyline></svg>');
}

.menu__dropdown {
  background: #fff;
  position: absolute;
  top: 85%;
  left: 0px;    
  border-radius: 15px;
  width: 330px;
  overflow: hidden;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  transform: scale(0.97) translateZ(0px);
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.10));
}

.menu__dropdown--edge:lang(en-US),
.menu__dropdown--edge:lang(zh-CN),
.menu__dropdown--edge:lang(zh-TW) {
  left: -100px;
}
.menu__dropdown--edgex2 {
  left: -150px;
}
.menu__dropdown--edgex12 {
  left: -120px;
}
.menu__parent-dropdown:hover .menu__list-link {
  opacity: .8;
}
.menu__parent-dropdown:hover .menu__dropdown {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.menu__dropdown li {
  display: block;
  margin: 0 !important;
  position: relative;
}
.menu__dropdown li a {
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 400;
  display: block;
  color: #000;
  opacity: 1;
}
.menu__dropdown li a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.menu__dropdown li a small {
  display: block;
  font-size: 12px;
}
.menu__dropdown li a.menu__dropdown-list-link--external:after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.875 7.75C0.708333 7.75 0.5625 7.6875 0.4375 7.5625C0.3125 7.4375 0.25 7.29167 0.25 7.125V0.875C0.25 0.708333 0.3125 0.5625 0.4375 0.4375C0.5625 0.3125 0.708333 0.25 0.875 0.25H3.79167V0.875H0.875V7.125H7.125V4.20833H7.75V7.125C7.75 7.29167 7.6875 7.4375 7.5625 7.5625C7.4375 7.6875 7.29167 7.75 7.125 7.75H0.875ZM2.97917 5.45833L2.54167 5.02083L6.6875 0.875H4.41667V0.25H7.75V3.58333H7.125V1.3125L2.97917 5.45833Z" fill="black"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 2px;
  margin-bottom: 2px;
}
.menu__dropdown li a.menu__dropdown-list-link--external:hover:after {
  background-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.875 7.75C0.708333 7.75 0.5625 7.6875 0.4375 7.5625C0.3125 7.4375 0.25 7.29167 0.25 7.125V0.875C0.25 0.708333 0.3125 0.5625 0.4375 0.4375C0.5625 0.3125 0.708333 0.25 0.875 0.25H3.79167V0.875H0.875V7.125H7.125V4.20833H7.75V7.125C7.75 7.29167 7.6875 7.4375 7.5625 7.5625C7.4375 7.6875 7.29167 7.75 7.125 7.75H0.875ZM2.97917 5.45833L2.54167 5.02083L6.6875 0.875H4.41667V0.25H7.75V3.58333H7.125V1.3125L2.97917 5.45833Z" fill="white"/></svg>');
}
.menu__dropdown-heading {
  font-size: 22px;
  font-weight: bold;
  padding: 20px 40px;
}
.menu__dropdown-heading:first-child {
  padding: 40px 40px 20px;
}
.menu__dropdown__divider {
  position: relative;
  padding: 20px 40px;
}
.menu__dropdown__divider:after {
  content: '';
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  height: 1px;
  background: #ccc;
  display: block;
}
.menu__list-item-btn {
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.menu__list-item-btn:lang(en-US),
.menu__list-item-btn:lang(zh-CN),
.menu__list-item-btn:lang(zh-TW) {
  padding: 0 10px;
}
.menu__list-link-btn {
  padding: 10px 20px;
  display: block;
  border-radius: 100em;
  line-height: 1;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
}
.menu__list-link-btn--blue {
  background-color: #427EEE;
  color: #fff;
}
.menu__list-link-btn--white,
.header--dark .menu__list-link-btn--black {
  background-color: #fff;
  color: #000;
}
.menu__list-link-btn--black {
  background-color: #000;
  color: #fff;
}
.menu__list-link-btn--black-invert {
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
  padding-top: 6px;
  padding-bottom: 6px;
}
.header--dark .menu__list-link-btn--black-invert {
  border: 2px solid #fff;
  background-color: #000;
  color: #fff;
}
.menu__list-link-btn--blue:hover,
.menu__list-link-btn--white:hover,
.menu__list-link-btn--black:hover,
.menu__list-link-btn--black-invert:hover,
.header--dark .menu__list-link-btn--black-invert:hover {
  background-color: #b8a86f;
  color: #fff;
  opacity: 1;
  border-color: #b8a86f;
}
.menu__navbar--sp {
  display: none;
}

@media screen and (min-width: 1110px) and (max-width: 1160px)  {
  .menu__navbar__logo span {
    font-size: 14px;
    top: 4px;
  }
  .menu__list-link {
    padding: 20px 5px;
  }
}
@media screen and (min-width: 959px) and (max-width: 1109px)  {
  .menu__navbar__logo span {
    font-size: 12px;
    top: 27px;
    left: 65px;
  }
  .menu__list-link {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 959px) and (max-width: 1060px)  {
  .menu__list-link {
    padding: 20px 5px;
  }
  .menu__list-link-btn {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1123px) {
  .header--business .menu__list-link {
    padding: 20px 3px;
  }
}
@media screen and (max-width: 1099px) {
  .menu__navbar__logo {
    padding: 20px 0;
    width: 150px;
  }
}

@media screen and (max-width: 959px) {
  .menu__navbar--pc {
    display: none;
  }
  .menu__navbar--sp {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0 30px 0 20px;
  }
  .menu__navbar--mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu__navbar__logo {
    padding: 13px 0;
  }
  .menu__navbar__logo--business {
    width: 200px;
  }
  .menu__burger {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
    position: relative;
    width: 20px;
    height: 20px;
  }
  .menu__burger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .menu__burger span:nth-of-type(1) {
    top: 1px;
  }
  .menu__burger span:nth-of-type(2) {
    top: 9px;
  }
  .menu__burger span:nth-of-type(3) {
    bottom: 1px;
  }
  .menu__burger--active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .menu__burger--active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu__burger--active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .header--dark .menu__burger span {
    background: #fff;
  }
  .header--light .menu__burger span {
    background: #000;
  }
  .menu__list--mobile {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    padding: 30px;
    overflow-y: auto;
    max-height: 100vh;
  }
  .header--light .menu__list--mobile {
    background-color: #fff;
  }
  .menu__dropdown {
    position: relative;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
    background: #6A6868;
    display: block;
    width: 100%;
    border-radius: 0;
    border: none;
    display: none;
  }
  .menu__dropdown li,
  .menu__dropdown li a {
    color: #fff;
    font-size: 14px;
  }
  .menu__dropdown li a {
    padding: 15px 20px;
  }
  .menu__dropdown li a:hover {
    background: none;
  }
  .menu__dropdown li a.menu__dropdown-list-link--external:after {
    background-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.875 7.75C0.708333 7.75 0.5625 7.6875 0.4375 7.5625C0.3125 7.4375 0.25 7.29167 0.25 7.125V0.875C0.25 0.708333 0.3125 0.5625 0.4375 0.4375C0.5625 0.3125 0.708333 0.25 0.875 0.25H3.79167V0.875H0.875V7.125H7.125V4.20833H7.75V7.125C7.75 7.29167 7.6875 7.4375 7.5625 7.5625C7.4375 7.6875 7.29167 7.75 7.125 7.75H0.875ZM2.97917 5.45833L2.54167 5.02083L6.6875 0.875H4.41667V0.25H7.75V3.58333H7.125V1.3125L2.97917 5.45833Z" fill="white"/></svg>');
  }
  .menu__dropdown li.menu__dropdown-heading {
    font-size: 18px;
    padding: 15px 20px;
  }
  .menu__dropdown-toggle:before,
  .menu__dropdown-toggle:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 30px;
    right: 3px;
    transition: opacity .5s;
  }
  .menu__dropdown-toggle:after {
    top: 31px;
    transform: translateY(-50%) rotate(90deg);
    transition: transform .5s;
  }
  .menu__dropdown-toggle--active:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .menu__dropdown-toggle--active:before {
    opacity: 0;
  }
  .menu__parent-dropdown:hover .menu__list-link{
    opacity: 1;
  }
  .menu__dropdown--edge:lang(en-US),
  .menu__dropdown--edge:lang(zh-CN),
  .menu__dropdown--edge:lang(zh-TW),
  .menu__dropdown--edgex2 {
    left: 0px;
  }
  .menu__parent-dropdown--ownedmedia:lang(ja),
  .menu__first-level--last {
    margin-bottom: 50px;
  }
  .header--corporate .menu__list-item-btn,
  .header--business .menu__list-item-btn {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .header--corporate .menu__list-link-btn {
    display: block;
    border-radius: 3px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.4;
  }
  .header--corporate .menu__list-link-btn:hover {
    opacity: 1;
  }
  .header--corporate .menu__list-link-btn--blue,
  .header--corporate .menu__list-link-btn--white {
    background-image: url('../img/circle-caret-white.svg');
    background-position: center right 20px;
    background-repeat: no-repeat;
  }
  .header--corporate .menu__list-link-btn--white {
    background-image: url('../img/circle-caret-blue.svg');
  }
  .menu__list-item--tel a {
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px;
  }
  .menu__list-item--tel a img {
    margin-top: 5px;
  }
  .menu__sns--list {
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .menu__sns--list li {
    margin: 20px 10px ;
  }
  .menu__sns--list li a {
    display: block;
    width: 40px;
    height: 40px;
  }
  .menu__sns--list li a img {
    width: 100%;
    height: 100%;
  }
  .header--light .menu__dropdown {
    background: #f9f9f9;
  }
  .header--light .menu__dropdown li,
  .header--light .menu__dropdown li a {
    color: #000;
  }
  .header--light .menu__dropdown-toggle:before,
  .header--light .menu__dropdown-toggle:after {
    background-color: #000;
  }
  .header--business .menu__list-link-btn--black,
  .header--business .menu__list-link-btn--black-invert {
    font-size: 18px;
  }
  .header--business .menu__list-link-btn--black {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header--business .menu__list-link-btn--black-invert {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .menu__list-link-btn--blue:hover {
    background-color: #427EEE;
  }
  .menu__list-link-btn--white:hover {
    background-color: #fff;
    color: #000;
  }
  .menu__list-link-btn--black:hover {
    background-color: #000;
  }
  .menu__list-link-btn--black-invert:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
  }
  .menu__list-link,
  .menu__dropdown-list-link {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
  .menu__navbar--sp .menu__list-item-btn--mt {
    padding-top: 20px;
  }
  .hidden-sp {
    display: none;
  }
  
}