@charset "UTF-8";
/* CSS Document */
.show.is-pc {
  display: block;
}
.txtColor_orange {
  color: #ED7914;
}
.bgY {
  background: #F4E334;
  padding-bottom: 25px;
}
.point {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 25px 25px 0;
}
.point p {
  flex: 1;
  text-align: center;
}
.pointTxt {
  margin-top: -20px;
  text-align: center;
}
.aboutBox {
  border: 3px solid #ED7914;
  border-radius: 15px;
  overflow: hidden;
  background: #FFF;
  padding: 0 30px 30px;
  margin: 0 25px;
}
.aboutBox h3 {
  background: #ED7914; 
  color: #FFF;
  font-size: 135%;
  padding: 15px 30px;
  line-height: 1;
  text-align: center;
  margin: 0 -30px 20px;
}
.h3_dotted {
  color: #ED7914;
  font-size: 135%;
  font-weight: 500;
  border-bottom: dotted 3px #ED7914;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.h3_merit {
  background: #ED7914;
  color: #FFF;
  border-radius: 50px;
  padding: 10px 25px;
  text-align: center;
  width: 50%;
  margin: 0 auto 40px;
}
.merit {
  display: flex;
  gap: 20px 30px;
}
.merit > div {
  background: #FFF0A3;
  border-radius: 15px;
  padding: 50px 40px 30px;
  position: relative;
  width: calc((100% - 30px) / 2);
  box-sizing: border-box;
  color: #ED7914;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.merit > div h4 {
  font-size: 150%;
  line-height: 1.7;
  margin-bottom: 10px;
}
.merit img.meritIco {
  position: absolute;
  top: -15px;
  left: -15px;
}
.merit img.nonoka {
  position: absolute;
  top: -65px;
  right: -25px;
}
@media screen and (max-width: 768px) {
  .show.is-pc {
    display: none;
  }
  .point {
    flex-wrap: wrap;
  }
  .point p {
    flex: none;
    width: calc((100% - 10px) / 2);
  }
  .aboutBox {
    padding: 0 15px 15px;
    margin: 0;
  }
  .merit {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .merit > div {
    width: 100%;
    padding: 50px 30px 30px;
  }
  .merit img.nonoka {
    width: 120px;
    position: absolute;
    top: -55px;
    right: -15px;
  }
}
@media screen and (max-width: 568px) {
  .point {
    flex-direction: column;
    align-items: center;
  }
  .point p {
    width: 80%;
  }
}