@charset "UTF-8";
.app-menu {
  font-size: 1.4rem;
  margin: 10px 0;
}
.app-menu ul {
  list-style: none;
  justify-content: center;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
}
.app-menu ul li {
  padding: 0 10px;
}
.app-menu a {
  padding-bottom: 3px;
  /* テキストと下線の間隔 */
  background-image: linear-gradient(#2f2725, #2f2725);
  background-repeat: no-repeat;
  background-position: bottom right;
  /* 下線の初期位置 */
  background-size: 0 1px;
  /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.app-menu a:hover {
  background-position: bottom left;
  /* 下線のホバー時位置 */
  background-size: 100% 1px;
  /* 下線の横幅を100%にする */
}

.webapp-main {
  margin: 0 20px;
}
@media (max-width: 767px) {
  .webapp-main {
    margin: 0 10px;
  }
}
.webapp-main #back_button {
  background-color: #ea5261;
  margin: 10px 0;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 4px 12px 0px;
  border-radius: 20px;
  display: block;
}
.webapp-main .webapp-title-area {
  text-align: center;
}
.webapp-main h1.webapp-title {
  font-size: 2.8rem;
  position: relative;
  color: #2f2725;
  display: inline-block;
  margin: 47px 0;
  text-shadow: 0 0 2px white;
}
.webapp-main h1.webapp-title:before {
  content: "";
  position: absolute;
  background: #ea5261;
  opacity: 0.2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.webapp-main h2 {
  border-bottom: solid 3px #e7e7e7;
  position: relative;
  margin-top: 40px;
  font-size: 2rem;
}
.webapp-main h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ea5261;
  bottom: -3px;
  width: 20%;
}

.webapp-main form p {
  margin: 15px 0;
  font-size: 1.5rem;
}
.webapp-main .selectbox-3 {
  display: block;
  width: 100%;
  position: relative;
  align-items: center;
}
.webapp-main .selectbox-3::after {
  position: absolute;
  right: 15px;
  top: 18px;
  width: 10px;
  height: 7px;
  background-color: #727272;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.webapp-main .selectbox-3 select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  background-color: #fff;
  color: #2f2725;
  font-size: 1em;
  cursor: pointer;
}
.webapp-main form input,
.webapp-main form select,
.webapp-main form textarea {
  width: 100%;
  color: #2f2725;
}
.webapp-main .webapp-form {
  max-width: 550px;
  margin: 0 auto;
}
.webapp-main .webapp-form p {
  margin: 30px 0;
  font-size: 1.4rem;
}
.webapp-main .webapp-form .must {
  font-size: 1.2rem;
  background-color: #f8ab1f;
  color: #ffffff;
  padding: 2px 6px 0;
  margin-left: 5px;
}
.webapp-main .wpcf7 form.sent .wpcf7-response-output {
  border-color: #ea5261;
}

footer a {
  display: inline-block;
}
footer a:hover {
  color: #2f2725;
}

.webapp-footer {
  margin-top: 50px;
}/*# sourceMappingURL=webapp.css.map */