@media screen and (max-width: 768px) {
  .nav-list, .header-nav {
    /* display: none; */
  }
}

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

@media screen and (min-width: 769px) and (max-width: 990px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  .is-sp {
    display: none;
  }
}

.camp-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .camp-inner {
    padding: 0 15px;
  }
}

.camp-lead {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  margin-top: 60px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .camp-lead {
    font-size: 1.8rem;
    display: none;
  }
}

.camp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  -webkit-box-shadow: 0 10px 25px 0 black;
          box-shadow: 0 10px 25px 0 black;
}

.camp-table-item {
  border-bottom: solid 2px white;
}
.camp-table-item:last-child {
  border-bottom: none;
}

.camp-table-item-title {
  position: relative;
  width: 30%;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 30px 0;
}
.camp-table-item-title::after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid black;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@media screen and (max-width: 768px) {
  .camp-table-item-title {
    width: 25%;
    font-size: 1.6rem;
    padding: 15px 0;
  }
}

.camp-table-item-body {
  width: 70%;
  text-align: center;
  background-color: #eee;
  font-size: 2rem;
  font-weight: bold;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .camp-table-item-body {
    font-size: 1.6rem;
    padding: 15px 0 15px 10px;
  }
}

.camp-map {
  padding-top: 50%;
  margin: 70px auto 0;
  -webkit-box-shadow: 0 10px 25px 0 black;
          box-shadow: 0 10px 25px 0 black;
  position: relative;
}
.camp-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .camp-map {
    padding-top: 60%;
    margin-top: 40px;
  }
}

.camp-footer {
  text-align: center;
  margin: 70px 0 70px;
}
@media screen and (max-width: 768px) {
  .camp-footer {
    margin: 40px 0;
  }
}