@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

.sec__ttl {
  position: relative;
  font-size: 36px;
  display: inline-block;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .sec__ttl {
    font-size: 6.4vw;
  }
}

.sec__ttl::after, .sec__ttl::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.sec__ttl::before {
  background: #f48fb1;
  bottom: -6px;
}

.sec__ttl::after {
  background: #b83f09;
  bottom: -12px;
}

.main__wrap {
  width: 100%;
  height: 450px;
  background: url("../img/main.jpg") no-repeat center;
  background-size: cover;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.main__ttl {
  font-size: 30px;
  color: #4b1a07;
  text-align: center;
  padding-top: 125px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .main__ttl {
    font-size: 5.33333vw;
    font-weight: 700;
  }
}

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

.main__txt {
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .main__txt {
    font-size: 4vw;
    font-weight: 700;
  }
  .main__txt span {
    display: block;
  }
}

.plan {
  padding: 80px 0;
  background: #fffffc;
}

@media screen and (max-width: 768px) {
  .plan {
    padding: 5.33333vw 2.66667vw;
  }
}

.plan__wrap {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

.plan__list {
  margin: 60px 0;
}

@media screen and (max-width: 768px) {
  .plan__list {
    margin: 9.33333vw 0;
  }
}

.plan__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #efebe9;
  border-radius: 10px;
  padding: 20px 15px;
}

.plan__item:not(:last-child) {
  margin-bottom: 40px;
}

.plan__box {
  width: 730px;
}

@media screen and (max-width: 768px) {
  .plan__box {
    width: 100%;
  }
}

.plan__itemTtl {
  font-size: 30px;
  color: #b83f09;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .plan__itemTtl {
    font-size: 5.33333vw;
  }
}

.plan__price {
  color: #f00;
  font-size: 24px;
  padding: 5px 0;
}

.plan__price span {
  font-size: 18px;
}

.plan__txt {
  padding: 5px 0;
}

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

.plan__set--list {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

@media screen and (max-width: 768px) {
  .plan__set--list {
    justify-content: flex-start;
  }
}

.plan__set--item {
  width: 18%;
  margin-bottom: 10px;
}

.plan__set--item:not(:nth-of-type(6n-1)) {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .plan__set--item:not(:nth-of-type(6n-1)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .plan__set--item:not(:nth-of-type(4n)) {
    margin-right: 2.66667vw;
  }
}

@media screen and (max-width: 768px) {
  .plan__set--item {
    width: 22%;
    margin-bottom: 2.66667vw;
  }
}

.plan__btn {
  text-align: center;
  width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .plan__btn {
    width: 80%;
    margin-bottom: 20px;
  }
}

.plan__btn a {
  display: block;
  padding: 10px 0;
  background: #f48fb1;
  color: #fff;
  border: solid 1px #f48fb1;
  border-radius: 30px;
}

.plan__btn a:hover {
  background: #fff;
  color: #f48fb1;
  transition: 0.3s;
}

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

.plan__img--sp {
  display: none;
}

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

.hole {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .hole {
    padding: 5.33333vw 2.66667vw;
  }
}

.hole__wrap {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

.hole__ttl {
  position: relative;
  display: inline-block;
  padding: 1em 5em;
  text-align: center;
  margin: 30px auto;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .hole__ttl {
    padding: 2.66667vw 10.66667vw;
    font-size: 4.8vw;
    margin-bottom: 0vw;
  }
}

.hole__ttl:before, .hole__ttl:after {
  position: absolute;
  content: "";
}

.hole__ttl:after {
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

.hole__ttl:before {
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

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

.hole__content {
  background: url("../img/hole_bg.jpg");
  height: 350px;
}

.hole__box {
  max-width: 730px;
}

.hole__txt {
  padding-top: 40px;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
}

.hole__txt span {
  display: block;
}

@media screen and (max-width: 768px) {
  .hole__txt span {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .hole__txt {
    padding-top: 5.33333vw;
    font-size: 4.26667vw;
  }
}

.hole__btn {
  text-align: center;
  width: 550px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .hole__btn {
    width: 90%;
  }
}

.hole__btn a {
  display: block;
  position: relative;
  padding: 10px 0;
  background: #f48fb1;
  color: #fff;
  border: solid 1px #f48fb1;
  font-size: 24px;
  margin: 40px auto;
}

.hole__btn a:hover {
  background: #fff;
  color: #f48fb1;
  transition: 0.3s;
}

.hole__btn a:after {
  position: absolute;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 12px;
  right: 12px;
}

.voice {
  background: #fffffc;
  padding: 80px 0;
}

.voice__wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.voice__list {
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .voice__list {
    padding: 2.66667vw;
    margin-bottom: 0vw;
  }
}

.voice__list--item {
  width: 31%;
  padding: 20px 10px;
  background: #f5f5f5;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .voice__list--item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .voice__list--item:not(:last-child) {
    margin-bottom: 4vw;
  }
}

.voice__icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
  margin-bottom: 10px;
}

.voice__icon img {
  width: 65%;
}

.voice__name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.voice__txt {
  padding: 10px 10px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
}
/*# sourceMappingURL=top.css.map */