:root {
  /* Colors */
  --main-color: #0F248C;
  --secondary-color: #2ecc71;
  --accent-color: #e74c3c;
  --white-color: #fff;
  --text-black: #00051C;
  --light-blue: #EBF2FF;
  --dark-blue: #2745DB;
  /* Typography */
  --font-family: 'Noto Sans JP';
  --heading-font-size: 2rem;
  --body-font-size: 1rem;
  --line-height: 1.5;

  /* Spacing */
  --padding: 16px;
  --margin: 16px;

  /* Borders */
  --border-radius: 5px;
  --border-color: #ddd;
  --border-width: 1px;

  /* Box Shadows */
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Transition */
  --transition-duration: 0.3s;
  --transition-timing: ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family) sans-serif !important;
}

button {
  cursor: pointer;
}

html,
body {
  scroll-behavior: smooth;
}

.p-0 {
  padding: 0 !important;
}

@media only screen and (min-width: 1280px) {
  .p-xl-0 {
    padding: 0 !important;
  }
}

.m-0 {
  margin: 0 !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.title-section::after {
  content: '';
  position: absolute;
  display: block;
  width: calc(50% - 104px);
  height: 3px;
  background-color: #0059B2;
  right: 0;
  min-width: 80px;
  top: 50%;
  transform: translateX(110%);
}

.title-section.blue-light::before {}

.title-section::before {
  content: '';
  position: absolute;
  display: block;
  width: calc(50% - 104px);
  height: 3px;
  background-color: #0059B2;
  left: 0;
  top: 50%;
  transform: translateX(-110%);
  min-width: 80px;
}

.title-section {
  display: inline-block;
  position: relative;
  font-size: clamp(1.25rem, 2vw + 0.25rem, 2rem);
  color: var(--text-black);
  line-height: 48px;
  z-index: 9;
}

.text-center {
  text-align: center;
}

.main-btn {
  background-color: var(--main-color);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 700;
}

.text-color-main {
  color: var(--main-color);
}

.text-color-black {
  color: var(--text-black);
}

.outline {
  background-color: #fff;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  overflow: hidden;
}

.text-form-error,
.text-form-error-again-pw {
  color: #FF0000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.select2-container--default .select2-selection span.select2-selection__arrow {
  right: 110px;
}

label.hp-field input[type=checkbox]+span::after,
label.hp-field input[type=radio]+span::after {
  top: 16px;
  left: 12px;
}

.btn-outline-primary {
  color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
  background: #fff !important;
  transition: all .3s ease;
  border: 0;

}

.btn-outline-primary:hover {
  color: #fff !important;
  border: 1px solid var(--main-color) !important;
  background: var(--main-color) !important;
}

.btn-primary {
  color: #fff !important;
  background: var(--main-color) !important;
  transition: all .3s ease;
  border: 0;
}

.btn-primary:hover {
  color: #fff !important;
  background: #06176e !important;
}

.hp-form__field-group--select > .hp-form__field--select:hover{
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
}

.select2-container--default .select2-selection--multiple:hover, .hp-form__field.hp-form__field--select:hover{
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
}

.select2-container--default .select2-selection--multiple:hover svg path, .hp-form__field.hp-form__field--select:hover svg path{
  stroke: var(--white-color) !important;
}

.hp-form__field.hp-form__field--search, .wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
  color: var(--text-black) !important;
}

@media only screen and (max-width: 767px) {
  div.container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .sp-fs-18 {
    font-size: 18px !important;
  }

  .text-form-error,
  .text-form-error-again-pw {
    font-size: 14px;
  }

  .title-section {
    line-height: 30px;
  }

  /* .title-section::before {
    transform: translateX(-30px);
  }

  .title-section::after {
    transform: translateX(30px);
  } */
}