@charset "UTF-8";

#rule > .inner > .list {
  padding: 0 2%;
  margin-bottom: 40px;
  box-sizing: border-box;
}

#rule > .inner > .list > dd {
  margin-bottom: 20px;
}

.required {
  color: #ff0000;
}

.n-required {
    background-color: #aaa;
}

#intro,
#form,
#rule {
  position: relative;
}

#intro > .inner,
#form > .inner,
#rule > .inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 1000px) {
  #intro > .inner,
  #form > .inner,
  #rule > .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  #intro > .inner,
  #form > .inner,
  #rule > .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.contact-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 800px;
  width: 100%;
  margin: 60px auto 0;
}

.contact-list li {
  position: relative;
  line-height: 1.2;
  background-color: #fff;
  padding-left: 30px 50px 20px 60px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.contact-list li.tel-blc {
  width: calc(50% - 10px);
  padding: 30px 30px 20px 90px;
}

.contact-list li.inquiry-blc {
  width: 100%;
  padding: 30px 30px 30px 90px;
  margin-bottom: 0;
}

.contact-list li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  content: '';
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto 0;
  z-index: 1;
}

.contact-list li.tel-blc::after {
  width: 26px;
  height: 37px;
  background-image: url(../img/common/contact1_icn.png);
  top: -4px;
}

.contact-list li.inquiry-blc::after {
  width: 43px;
  height: 30px;
  top: -3px;
  background-image: url(../img/common/contact2_icn.png);
}

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


@media screen and (max-width:1000px) {
  .contact-list li.inquiry-blc::after {
    width: 4vw;
    height: 3vw;
    top: -0.5vw;
  }
  .contact-list li.tel-blc > .txt .tel {
    font-size: 200%;
  }
}

@media screen and (max-width:640px) {
  .contact-list li.tel-blc::after {
    width: 30px;
    height: 40px;
    background-size: contain;
  }
  .contact-list li.inquiry-blc::after {
    width: 40px;
    height: 30px;
    top: -5px;
  }
}

@media screen and (max-width:480px) {
  .contact-list li.tel-blc::after {
    height: 30px;
    top: -1px;
  }
  .contact-list li.inquiry-blc::after {
    width: 31px;
    height: 25px;
  }
}

.contact-list li .ttl {
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.contact-list li.tel-blc .tel {
  display: inline-block;
  text-decoration: none;
  line-height: 1.8;
  font-size: 120%;
  color: #5cc2d0;
  font-weight: bold;
  color: inherit;
}

.contact-list li.fax-blc .fax {
  font-weight: bold;
  font-size: 120%;
}

@media screen and (max-width:767px) {
  .contact-list li.tel-blc {
    width: 100%;
  }

  .contact-list li.fax-blc {
    width: 100%;
  }

  .contact-list li {
    padding-right: 0;
  }
}

@media screen and (max-width:480px) {
  .contact-list li::after {
    font-size: 25px;
  }

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

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

  .contact-list li .txt {
    font-size: 3.5vw;
  }

  .contact-list li.tel-blc .tel {
    font-size: 110%;
  }

  .contact-list li.fax-blc .fax {
    font-size: 110%;
  }
}

/* focusAnimation ---------------------- */

.errorTxt {
  color: rgb(255, 0, 0);
}

.txt-red {
  color: #e60000;
  margin-bottom: 1rem;
}

.focusAnimation {
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid rgba(73, 60, 60, 0.2);
  box-shadow: 0px 0px 1px 1px rgb(255, 255, 255);
}

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

/* tbl-form ---------------------------*/

.tbl-form {
  margin-bottom: 2rem;
}

.tbl-form th, 
.tbl-form td {
  padding: 10px 30px;
  box-sizing: border-box;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e7e7e7;
}

.tbl-form th {
  width: 25%;
  font-weight: 600;
  color: #000;
}

.tbl-form td {
  width: 75%;
}

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

.tbl-form td label {
  margin-right: 20px;
}

.tbl-form td input[type="phone"] {
  width: 60px;
  margin-right: 10px;
}

.tbl-form td select {
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid rgba(73, 60, 60, 0.2);
  box-shadow: 0px 0px 1px 1px rgb(255 255 255);
  padding: 7px 8px;
}

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

@media screen and (max-width:1000px) {
  .tbl-form th, .tbl-form td {
    width: 100%;
    display: block;
  }
  .tbl-form th {
    margin-bottom: 0;
    border-bottom: 0;
    padding: 15px 20px 5px;
  }
  .tbl-form td {
    padding: 5px 20px 15px;
    margin-bottom: 0;
  }
  .tbl-form {
    width: 100%;
    display: block;
  }
  .tbl-form tbody {
    width: 100%;
    display: block;
  }
  .tbl-form tr {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width:767px) {
  .tbl-form {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width:480px) {
  .focusAnimation {
    width: 100%;
  }
  input[name="postcode"] {
    width: calc(100% - 24px);
  }
  .tbl-form td input[name="date1"] {
    width: 22vw !important;
  }
  .tbl-form td input[type="phone"] {
    width: 13vw;
    margin-right: 5px;
  }
}

/* #form ---------------------------*/
#form {
  background-color: #fff;
}

#form .required-blc {
  color: #ff0000;
  margin-bottom: 20px;
}

#form form {
  text-align: center;
}

#form .rule-txt {
  display: block;
  max-width: 1000px;
  width: 100%;
  text-align: left;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

#form .rule-txt > p {
  margin-bottom: 20px;
}

.btn-blc {
  text-align: center;
  display: inline-block;
  margin: 0 auto;
}

.btn-blc input.btn {
  border: none;
  cursor: pointer;
}

.detail-blc>.txt-blc {
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (max-width:767px) {
  .btn-blc .btn.btn-narrow {
      max-width: 190px;
  }
  .rule-txt {
      margin-bottom: 20px;
  }
}

@media screen and (max-width:480px) {
  .btn-blc input.btn {
      width: 100% !important;
      max-width: 100% !important;
  }

  .btn-blc {
      max-width: 320px;
      margin: auto;
  }
}

.privacy-list {
  position: relative;
  margin-bottom: 60px;
}

.privacy-list > li {
  position: relative;
  margin-bottom: 30px;
}

.privacy-list > li > .ttl {
  position: relative;
  font-size: 120%;
  margin-bottom: 10px;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

textarea[name=message] {
  max-width: 500px;
  width: 80%;
}

@media screen and (max-width:767px) {
  textarea[name=message] {
    width: 100%;
  }
}