* {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

*::before, *::after {
  box-sizing: border-box;
}

a, a:link, a:visited, a:hover {
  text-decoration: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active, button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

html, body {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

html.html-reset {
  margin-top: 0 !important;
}

#wpadminbar {
  top: initial !important;
  bottom: 0;
}

body {
  display: flex;
  flex-wrap: wrap;
  color: #1d1d1d;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
}
body h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
  width: 100%;
  line-height: 1;
}
body h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
  width: 100%;
  line-height: 1;
}
body h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
  line-height: 1;
}

.fix-header {
  width: 100%;
  background: #feea11;
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: 0px 5px 15px 0px rgba(34, 60, 80, 0.2);
  z-index: 99;
}
.fix-header .menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.fix-header .menu a {
  padding: 10px 15px;
  color: #1d1d1d;
  display: block;
}
.fix-header .menu a:hover {
  color: #fff;
  background: #e5d200;
}
.fix-header .menu .current-page-ancestor a,
.fix-header .menu .current_page_item a {
  background: #fff;
  color: #1d1d1d;
}
.fix-header .title {
  display: none;
  width: 100%;
  padding: 0 15px;
  min-height: 40px;
  align-items: center;
}
.fix-header .title .burger-wrap {
  width: 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 19px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
}
.fix-header .title .burger-wrap span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000000;
}
.fix-header .title .name {
  font-size: 17px;
  font-weight: bold;
  line-height: 20px;
  width: calc(100% - 50px);
}

.content-wrap {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.content-wrap .left-menu {
  width: 300px;
  background: #feea11;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 40px;
  z-index: 9;
  height: 100vh;
  border-right: solid 2px #feea11;
}
.content-wrap .left-menu a {
  color: #1d1d1d;
  padding: 10px 15px;
  border-bottom: solid 1px #fff;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.content-wrap .left-menu a:hover {
  color: #fff;
  background: #e5d200;
}
.content-wrap .left-menu li:last-child a {
  border: none;
}
.content-wrap .left-menu .current_page_item a {
  background: #fff;
  color: #1d1d1d;
}
.content-wrap .content {
  width: 100%;
  margin: auto;
  max-width: 1200px;
  padding: 0 20px 20px 320px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 24px;
}
.content-wrap .content a {
  color: #e5d200;
  font-weight: bold;
}
.content-wrap .content a:hover {
  color: #feea11;
}
.content-wrap .content p {
  margin-bottom: 20px;
}
.content-wrap .content ul {
  margin-bottom: 20px;
}
.content-wrap .content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.content-wrap .content ul li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 4px;
  left: 0;
  background: #feea11;
  border-radius: 100%;
}
.content-wrap .content ul li:last-child {
  margin-bottom: 0;
}
.content-wrap .content iframe {
  width: 100%;
  height: 484px;
}
.content-wrap .content img {
  display: block;
}
.content-wrap .content img.mini {
  max-width: 560px;
}
.content-wrap .content table {
  border: solid 2px;
  margin-bottom: 20px;
  width: 100%;
  border-collapse: collapse;
}
.content-wrap .content table td {
  padding: 10px;
  border: solid 1px;
}

@media (max-width: 1200px) {
  .fix-header .menu {
    display: none;
  }
  .fix-header .title {
    display: flex;
  }
  .content-wrap {
    margin-top: 65px;
  }
  .content-wrap .left-menu {
    display: none;
  }
  .content-wrap .content {
    max-width: 600px;
    padding: 0 15px 15px 15px;
    font-size: 15px;
    line-height: 18px;
  }
  .content-wrap .content p {
    margin-bottom: 10px;
  }
  body h1 {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
