@charset "UTF-8";
.contact-blk {
  --c-text: #222;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact-blk {
    grid-template-columns: 1fr;
  }
}
.contact-blk > div .contact-blk__ttl {
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002373;
}
.contact-blk > div:nth-of-type(1) li:not(:last-of-type) {
  margin-bottom: 1em;
}
.contact-blk > div:nth-of-type(1) li a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
}
@media (hover) {
  .contact-blk > div:nth-of-type(1) li a i {
    transition: all 300ms ease;
  }
  .contact-blk > div:nth-of-type(1) li a:hover i {
    background-color: #2b86f4;
  }
}
.contact-blk > div:nth-of-type(1) li a i {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  background-color: #ccc;
  border-radius: 4px;
  top: 2px;
}
.contact-blk > div:nth-of-type(1) li a svg {
  position: relative;
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
  fill: #fff;
}
.contact-blk > div:nth-of-type(2) {
  border-left: 1px solid #ccc;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .contact-blk > div:nth-of-type(2) {
    border-left: none;
    border-top: 1px solid #ccc;
    padding-top: 30px;
    padding-left: 0;
  }
}
.contact-blk .name > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-blk .form-required {
  margin-bottom: 20px;
}
.contact-blk .form-lead {
  margin-bottom: 20px;
}
.contact-blk .form-dl {
  margin-bottom: 30px;
}
.contact-blk .agree {
  margin-bottom: 30px;
}
.contact-blk .privacy {
  margin-bottom: 30px;
}

.contact-blk--2 {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
}
.contact-blk--2 .form-dl {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5);
}
.contact-blk--2 .form-dl dd:not(:last-of-type) {
  margin-bottom: 30px;
}
.contact-blk--2 button:nth-of-type(2) {
  margin-top: 10px;
}
.contact-blk--2 .contact-blk__ttl {
  margin-left: auto;
  margin-right: auto;
}

.contact-blk--3 {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  text-align: center;
}
.contact-blk--3 .contact-blk__ttl {
  margin-left: auto;
  margin-right: auto;
}

.form-required {
  color: #B50D34;
}

.form-lead p:not(:first-child) {
  margin-top: 1em;
}

.error-text {
  width: 100%;
  margin-bottom: 5px;
  font-size: 1.4rem;
  color: #B50D34;
}

.form-dl dt {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.form-dl dt.required::after {
  content: "*";
  display: inline-block;
  width: 1em;
  font-style: normal;
  text-align: center;
  color: #B50D34;
}
.form-dl dd:not(:last-of-type) {
  margin-bottom: 15px;
}

/*--------------------------------
    プライバシー
--------------------------------*/
.btn-confirm,
.btn-back {
  display: block;
  width: 240px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
  transition: all 300ms ease;
  color: #fff;
}

.btn-confirm {
  background-color: #2b86f4;
}
.btn-confirm:hover {
  background-color: #002373;
}

.btn-back {
  background-color: #999;
}
.btn-back:hover {
  background-color: #002373;
}

/*--------------------------------
    プライバシー
--------------------------------*/
.agree {
  text-align: center;
}
.agree p {
  margin-bottom: 10px;
}

/*--------------------------------
    プライバシー
--------------------------------*/
.privacy {
  height: 160px;
  padding: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 1.4rem;
}
.privacy dl {
  padding-bottom: 15px;
  border-bottom: 1px dotted #cccccc;
  margin-bottom: 15px;
}
.privacy dl dt {
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy dl dd {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy dl dd:before {
  content: "※";
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
.privacy p {
  margin-bottom: 3em;
}
.privacy p a {
  text-decoration: underline;
}

.privacy__inr {
  height: 100%;
  overflow: auto;
  padding-right: 10px;
  --sb-track-color: #ececec;
  --sb-thumb-color: #bcbcbc;
  --sb-size: 8px;
}
.privacy__inr::-webkit-scrollbar {
  width: var(--sb-size);
}
.privacy__inr::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 8px;
}
.privacy__inr::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 8px;
}

/*--------------------------------
    フォーム要素スタイル
--------------------------------*/
form {
  /* セレクト */
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=number],
form input[type=date],
form textarea {
  width: 100%;
  padding: 0.25em 0.5em;
  background-color: #fff;
  border: solid 1px #bcbcbc;
  border-radius: 4px;
  vertical-align: middle; /* ios17 fix */
  font-family: "Tazugane Gothic StdN Book", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=number],
  form input[type=date],
  form textarea {
    font-size: 1.6rem;
  }
}
form input[type=text].error,
form input[type=email].error,
form input[type=tel].error,
form input[type=number].error,
form input[type=date].error,
form textarea.error {
  border: solid 1px #B50D34;
}
form textarea {
  display: block;
  height: 8.5em;
  outline: none;
  resize: none; /* リサイズ禁止 */
}
form input[type=radio],
form input[type=checkbox] {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 1px #bcbcbc;
  vertical-align: middle; /* -5px */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  top: -1px;
  margin: 0;
  margin-right: 5px;
  cursor: pointer;
}
form input[type=radio].error,
form input[type=checkbox].error {
  border: solid 1px #B50D34;
}
form input[type=checkbox] {
  border-radius: 0;
}
form input[type=checkbox]:checked:before {
  position: absolute;
  width: 30%;
  height: 60%;
  top: 45%;
  left: 50%;
  translate: -50% -50%;
  rotate: 40deg;
  border-right: 2px solid var(--c-text);
  border-bottom: 2px solid var(--c-text);
  content: "";
}
form input[type=submit] {
  outline: 0;
}
form button {
  outline: 0;
  cursor: pointer;
}
form label {
  margin: 0 20px 0 0;
  cursor: pointer;
}
form label:last-of-type {
  margin-right: 0;
}
form .selectWrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
form .selectWrapper::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: calc(50% - 10px);
  right: 12px;
  border-bottom: solid 1px var(--c-1st);
  border-right: solid 1px var(--c-1st);
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}
form .selectWrapper select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  line-height: 1.875;
  padding: 8px 40px 8px 15px;
  background-color: #fff;
  border: 1px solid #D9E1F5;
  color: var(--c-1st);
}
form input::-moz-placeholder {
  color: #ccc;
}
form input::placeholder {
  color: #ccc;
}
form textarea::-moz-placeholder {
  color: #ccc;
}
form textarea::placeholder {
  color: #ccc;
}