.inner {
  width: 980px;
  margin: 0 auto;
}

header {
  width: 100%;
  min-width: 978px;
  height: 50px;
  background: rgba(64, 67, 66, 0.9);
  position: fixed;
  top: 0;
  z-index: 99999;
  padding: 8px 20px;
}

header .logo a {
  display: inline-block;
  width: 100%;
  max-width: 165px;
}

header .logo a img {
  max-width: 165px;
  height: auto;
}

header .menu {
  margin-top: 8px;
}

header .menu .menu_list {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  float: right;
}

header .menu .menu_list li {
  display: inline-block;
  margin: 0 10px;
}

header .menu .menu_list li .link_contact {
  border: 1px solid #fff;
  padding: 5px 5px 0;
  vertical-align: middle;
}

header .menu .menu_list li .txt_menu {
  color: #ffffff;
  line-height: 1;
  font-family: "Roboto-Regular";
  font-size: 13px;
  letter-spacing: 1px;
}

header .menu .menu_list li:first-child {
  margin-left: 0;
}

header .menu .menu_list li:last-child {
  margin-right: 0;
  position: relative;
}

header .menu .menu_list li:hover {
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  color: #ffffff;
}

header .menu .menu_list li.link_to:hover {
  border-bottom: none;
  padding-bottom: 0;
}

header .menu .menu_list li.link_to:hover .link_contact {
  color: rgba(64, 67, 66, 0.9);
  background: #ffffff;
}

footer {
  width: 100%;
  background: #3a3a3a;
  padding: 28px;
}

footer .logo {
  display: inline-block;
  width: 100%;
  max-width: 150px;
  padding-top: 12px;
}

footer .logo a img {
  width: 100%;
  height: auto;
}

footer .ft_menu {
  width: 79%;
  text-align: center;
}

footer .ft_menu .ft_menu_list li {
  display: inline-block;
}

footer .ft_menu .ft_menu_list li .txt_ft_menu {
  color: #909090;
  font-size: 13px;
  line-height: 1;
  border-right: 1px solid #909090;
  padding: 0 9px;
  display: inline-block;
}

footer .ft_menu .ft_menu_list li a:hover {
  color: #ffffff;
}

footer .ft_menu .ft_menu_list li:last-child .txt_ft_menu {
  border-right: 0;
}

footer .ft_menu .txt_copy {
  font-size: 12px;
  line-height: 1;
  color: #c2c2c2;
  margin-top: 12px;
}

footer .social_menu {
  width: 10%;
  margin: 0 auto;
  text-align: right;
}

footer .social_menu .link_social {
  display: inline-block;
  margin: 0 5px;
}

.container {
  width: 100%;
}

.slider_sec {
  width: 100%;
  min-height: 510px;
  margin-bottom: 80px;
}

.slider_sec #com_mv_slider ul li {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 510px;
  width: 100%;
  display: none;
}

.ttl_user_common {
  font-size: 24px;
  font-weight: normal;
  color: #303030;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 50px;
}

.txt_user_com {
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
}

.txt_com_p {
  color: #303030;
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}

.txt_common_form {
  width: 280px;
  padding: 14px 0;
  margin-bottom: 30px;
}

.txt_common_form label {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  color: #303030;
}

.common_input_form input,
.common_input_form textarea {
  font-size: 18px;
  line-height: 24px;
  border: 1px solid #c2c2c2;
  width: 100%;
  padding: 10px;
}

.common_input_form textarea {
  resize: none;
  min-height: 105px;
}

.btn_link {
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  padding: 5px 25px;
  color: #fff;
}

.btn_hover_top {
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  background: rgba(48, 48, 48, 0.5);
}

.btn_hover_top:before {
  border-radius: 5px;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #303030;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.btn_hover_top:hover,
.btn_hover_top:focus,
.btn_hover_top:active {
  border-radius: 5px;
  color: white;
}

.btn_hover_top:hover:before,
.btn_hover_top:focus:before,
.btn_hover_top:active:before {
  transform: scaleY(1);
  border-radius: 5px;
}

