@charset "utf-8";

/* =========================================================
	fixed menu
 * ====================================================== */
#fixed_menu {
  position: fixed;
  top: 286px;
  right: 20px;
  width: 210px;
  z-index: 9999;
}
#fixed_menu .menuList {
  padding: 10px;
  background-color: #666;
  list-style-type: none;
}
#fixed_menu .menuList > li {
  line-height: 2;
}
#fixed_menu .menuList > li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition:.3s;
}
#fixed_menu .menuList > li a:hover {
  text-decoration: underline !important;
  transition:.3s;
}
#fixed_menu .menuBtn {
	display: none;
}
#fixed_contact {
  position: fixed;
  top: 800px;
  right: 20px;
  width: 210px;
  background: rgb(204, 2, 58);
  border: 1px solid rgb(0, 0, 0);
  padding: 10px 14px;
  box-shadow: rgba(0, 0, 0, 0.16) 3px 3px 2px;
  font-family: FrutigerNeueLTW10-Bold, "Frutiger Neue W01 Bd", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Helvetica, sans-serif;
  letter-spacing: 0.15em;
  border-radius: 8px;
  text-align: center;
  margin-top: 15px;
  z-index: 9999;
}
#fixed_contact a {
  text-decoration: none;
  color: #fff !important;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  padding: 0 10px 0 0;
}
#fixed_contact a::before {
  background-image: url(/content/dam/nttcom/hq/cmn/img/arrow-right-accent.svg);
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 13px;
  margin: auto;
  content: "";
  width: 6.409px;
  height: 9.561px;
  background-size: 100% 100%;
}

@media screen and (max-width: 768px) {
  #fixed_menu {
    right: 0;
    top: auto;
    bottom: 85px;
    width: 50%;
  }
  #fixed_menu .menuList {
    display: none;
    margin: 0 auto;
    border-bottom: 1px solid #999;
  }
  #fixed_menu .menuList > li a {
    font-size: 12px;
  }
  #fixed_menu .menuBtn {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 30px 0 10px;
    color: #fff;
    font-size: 12px;
    background-color: #5c5c5c;
	}
  #fixed_menu .menuBtn::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background: url(/content/dam/nttcom/hq/jp/business/dx/smart/img/common/ico-close.svg) left top / 100% auto no-repeat;
    transform:rotate(45deg);
  }
  #fixed_menu .menuBtn.open::after {
    transform:none;
  }
  #fixed_contact {
    top: auto;
    right: 0;
    bottom: 15px;
    width: 50%;
    padding: 10px;
	  margin-left: auto;
	  margin-top: 15px;
  }
  #fixed_contact a {
    font-size: 15px;
  }
}