@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-img img{
    width: 80%;
    margin: 0 auto;
  }
  .sub-image img{
    width: 70%;
    margin: 0 auto;
  }
  .price-title, .hour-title, .kiro-title, .price-list-title {
    font-size: 20px;
  }.price-title2, .hour-title2, .kiro-title2{
    font-size: 16px;
  }
  .price-list h3{
    font-size: 18px;
  }
  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;
  }
}