@charset "UTF-8";

.lower-page .article {
  padding: 0 !important;
}

.entry-title {
  display: none;
  text-align: center;
  margin: 0 auto;
}

.content {
  background: #fff;
  font-size: 1.4rem;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  font-size: 1.4rem;
}

.date-tags {
  display: none;
}

.contact-text {
  width: 90%;
  height: auto;
  max-width: 1024px;
  margin: 20px auto;
  padding: 20px;
  background: #fafafa;
  box-sizing: border-box;
}

.contact-form {
  width: 100%;
  height: auto;
  max-width: 1024px;
  margin: 0 auto;
}

.contact-form dl {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.6rem;
}

.contact-form dt {
  width: 20%;
  height: auto;
  padding: 20px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  position: relative;
  font-weight: bold;
}

.contact-form dt i {
  margin-right: 3px;
}

.contact-form dd {
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}

.contact-form dd:not(.mandatory) {
  width: 70%;
  height: auto;
  padding: 20px 10px;
  box-sizing: border-box;
  margin-left: 0;
  border-bottom: 1px solid #eee;
}

.contact-form .mandatory {
  width: 10%;
  height: auto;
  padding: 20px 10px;
  box-sizing: border-box;
  margin-left: 0;
  border-bottom: 1px solid #eee;
}

.must {
  background: #DC3545;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 2.5px 10px;
  box-sizing: border-box;
  border-radius: 4px;
}

.arbitrary {
  background: #ccc;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 2.5px 10px;
  box-sizing: border-box;
  border-radius: 4px;
}

input[type=submit] {
  display: block;
  height: 80px;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  width: 100%;
  max-width: 380px;
  border: none;
  border-radius:6px;
  margin: 0 auto !important;
  color: #fff !important;
  border: none !important;
  background-color: #F4C8D1 !important;
}

.privacy-link {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 10px auto;
}

.privacy-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  background: #fff;
  color: #ECA0B0;
  border: 1px solid #ECA0B0;
}

.privacy-acceptance {
  padding-bottom: 20px;
  text-align: center;
}

.privacy-acceptance a {
  color: #ECA0B0;
  text-decoration: underline;
}

.wpcf7 form .wpcf7-response-output {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

#breadcrumb {
  display: none;
}

/*---privacy---*/
#privacy {
  padding: 30px 40px;
  box-sizing: border-box;
  height: 320px;
  overflow-y: scroll;
  background:#FEFDFD;
}

.privacy p {
  font-size: 1.3rem !important;
}

.privacy h2 {
  font-size: 1.4rem;
  padding: 0 !important;
  background: none !important;
  text-align: center;
}

.privacy-lead {
  font-size: 1.3rem !important;
  padding-bottom: 10px;
  margin-bottom: 0 !important;
}

.privacy__item {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.privacy dl {
  width: 100%;
  height: auto;
}

.privacy dt {
  font-weight: bold;
  font-size: 1.3rem;
  padding: 0 10px 5px 10px;
  box-sizing: border-box;
  color: #1B394C;
  position: relative;
  border-bottom: 1px solid #FCF1F3;
}

.privacy dt::before {
  display: block;
  content: '';
  width: 20%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #ECA0B0;
  opacity: .5;
}

.privacy dd {
  width: 100%;
  padding: 10px 10px 14px 20px;
  margin-left: 0 !important;
  box-sizing: border-box;
  font-size: 1.2rem;
}

@media screen and (max-width:896px) {
  .contact-form dl {
    justify-content: center;
  }

  .contact-form dt {
    width: 170px;
  }

  .contact-form dd:not(.mandatory) {
    width: 100%;
    border-bottom: 0;
  }

  .contact-form .mandatory {
    width: calc(100% - 170px);
  }
}

@media screen and (max-width:480px) {
  .contact-text {
    width: 100%;
    text-align: justify;
    font-size: 1.3rem;
  }

  .contact-form dl {
    justify-content: flex-start;
  }

  .contact-form dt {
    width: auto;
    padding: 10px 10px 5px 10px;
  }

  .contact-form .mandatory {
    width: auto;
    padding: 10px 10px 5px 10px;
  }

  .contact-form dd:not(.mandatory) {
    padding: 5px 10px 30px 10px;
  }

  #privacy {
    padding: 20px 14px;
  }
}