@charset "UTF-8";
:root {
  --leading-trim: calc((1em - 1lh) / 2);
  --color-white: #fff;
  --color-accent: #44e7ff;
  --color-accent02: #f0e931;
  --color-accent03: #145b67;
  --color-accent04: #1cb8d1;
  --color-accent05: #02cbd0;
  --color-accent06: #e8fefe;
  --color-accent07: #0e3546;
  --color-accent08: #142d67;
  --color-accent09: #d7fcfc;
  --color-red: #d00001;
  --color-red02: #d11c22;
  --color-navy: #001e6a;
  --color-gold: #a3915a;
  --color-gold02: #d1a71c;
  --color-gray: #969696;
  --color-gray02: #acacac;
  --color-gray03: #707070;
  --color-gray04: #9a9a9a;
  --color-gray05: #b2b2b2;
  --color-black: #1c0e05;
  --color-black02: #0a0e0f;
  --color-txt: #222;
}

/* =======================================================
contact form 7 リセット
======================================================= */
.wpcf7-form-control-wrap {
  display: flex;
}

.wpcf7-list-item {
  margin: 0;
}

/* =======================================================
form
======================================================= */
.bl-form-fields {
  display: grid;
  gap: 24px;
}
.bl-form-fields-wrapper {
  padding: 56px 102px;
  margin-bottom: 56px;
  background: var(--color-accent07);
}
.bl-form-field {
  display: grid;
  grid-template-columns: 212px 1fr;
  gap: 88px;
  align-items: center;
}
.bl-form-field.--acceptance {
  grid-template-columns: auto;
  gap: 4px;
}
.bl-form-lbl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
}
.bl-form-lbl.--required::after, .bl-form-lbl.--optional::after {
  display: flex;
  justify-content: center;
  padding: 0 8px 3px;
  font-size: 15px;
  font-weight: bold;
  line-height: calc(21/15);
  color: #fff;
  letter-spacing: 0.08em;
}
.bl-form-lbl.--required::after {
  content: "必須";
  background: var(--color-red02);
}
.bl-form-lbl.--optional::after {
  content: "任意";
  background: var(--color-gray04);
}
.bl-form-info.--age {
  position: relative;
}
.bl-form-info.--age .bl-form-info-unit {
  position: absolute;
  top: 7.5px;
  left: 134px;
  color: var(--color-white);
}
.bl-form-info.--age input[type=text] {
  width: 116px;
}
.bl-form-info.--acceptance {
  display: flex;
  justify-content: center;
  color: var(--color-white);
}
.bl-form-info.--acceptance .bl-acceptance-link {
  color: var(--color-red02);
  text-decoration: underline;
}
.bl-form-info.--acceptance label {
  position: relative;
  padding-left: 33px;
  cursor: pointer;
}
.bl-form-info.--acceptance input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #707070;
  transform: translateY(-50%);
}
.bl-form-info.--acceptance input[type=checkbox]:checked + span::after {
  position: absolute;
  top: calc(50% - 2px);
  left: 7px;
  width: 7px;
  height: 14px;
  content: "";
  border-right: 2px solid #3c2a10;
  border-bottom: 2px solid #3c2a10;
  transform: translateY(-50%) rotate(50deg);
}
.bl-form-att {
  justify-content: center;
  color: var(--color-white);
}
.bl-form input[type=text], .bl-form input[type=email], .bl-form input[type=tel] {
  width: 100%;
  padding: 5px 16px 10px;
  background: #fff;
  border: 1px solid #929dac;
  border-radius: 5px;
}
.bl-form input[type=submit] {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 3px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 4px;
}
.bl-form select {
  width: 100%;
  padding: 5px 16px 10px;
  background: #fff url("../images/common/icon-select-triangle.svg") center right 16px/12px 10px no-repeat;
  border: 1px solid #929dac;
  border-radius: 5px;
}
.bl-form select.--invalid {
  color: #b2b2b2;
}
.bl-form textarea {
  width: 100%;
  height: 160px;
  padding: 8px 16px;
  resize: none;
  background: #fff;
  border: 1px solid #929dac;
  border-radius: 5px;
}
.bl-form-btn-wrapper {
  display: flex;
  margin: 40px auto 0;
  text-align: center;
}
.bl-form-btn-wrapper .el-btn {
  grid-template-columns: 1fr auto;
  justify-content: center;
  width: 320px;
  height: 56px;
  padding: 0 0 4px;
  transition: all 0.5s ease;
}
@media (hover: hover) {
  .bl-form-btn-wrapper .el-btn:hover input[type=submit] {
    color: var(--color-accent05);
  }
  .bl-form-btn-wrapper .el-btn:hover::after {
    border-color: transparent transparent transparent var(--color-accent05);
  }
}
.bl-form-btn-wrapper .el-btn::after {
  position: absolute;
  top: 50%;
  right: 91px;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent transparent var(--color-white);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  transform: translateY(-50%);
}
.bl-form-btn-wrapper .wpcf7-spinner {
  display: none;
}
.bl-form-btn-wrapper .wpcf7-form-control-wrap {
  display: flex;
}
.bl-form-btn-wrapper .wpcf7-form-control:disabled {
  background: #95a5b5;
  opacity: 0.7;
}

::placeholder {
  color: var(--color-gray05);
}

@media screen and (width <= 750px) {
  .bl-form-field {
    grid-template-columns: auto;
    gap: 16px;
  }
  .bl-form-fields {
    gap: 36px;
  }
  .bl-form-fields-wrapper {
    padding: 40px 40px 56px;
  }
  .bl-form-lbl.--required::after, .bl-form-lbl.--optional::after {
    padding: 3px 12px 6px;
    font-size: 24px;
  }
  .bl-form-info.--age .bl-form-info-unit {
    top: 11px;
    left: 201px;
  }
  .bl-form-info.--age input[type=text] {
    width: 174px;
  }
  .bl-form input[type=text], .bl-form input[type=email], .bl-form input[type=tel] {
    padding: 8px 24px 12px;
  }
  .bl-form input[type=submit] {
    padding-bottom: 4.5px;
    font-size: 30px;
  }
  .bl-form select {
    padding: 8px 24px 12px;
    background: #fff url("../images/common/icon-select-triangle.svg") center right 24px/18px 15px no-repeat;
  }
  .bl-form textarea {
    height: 400px;
    padding: 12px 24px;
  }
  .bl-form-btn-wrapper {
    margin: 48px auto 0;
  }
  .bl-form-btn-wrapper .el-btn {
    width: 480px;
    height: 80px;
  }
  .bl-form-btn-wrapper .el-btn::after {
    right: 144px;
    border-width: 7.5px 0 7.5px 12px;
  }
}
/* =======================================================
エラー
======================================================= */
.wpcf7-form.invalid .wpcf7-form-control-wrap {
  display: grid;
  gap: 4px;
}
.wpcf7-form.invalid .wpcf7-not-valid-tip {
  position: relative;
  width: max-content;
  font-size: 14px;
  color: var(--color-red02);
}
.wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}
.wpcf7-form.--hide-error .wpcf7-not-valid-tip {
  display: none;
}

@media screen and (width <= 750px) {
  .wpcf7-form.invalid .wpcf7-form-control-wrap {
    gap: 6px;
  }
  .wpcf7-form.invalid .wpcf7-not-valid-tip {
    font-size: 24px;
  }
}