.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  transition: all 0.5s;
  overflow: hidden;
  background: #EB5F46;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.opening .logo {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.opening .logo.show {
  opacity: 1;
  visibility: visible;
}
.opening.hidden {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.opening.hide {
  display: none;
}
@media screen and (max-width: 767px) {
  .opening .logo {
    width: 152px;
  }
}

main {
  position: relative;
  z-index: 50;
  margin-top: 96px;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 86px;
  }
}

.nav-fixed {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-fixed .logo {
  padding: 18px 0 18px 24px;
}
.nav-fixed .logo a {
  display: block;
  line-height: 0;
  position: relative;
}
.nav-fixed .logo a .on {
  position: relative;
  z-index: 2;
  transition: opacity 0.5s, visibility 0.5s;
}
.nav-fixed .logo a .off {
  position: absolute;
  width: 223px;
  max-width: unset;
  top: 0;
  left: 17px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.nav-fixed .nav {
  padding: 0 40px 0 0;
  display: flex;
  gap: 24px;
  font-size: 18px;
  line-height: 1.5;
}
.nav-fixed .nav li a {
  display: block;
  text-decoration: none;
}
@media (hover: hover) {
  .nav-fixed .nav li a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 900px) {
  .nav-fixed .logo a .off {
    left: 0;
    width: 150px;
  }
  .nav-fixed .nav {
    font-size: 16px;
    padding: 0 20px 0 0;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .nav-fixed .logo {
    padding: 15px 0 15px 12px;
    width: 105px;
  }
  .nav-fixed .logo a .off {
    width: 152px;
    top: 9px;
    left: 12px;
  }
}

.hamburger {
  width: 56px;
  height: 56px;
  background: #000;
  border-radius: 50%;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger:after {
  display: none;
}
.hamburger .hamburger-box {
  width: 24px;
  height: 15px;
}
.hamburger .hamburger-box .hamburger-inner, .hamburger .hamburger-box .hamburger-inner::before, .hamburger .hamburger-box .hamburger-inner::after {
  height: 1px;
}
.hamburger:not(.is-active) .hamburger-box .hamburger-inner::after {
  width: 14px;
}

#menu-toggle {
  text-align: center;
  padding: 100px 0;
  display:flex;
}
#menu-toggle .inner {
	margin: auto;
}
#menu-toggle .nav {
  font-size: 16px;
  line-height: 1.5;
}
#menu-toggle .nav li + li {
  margin-top: 20px;
}

#footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 56px 66px 71px 70px;
  background: #3A3A3A;
  color: #fff;
}
#footer .right {
  text-align: right;
}
#footer .right .nav {
  font-size: 16px;
  line-height: 1;
  display: flex;
  gap: 24px;
}
#footer .right .nav a {
  display: block;
  text-decoration: none;
}
@media (hover: hover) {
  #footer .right .nav a:hover {
    opacity: 0.8;
  }
}
#footer .right .copyright {
  font-size: 10px;
  line-height: 1;
  margin: 24px 0 0;
}
@media screen and (max-width: 1000px) {
  #footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  #footer .right .nav {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 53px 0 61px;
    display: block;
  }
  #footer .logo {
    width: 125px;
    margin: 0 auto;
  }
  #footer .right {
    text-align: center;
  }
  #footer .right .copyright {
    margin: 29px 0 0;
  }
#footer .right .copyright a {
	display: block;
margin-bottom: 15px;
}
}

.btn-fixed {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 20px;
}
.btn-fixed.hide {
	opacity: 0!important;
	visibility:hidden!important;
}
.btn-fixed a {
  display: block;
  color: #fff;
  text-align: center;
  background: url("../img/shared/icon_mail.svg") no-repeat bottom 8px right 7px, #EB5F46;
  border: 1px solid #EB5F46;
  border-radius: 30px 30px 0px 30px;
  padding: 44px 0;
  width: 140px;
  line-height: 1.6;
  text-decoration: none;
}
@media (hover: hover) {
  .btn-fixed a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .btn-fixed {
    right: 5px;
    bottom: 50px;
  }
  .btn-fixed a {
    width: 80px;
    font-size: 10px;
    padding: 24px 0;
    background-size: 13px auto;
    border-radius: 15px 15px 0px 15px;
    background-position: bottom 6px right 6px;
  }
}

.block {
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .block {
    padding: 32px 0 100px;
  }
}

.group-title-common .sub-title {
  font-size: 16px;
  line-height: 2.6;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
}
.group-title-common .sub-title::before {
  content: "";
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background: #EB5F46;
}
.group-title-common h2 {
  font-size: 56px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .group-title-common .sub-title {
    font-size: 14px;
    line-height: 1;
    gap: 6px;
    margin: 0 0 24px;
  }
  .group-title-common h2 {
    font-size: 32px;
  }
}

.list-information .item .date {
  font-size: 12px;
  line-height: 2.1;
  margin: 0 0 11px;
}
.list-information .item + .item {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .list-information {
    padding: 24px 0 0;
    position: relative;
  }
  .list-information::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: #D8D8D8;
  }
  .list-information .item .date {
    font-size: 10px;
    margin: 0 0 8px;
  }
  .list-information .item + .item {
    margin-top: 24px;
  }
}

.wrap-information {
  width: 789px;
}