@media screen and (max-width: 850px) {
  .header-list {
    display: none;
  }
  header h1 {
    font-size: 18px;
  }
  header h1 span {
    font-size: 14px;
  }
  main h1 {
    font-size: 20px;
  }
  main h2 {
    font-size: 14px;
  }
  .btn-border {
    margin-bottom: 20px;
    padding: 12px 16px;
  }
  .btn-border2 {
    padding: 12px 14px 12px 11px;
  }
  footer {
    display: none;
  }
  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
    margin: 0 0 0 auto;
  }
  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #24140e;
    transform: translateY(-50%);
  }
  #hamburger::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #24140e;
  }
  #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #24140e;
  }
  .sp-list {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .9);
    transition: all .2s ease-in-out;
    opacity: 0;
    transform: translateY(-100%);
  }
  .sp-list ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .sp-list li {
    margin: 0;
    padding: 0;
    font-size: 18px;
  }
  .sp-list li span {
    font-size: 16px;
    color: #fff;
  }
  .sp-list li a, .sp-list li span {
    display: block;
    padding: 20px 0;
  }
  .sp-list .close {
    position: relative;
    padding-left: 20px;
  }
  .sp-list .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
  }
  .sp-list .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
  }
  .toggle {
    transform: translateY(0);
    opacity: 1;
  }
  .breadcrumb {
    display: none;
  }
  .breadcrumb {
    display: none;
  }
}  