@charset "UTF-8";
/*
Theme Name: new
*/
body {
  background: #000;
}
body * {
  color: #fff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.bg {
  position: fixed;
  z-index: -1;
}

.mv {
  padding: 2rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-bottom: 1rem;
  }
}
.mv__logo {
  display: block;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    width: 50%;
    margin: 0 auto;
    display: block;
  }
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}

ul {
  font-size: 14px;
}

* {
  box-sizing: border-box;
  color: #333;
  transition-duration: 0.3s;
  font-family: "Noto Sans JP", sans-serif;
}

a:hover {
  opacity: 0.7;
}

.column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

main {
  padding: 1rem 0;
}

section {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}

h2 {
  margin: 1.5rem auto 2rem;
  padding: 0.5rem 0;
  background: red;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.3em;
  }
}

.menu {
  padding: 1rem 2rem 2rem;
  margin: 2rem auto;
  border: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  .menu {
    padding: 0.5rem 1rem 1.5rem;
  }
}
.menu h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.menu ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .menu ul {
    display: block;
    padding-left: 0;
  }
}
.menu ul li {
  position: relative;
  list-style: none;
  flex-basis: 50%;
  font-size: 1.25em;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.menu ul li::before {
  content: "◆";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 0.75em;
}

.image__wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 1rem;
}
.image__wrap img {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .image__wrap img {
    width: 50%;
  }
}

footer {
  padding: 3rem 0;
}
footer p {
  text-align: center;
}
footer .tel {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */