.form-container {
    min-width: 320px;
    width: 80%;
    margin-inline: auto;
}

.form .formRow {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.form .formRow:not(:has(.formTd)) .col {
    margin-bottom: 30px;
    margin-left: -15px;
}

.form .requiredText {
    color: #fff;
    background: #c1272d;
    font-size: 0.8em;
    padding: 2px 10px;
    margin-left: 10px;
}

.form .formTh .label {
    font-weight: bold;
}

.form .formTd textarea,
.form .formTd input:not([type=radio]):not([type=checkbox]) {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background-color: #fff;
    padding: 0.5em 1em;
    width: 100%;
}

.form .formTd textarea {
    field-sizing: content;
    min-height: 10em;
}

.form input[type=checkbox]+.label {
    margin-left: 5px;
}

.radioArea {
  display : flex;
  flex-wrap :wrap;
  gap : 0.5rem;
}
.radioArea label {
  margin : 0;
}

.h3_tit {
    margin-bottom: -20px;
}

.h2_tit.contactend {
    margin-bottom: 20px;
}

.privacyLabel {
  font-size : 14px;
}

body:has(.form) #floatingBtn {
  display : none !important;
}


/* 追加 */
.title-svg {
  max-width : 25vw;
}

.btn {
  border-radius : 2rem;
  font-weight : bold;
  padding-inline : 2rem;
  border :none;
}
.btn.btn-primary {
  background-color : var(--main-bg-color);
  color : var(--main-text-color);
}
.btn.btn-primary:hover {
  color : var(--main-text-color);
}

.btn.btn-light {
  background-color : var(--main-text-color);
  color : var(--sub-text-color);
}
.btn.btn-light:hover {
  color : var(--sub-text-color);
}

.policy-box {
  height : 12rem;
  overflow-y : auto;
  border : 1px solid #ccc;
  border-radius : 0.25rem;
  padding : 1rem;
  background-color : #fff;
  p {
  	font-size : 0.8rem;
  }
  a {
    color : var(--sub-text-color) !important;
    text-decoration : underline;
  }
}