@charset "UTF-8";

.tbl-form td input[name="year"] {
  width: 120px;
}

.tbl-form td select[name="month"] {
  width: 50px;
}

.tbl-form td select[name="date"] {
  width: 50px;
}

.tbl-form td label {
  margin-left: 20px;
  display: inline-block;
}

.tbl-form td label input[type="radio"] {
  margin-right: 5px;
}

.tbl-form td label:first-child {
  margin-left: 0;
}

@media screen and (max-width:480px) {

  .tbl-form td label {
    width: 100%;
    margin-left: 0;
  }

  .tbl-form td input[name="year"] {
    width: 100px;
  }
}

/* contact-section -------------------------------- */

.contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.contact-list li {
  width: calc((100% - 2rem) / 3);
  margin-right: 1rem;
}

.contact-list li:nth-child(3n+3) {
  margin-right: 0;
}

.contact-list li {
  position: relative;
  padding-left: 40px;
  /* margin-bottom: 20px; */
  box-sizing: border-box;
}

.contact-list li::after {
  position: absolute;
  top: 3px;
  left: 0;
  content: '';
  line-height: 1;
  display: flex;
  align-items: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 40px;
  color: var(--main-color);
  /* margin: auto 0; */
  z-index: 1;
}

.contact-list li.tel-blc {
  /* padding-right: 50px; */
}

.contact-list li.tel-blc::after {
  content: '\f3cd';
      left: 6px;
}
.contact-list li:nth-child(2).tel-blc::after {
  content: '\f1ac';
  left: -5px;
}
.contact-list li.tel-blc>.tel {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 180%;
  color: var(--main-color);
  font-weight: bold;
}

.contact-list li.tel-blc>.txt {
  line-height: 1;
  font-size: 90%;
}

.contact-list li.inquiry-blc {
  position: relative;
  padding-left: 55px;
}

.contact-list li.inquiry-blc::after {
  content: '\f658';
}

.contact-list li.inquiry-blc>.txt01 {
  font-size: 120%;
  color: var(--main-color);
  font-weight: bold;
}

.contact-list li.inquiry-blc>.txt02 {
  font-size: 90%;
  line-height: 1.2;
}

@media screen and (max-width: 1000px) {


  .contact-list li {
    width: calc((100% - 1rem) / 2);
    margin-top: 2rem;
  }

  .contact-list li:nth-child(2n+2) {
    margin-right: 0;
  }

  .contact-list li:nth-child(-n+2) {
    margin-top: 0;
  }

  .contact-list li.inquiry-blc {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .contact-list li {
    padding-left: 40px;
  }

  .contact-list li::after {
    font-size: 30px;
  }

  .contact-list li.tel-blc {
    padding-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .contact-list {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-list li.tel-blc,
  .contact-list li.inquiry-blc {
    width: 100%;
  }

  .contact-list li {
    margin-top: 1rem;
  }

  .contact-list li:nth-child(-n+2) {
    margin-top: 1rem;
  }

  .contact-list li:first-child {
    margin-top: 0;
  }

  .contact-list li.inquiry-blc {
    padding-left: 40px;
  }
}


/* contact-section -------------------------------- */

#contact-section .contact-btn-blc .btn:nth-child(2) span {
  font-size: 180%;
}

#contact-section .contact-btn-blc .btn:nth-child(2) span::before {
  height: 40px;
}

@media screen and (max-width:1000px) {
  #contact-section .contact-btn-blc {
    font-size: 1.5vw;
  }

  #contact-section .contact-btn-blc .btn:nth-child(2) span::before {
    height: 4vw;
  }

  #contact-section .contact-btn-blc .btn:nth-child(1) span::before {
    height: 4vw;
  }

  #contact-section .contact-btn-blc .btn:nth-child(1) span {
    font-size: 200%;
  }
}

@media screen and (max-width:640px) {
  #contact-section .contact-btn-blc {
    max-width: 400px;
    font-size: 100%;
  }

  #contact-section .contact-btn-blc .btn:nth-child(1) span::before {
    height: 34px;
  }

  #contact-section .contact-btn-blc .btn:nth-child(2) span::before {
    height: 33px;
  }
}

@media screen and (max-width:480px) {
  #contact-section .contact-btn-blc .btn {
    padding: 25px 10px;
  }

  #contact-section .contact-btn-blc {
    font-size: 80%;
  }

  #contact-section .contact-btn-blc .btn.fax:nth-child(2) span::before {
    top: -3px;
  }

  #contact-section .contact-btn-blc .btn:nth-child(1) span::before {
    top: -2px;
  }
}

/* --------------------------------------------------
 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: 5px;
  font-weight: bold;
  font-size: 14px;
}

.errorTxt:empty {
  margin-top: 0
}

.errorTxt:not(:empty)::before {
  font-family: "Font Awesome 5 Free";
  content: '\f06a';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 18px;
}

/* --------------------------------------------------
 input
-------------------------------------------------- */
.focusAnimation:focus {
  border: 1px solid var(--main-color);
  box-shadow: 0 0 5px var(--main-color), 0 0 10px var(--main-color);
  outline: medium none;
}

.focusAnimation {
  border: 1px solid var(--main-color);
  padding: 10px 10px;
  outline: 0;
  color: #333;
  transition: all ease-in 0.3s;
  border-radius: 5px;
}

.full-width {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.narrow-width {
  width: 200px;
  display: inline-block;
  box-sizing: border-box;
}

@media screen and (max-width:480px) {
  .narrow-width {
    width: calc(100% - 14.41px);
  }
}

/* --------------------------------------------------
 #contact-form
-------------------------------------------------- */
#contact-form {
  margin-top: 0;
  padding-top: 6rem;
}

@media screen and (max-width:480px) {
  #contact-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 th,
.tbl-form td {
  padding: 20px;
  border-bottom: 1px solid var(--main-color);
  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;
}

@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: #f5dffd;
    color: var(--main-color);
  }

  .btn-form-blc .btn.btn-back:hover {
    background-color: #333;
    color: #fff;
  }
}

.btn-form-blc {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-form-blc .btn {
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  box-sizing: border-box;
  position: relative;
  transition: all ease-in 0.3s;
  max-width: 300px;
  width: 100%;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  font-size: 130%;
  font-weight: 500;
  line-height: 1.2;
}

.btn-form-blc .btn.btn-back {
  background-color: #ddd;
  color: #333;
  border: 2px solid #333;
}

.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;
  }
}

.mt-1rem {
  margin-top: 10px;
}