#inquiryForm .error {
  font-size: 12px;
  color: red;
  display: none;
}

#inquiryForm .error.on {
  display: block;
}

.caution {
  color: red;
}

textarea {
  width: 100%;
  height: calc(1.3em * 10);
  line-height: 1.3;
  max-height: calc(1.3em * 100);
  background: #f2f2f2;
  resize: vertical;
}

/*************
問い合わせ
*************/
.contact {
  margin-bottom: 60px;
}
.contact__title{
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-read{
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.contact-read__text{
  margin-bottom: 20px;
}
.contact-read__list{
  margin-left: 20px;
}
.contact-read__item{
  margin-bottom: 20px;
}
.contact-read__title{
  font-size: 1.15rem;
}
.contact-read__sub-list{
  margin-left: 20px;
}
.contact-read__desc{
  font-weight: 300;
}
.contact-read__note{
  margin-left: 30px;
  font-size: 0.9rem;
}
.contact-read__note--red{
  color: #ff0000;
}


.confirm {
  margin-bottom: 120px;
}

.haveto {
  font-size: 0.6rem;
  padding: 5px;
  color: #fff;
  background: #ff9393;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px
}

.inquiry {
  margin: 20px auto 10px;
  width: 1100px;
  padding: 20px 20px 40px;
  background: #fff;
  border-radius: 12px;
}

.inquiry th {
  text-align: left !important;
  font-size: 0.95rem;
  padding: 20px 5px;
  width: 30%;
  vertical-align: middle;
}

.inquiry td {
  font-size: 0.9rem;
  padding: 10px 10px;
  vertical-align: middle;
}
.inquiry__tr{
  position: relative;
}

.inquiry__tr::after{
 content: "";
 display: block;
 width: 100%;
 height: 1px;
 background-color: #ccc;
 position: absolute;
 bottom: 0;
 left: 0;
}


.input-txt {
  display: inline-block;
  max-width: 100%;
  width: 280px;
  padding: 0.5em;
  border: 1px solid #999;
  box-sizing: border-box;
  background: #f2f2f2;
  margin: 0.5em 0;
}

#hogo {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  text-align: center !important
}

.c-button {
  min-width: 100px;
  font-family: inherit;
  appearance: none;
  border: 0;
  border-radius: 50px;
  background: #009500;
  color: #fff;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
}

#b-button {
  background: gray;
}

.c-button:hover {
  background: #006835;
}

.c-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px #cbd6ee;
}

.button-2 {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 20px;
}

.center-item {
  text-align: center;
}

p.indent{
  padding-left:1rem;
  text-indent:-1rem;
}

@media screen and (max-width: 768px) {

  /* 768pxまでの幅の場合に適用される */
  .contact,
  .confirm,
  .inquiry {
    width: 95%;
  }
  .inquiry__tr{
    display: flex;
    flex-direction: column;
  }
  .inquiry th{
    width: auto;
    padding: 20px 5px 5px;
  }
  .button-2{
    gap: 30px;
  }
}

@media screen and (max-width: 480px) {

  /* 480pxまでの幅の場合に適用される */
  .contact,
  .confirm,
  .inquiry {
    width: 320px;
  }
  .button-2 {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 320px) {

  /* 320pxまでの幅の場合に適用される */
  .contact,
  .confirm,
  .inquiry {
    width: 100%;
  }
}