@charset "UTF-8";
/* --------------------------------------------------
 required
-------------------------------------------------- */
.required, .n-required {
  background-color: #f02323;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  margin: 0 5px;
  padding: 0;
  text-align: center;
  line-height: 23px;
  width: 40px;
  border-radius: 3px;
}

.n-required {
  background-color: #999;
}

.errorTxt {
  color: #f02323;
}

.errorTxt {
  color: #f02323;
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
  font-weight: bold;
}

.errorTxt:not(:empty)::before {
  font-family: "Font Awesome 5 Free";
  content: '\f06a';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 18px;
}

/* --------------------------------------------------
 input
-------------------------------------------------- */
.focusAnimation:focus {
  border: 1px solid #8a6921;
  box-shadow: 0 0 5px #8a6921, 0 0 10px #8a6921;
  outline: medium none;
}

.focusAnimation {
  border: 1px solid #fff;
  padding: 10px 10px;
  outline: 0;
  color: #000;
  transition: all ease-in 0.3s;
}

.full-width {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.middle-width {
  width: 100%;
  max-width: 300px;
  display: block;
  box-sizing: border-box;
}

.narrow-width {
  width: 205px;
  box-sizing: border-box;
}

/* --------------------------------------------------
 #entry-form
-------------------------------------------------- */
#entry-blc .info {
  text-align: center;
  display: block;
  padding: 0 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

#entry-blc .list {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

#entry-blc .list li {
  width: calc((99% - (2rem * 2)) / 3);
  margin-right: 2rem;
  padding-right: 2rem;
  margin-top: 4rem;
  display: block;
  box-sizing: border-box;
  border-right: 1px solid #313131;
  text-align: center;
}

#entry-blc .list li:nth-child(3n+3), #entry-blc .list li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

#entry-blc .list li:nth-child(-n+3) {
  margin-top: 0;
}

#entry-blc .list li .ttl {
  font-size: 120%;
  display: block;
}

#entry-blc .list li h3 {
  margin-top: 10px;
}

#entry-blc .list li h3>a {
  font-size: 250%;
  font-weight: 900;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  color: #c1940a;
}

#entry-blc .list li .txt {
  font-size: 90%;
  display: block;
  margin-top: 10px;
}

@media screen and (max-width:1200px) {
  #entry-blc .list li h3>a {
    font-size: 200%;
  }
}

@media screen and (max-width:1000px) {
  #entry-blc .list {
    padding: 0;
  }

  #entry-blc .list li {
    padding-right: 1rem;
    margin-right: 1rem;
    width: calc((99% - (1rem * 2)) / 3);
  }

  #entry-blc .list li h3>a {
    font-size: 3.4vw;
  }
}

@media screen and (max-width:640px) {
  #entry-blc .info {
    padding: 0;
  }

  #entry-blc .list li {
    width: 100%;
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #313131;
  }

  #entry-blc .list li h3>a {
    font-size: 200%;
  }

  #entry-blc .list li:nth-child(3n+3), #entry-blc .list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }

  #entry-blc .list {
    max-width: 375px;
  }

  #entry-blc .list li .txt {
    font-size: 100%;
  }
}

/* --------------------------------------------------
 #inquiry-form
-------------------------------------------------- */
#inquiry-form {
  padding-top: 6rem;
  box-sizing: border-box;
}

@media screen and (max-width:480px) {
  #inquiry-form {
    padding-top: 20vw;
  }
}

/* --------------------------------------------------
 form-blc
-------------------------------------------------- */
.form-blc .att {
  margin-bottom: 20px;
}

.form-blc .txt-comment {
  margin-top: 10px;
}

.form-blc .privacy-txt {
  margin-top: 2rem;
  box-sizing: border-box;
}

/* --------------------------------------------------
 tbl-form
-------------------------------------------------- */
.tbl-form td input::placeholder {
  color: #ccc;
}

.tbl-form th, .tbl-form td {
  padding: 20px;
  border-bottom: 1px solid #d1e4f1;
  box-sizing: border-box;
}

.tbl-form th {
  font-weight: bold;
}

.tbl-form th {
  width: 35%;
}

.tbl-form td {
  width: 65%;
}

.tbl-form td textarea {
  transition: none;
}

.tbl-form td .place-blc label {
  display: block;
}

@media screen and (max-width:640px) {
  .tbl-form th, .tbl-form td {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .tbl-form th {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .tbl-form td {
    padding-top: 10px;
  }
}

/* --------------------------------------------------
 btn-form-blc
-------------------------------------------------- */
@media screen and (min-width:1201px) {
  .btn-form-blc input:hover {
    background-color: #664e18;
  }

  .btn-form-blc .btn.btn-back:hover {
    background-color: #343434;
  }
}

.btn-form-blc {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-form-blc .btn {
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  background-color: #8a6921;
  box-sizing: border-box;
  position: relative;
  transition: all ease-in 0.3s;
  max-width: 300px;
  width: 100%;
  color: #fff;
  cursor: pointer;
  border: 0;
}

.btn-form-blc .btn.btn-back {
  background-color: #626262;
}

.btn-form-blc .btn+.btn {
  margin-left: 10px;
}

@media screen and (max-width:640px) {
  .btn-form-blc .btn {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tbl-form tr:first-child th {
    padding-top: 20px;
  }
}

@media screen and (max-width:480px) {
  .btn-form-blc .btn {
    font-size: 4vw;
  }
}

/* --------------------------------------------------
listStyle01
-------------------------------------------------- */

.listStyle01 {
  counter-reset: section;
}

.listStyle01 li:first-child {
  margin-top: 5%;
}

.listStyle01 li:last-child {
  margin-bottom: 0;
}

.listStyle01 li {
  padding-left: 20px;
  margin-bottom: 2rem;
  position: relative;
}

.listStyle01 li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 15px;
  height: 100%;
  counter-increment: section;
  content: " "counter(section) ". ";
}

@media screen and (max-width:640px) {
  .listStyle01 li {
    margin-bottom: 1rem;
  }
}