body {
  margin: 0;
  width: 100%;
  min-width: 1200px;
  background-color: #fff9ed;
}

body *{
  box-sizing: border-box;
}

section {
  width: 100%;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

li {
  list-style-type: none;
}

figure, ul, h2{
  margin: 0;
  padding: 0;
}
  
.u-sp {
  display: none !important;
}

.u-pc {
  display: block !important;
}

.dispno{
  display: none !important;
}

#header {
  height: 80px;
  min-width: 1200px;
  background-color: #000000;
  position: relative;
}
#header .header_inner {
  width: 100%;
  height: 80px;
  min-width: 1200px;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .header_inner .header_title {
  font-size: 50px;
  line-height: 50px;
  position: absolute;
  top: 15px;
  left: 20px;
  text-decoration-line: none !important;
}
#header .header_inner .header_ul {
  display: flex;
  position: absolute;
  padding: 25px 0;
  top: 0;
  right: 40px;
}
#header .header_inner .header_ul li {
  font-size: 20px;
  line-height: 30px;
}
#header .header_inner .header_ul li:not(:last-of-type) {
  margin-right: 20px;
}
#header .header_inner .header_ul li a {
  text-decoration-line: none !important;
}

#nav {
  display: none;
}

#footer {
  background-color: #000000;
  min-width: 1200px;
}
#footer .footer_inner {
  padding: 45px 0;
}
#footer .footer_inner p {
  font-size: 20px;
  line-height: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  html.open {
      overflow: hidden;
    }
    body {
      min-width: 100%;
    }
    .u-sp {
      display: block !important;
    }
    .u-pc {
      display: none !important;
    }
    #header {
      height: 16vw;
      min-width: 0;
      width: 100%;
    }
    #header .header_inner {
      height: 16vw;
      min-width: 100%;
    }
    #header .header_inner .header_title {
      font-size: 8vw;
      line-height: 8vw;
      top: 4vw;
      left: 4vw;
    }
    #header .header_inner .header_ul {
      display: none;
    }
    #header .header_inner .header_nav {
      background-color: #ffffff;
      display: block;
      width: 8vw;
      height: 1.333vw;
      position: absolute;
      top: 0;
      right: 4vw;
      bottom: 0;
      margin: auto 0;
      z-index: 300;
    }
    #header .header_inner .header_nav::before, #header .header_inner .header_nav::after {
      content: "";
      background-color: #ffffff;
      width: 8vw;
      height: 1.333vw;
      position: absolute;
      left: 0;
    }
    #header .header_inner .header_nav::before {
      top: -2.667vw;
    }
    #header .header_inner .header_nav::after {
      top: 2.667vw;
    }
    #nav {
      display: block;
      transition: 0.3s;
      position: fixed;
      top: 0;
      left: 100vw;
      z-index: 200;
    }
    #nav .nav_inner {
      display: block;
      width: 100vw;
      height: 100vh;
      overflow-y: scroll;
      padding: 100px 40px;
      background-color: #922D2D;
    }
    #nav .nav_inner .nav_list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 80px;
    }
    #nav .nav_inner .nav_list li {
      width: 100%;
      font-size: 24px;
      line-height: 30px;
    }
    #nav .nav_inner .nav_close {
      display: block;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      position: absolute;
      top: 13px;
      right: 12px;
    }
    #nav .nav_inner .nav_close::before, #nav .nav_inner .nav_close::after {
      content: "";
      display: block;
      width: 35px;
      height: 2px;
      background-color: #ffffff;
      margin: 0;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
    }
    #nav .nav_inner .nav_close::before {
      transform: rotate(45deg);
    }
    #nav .nav_inner .nav_close::after {
      transform: rotate(-45deg);
    }
    #nav .nav_inner .nav_contact {
      border: 2px solid #ffffff;
      padding: 7vw 0;
    }
    #nav .nav_inner .nav_contact p {
      font-size: 3.733vw;
      line-height: 5.333vw;
      margin-bottom: 5.333vw;
      text-align: center;
    }
    #nav .nav_inner .nav_contact a {
      width: 40vw;
      font-size: 3.733vw;
      line-height: 13.333vw;
      border: 1px solid #fff9ed;
      display: block;
      text-align: center;
      background-color: #FFF9F2;
      color: #802D2D;
      margin: 0 auto;
      outline: none;
      transition: 0.3s;
      cursor: pointer;
    }
    #nav.open {
      left: 0;
    }
    #footer{
      min-width: 0;
      width: 100%;
    }
    #footer .footer_inner {
      padding: 6.667vw 0 13.333vw;
    }
    #footer .footer_inner p {
      font-size: 3.2vw;
      line-height: 4.267vw;
    }
}

@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}