/**
 * 調整用スタイル
 */
@charset "UTF-8";

.wp-block-heading.form-Item-Title {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.smf-form .smf-select-control {
  display: block;
}

.smf-select-control .smf-select-control__control {
  border: 1px solid #162BC9;
  padding: 13px 11px;
  width: 100%;
  max-width: 300px;
}

.smf-form .smf-textarea-control__control {
  border: 1px solid #162BC9;
}

.smf-action {
  display: flex;
  gap: 10px 20px;
  justify-content: center;
}

.smf-action .smf-button-control {
  display: flex;
  justify-content: center;
}

.smf-action .smf-button-control + .smf-button-control {
  margin: 0;
}

.smf-action .smf-button-control button {
  width: calc(450px - 10px);
  height: 70px;
  background: #162BC9;
  border: none;
  margin: 0 5px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.0rem;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background .4s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media (max-width: 640px) {
  .smf-action .smf-button-control button {
    height: 60px;
    font-size: 1.8rem;
  }
}

.smf-action .smf-button-control button:after {
  content: '';
  width: 18px;
  height: 7px;
  background: url("../img/common/arrow01.png") no-repeat left top;
  background-size: cover;
  margin-top: -3.5px;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: transform .4s;
}
.smf-action .smf-button-control button:hover {
  background: #18205A;
}
.smf-action .smf-button-control button:hover:after {
  transform: translateX(1rem);
}

.contact-Item-Btn a {
  height: 70px;
  background: #162BC9;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  font-size: 2.0rem;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background .4s;
}

@media (max-width: 640px) {
  .contact-Item-Btn a {
    height: 50px;
    font-size: 1.5rem;
  }
}

.contact-Item-Btn a:hover {
  background: #18205A;
}
.contact-Item-Btn a:after {
  content: '';
  width: 18px;
  height: 7px;
  background: url("../img/common/arrow01.png") no-repeat left top;
  background-size: cover;
  margin-top: -3.5px;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: transform .4s;
}
@media (max-width: 640px) {
  .contact-Item-Btn a:after {
    right: 10px;
  }
}

.contact-Item-Btn a:hover:after {
  transform: translateX(1rem);
}