@charset "UTF-8";
/* ========== ========== ==========
個別部
========== ========== ========== */
.formSection {
  margin-top: clamp(50px, calc(125 / var(--base-width-pc) * 100vw), 125px);
  margin-bottom: var(--margin-bottom1);
}
.formSection .sectionWrap:where(.confirmation *) {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 20px;
}
.formSection .sectionTitle {
  margin-bottom: 10px;
}
.formSection .sectionTitle:where(.confirmation *) {
  margin-bottom: 30px;
}
.formSection .form {
  margin-bottom: clamp(45px, calc(90 / var(--base-width-pc) * 100vw), 90px);
}
.formSection .form_items {
  margin-bottom: 40px;
}
.formSection .form_item:where(.confirmation *) {
  border-bottom: dotted 1px #555;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.formSection .form_item:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .formSection .form_item:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.formSection .form_item_mark {
  color: red;
  font-size: 16px;
  margin-left: calc(clamp(200px, calc(280 / var(--base-width-pc) * 100vw), 280px) + clamp(15px, calc(30 / var(--base-width-pc) * 100vw), 30px));
}
@media screen and (max-width: 768px) {
  .formSection .form_item_mark {
    margin-left: 0;
    font-size: 14px;
  }
}
.formSection .form_item_inner {
  display: flex;
  gap: 5px clamp(15px, calc(30 / var(--base-width-pc) * 100vw), 30px);
}
@media screen and (max-width: 768px) {
  .formSection .form_item_inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.formSection .form_item_inner:has(input[type=checkbox]) {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .formSection .form_item_inner:has(input[type=checkbox]) {
    align-items: flex-start;
  }
}
.formSection .form_item_label {
  width: clamp(200px, calc(280 / var(--base-width-pc) * 100vw), 280px);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
  font-size: clamp(10px, calc(16 / var(--base-width-pc) * 100vw), 16px);
  font-weight: 500;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .formSection .form_item_label {
    margin-top: 0;
    width: initial;
  }
}
.formSection .form_item_label_span {
  border: solid 1px #444;
  line-height: 1;
  font-size: clamp(10px, calc(12 / var(--base-width-pc) * 100vw), 12px);
  width: 48px;
  height: clamp(20px, calc(32 / var(--base-width-pc) * 100vw), 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0.1rem;
  padding-bottom: 1px;
}
@media screen and (max-width: 768px) {
  .formSection .form_item_label_span {
    padding-top: 2px;
  }
}
.formSection .form_item_label_span.-required {
  background-color: #444;
  color: white;
}
.formSection .form_item_fieldWrap {
  width: 100%;
  color: #051412;
}
.formSection .form_item_fieldWrap input:is([type=text], [type=tel], [type=email]),
.formSection .form_item_fieldWrap select,
.formSection .form_item_fieldWrap textarea {
  padding: 6px 15px;
  font-size: 14px;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
.formSection .form_item_fieldWrap input:is([type=text], [type=tel], [type=email]),
.formSection .form_item_fieldWrap select {
  line-height: 1;
}
.formSection .form_item_fieldWrap input:is([type=text], [type=tel], [type=email]),
.formSection .form_item_fieldWrap textarea {
  width: 100%;
}
.formSection .form_item_fieldWrap:has(select) {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.formSection .form_item_fieldWrap:has(select)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
.formSection .form_item_fieldWrap select {
  padding-right: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.formSection .form_item_fieldWrap textarea {
  height: 100px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .formSection .form_item_fieldWrap textarea {
    height: 150px;
  }
}
.formSection .form_item_fieldWrap:has(label) {
  display: flex;
  align-items: center;
  gap: 32px;
}
.formSection .form_item_fieldWrap label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(12px, calc(16 / var(--base-width-pc) * 100vw), 16px);
}
.formSection .form_item_fieldWrap input[type=radio] {
  margin-inline: 0;
  accent-color: black;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.formSection .form_item_fieldWrap:has(input[type=checkbox]) {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: #051412;
}
.formSection .form_item_fieldWrap input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ECECEC;
  border-radius: 4px;
  margin-right: 12px;
}
.formSection .form_item_fieldWrap input[type=checkbox]::after {
  content: "";
  display: block;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-right: 3px solid #444;
  border-bottom: 3px solid #444;
  opacity: 0;
}
.formSection .form_item_fieldWrap input[type=checkbox]:checked::after {
  opacity: 1;
}
.formSection .form_btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
}
.formSection .form_btn:hover {
  cursor: pointer;
}
.formSection .form_btnWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: white;
  width: 200px;
  height: 60px;
  border: solid 1px black;
  transition: all 0.3s;
}
.formSection .form_btnWrap:hover {
  cursor: pointer;
}
.formSection .form_btnWrap:has(.invalid) {
  background-color: #BBB;
  opacity: 0.8;
  color: #EEE;
  border: solid 1px #555;
}
.formSection .form_btnWrap_arrow {
  filter: invert(100%);
  position: relative;
  transform: translate(80%, 0);
  transition: all 0.3s;
}
.formSection .form_link {
  text-decoration: none;
  color: black;
}
.formSection_note {
  border: solid 1px #AAA;
  padding: clamp(20px, calc(40 / var(--base-width-pc) * 100vw), 40px);
  margin-bottom: 28px;
}
.formSection_note_title {
  font-size: clamp(18px, calc(20 / var(--base-width-pc) * 100vw), 20px);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1rem;
  margin-bottom: 16px;
}
.formSection_note_text1 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.8px;
  line-height: 2.2857142857;
}
.formSection_note_link {
  color: black;
}
.formSection_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.formSection_bottom_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.8px;
}
.formSection_bottom_icon {
  width: 80px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

/* エラーのポップアップ */
.popup {
  position: fixed;
  z-index: 21;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.popup_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 60px 100px;
  border-radius: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .popup_inner {
    border-radius: 5px;
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 35px 45px;
  }
}
.popup_text {
  /* font-: "Noto Sans JP", sans-serif; */
  font-weight: 400;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  color: #000000;
  margin: 0 0 40px;
}

@media only screen and (max-width: 767px) {
  .popup_txt {
    margin: 0 0 20px;
    font-size: 14px;
  }
}
.btn-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  padding: 0 25px;
  border-radius: 30px;
  height: 60px;
  border: solid 1px #2f3093;
  font-weight: 700;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  color: #2f3093;
  background-color: #ffffff;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .btn-popup {
    transition: color 250ms ease, background-color 250ms ease;
  }
  .btn-popup:hover {
    color: #ffffff;
    background-color: #2f3093;
  }
}
@media only screen and (max-width: 767px) {
  .btn-popup {
    line-height: 1.5;
    font-size: 16px;
  }
}
#form input.invalid:hover {
  opacity: 0.3;
  cursor: not-allowed;
}

.confirmation .form_btnWraps {
  display: flex;
  gap: 30px;
}
.confirmation .form_btnWrap:has(.btn-return) {
  background-color: #777;
}

/* サンクスページ */
.thanks {
  margin-top: clamp(50px, calc(125 / var(--base-width-pc) * 100vw), 125px);
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks_text1 {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* 送信失敗ページ */
.failed {
  margin-bottom: 100px;
}

.failed .thanks_text1 {
  margin-bottom: 50px;
}

/* 個別部ここまで
---------- ---------- */