:root {
  --color-dark-blue: #35527b;
  /* ダークブルー */
  --color-bright-blue: #2981BA;
  /* ブライトブルー */
  --color-light-blue: #CEDDED;
  /* ライトブルー */
  --color-dark-gray: #333333;
  /* ダークグレー */
}


::selection {

  background-color: var(--color-light-blue);
}

a {
  color: var(--color-bright-blue);
  text-decoration: none;

  &:hover {
    font-weight: bold;
  }
}

footer a {
  color: initial;
  text-decoration: none;
}

.bg-first {
  background: var(--color-light-blue) !important;
}

.bg-second {
  background: var(--color-bright-blue) !important;
}

.bg-third {
  background: var(--color-dark-blue) !important;
}

.hero-section .hero-background {
  min-height: 50rem;
}

.lower-background {
  min-height: 20rem;
  background: var(--color-bright-blue);
  padding-top: 10rem;
}

.fs-lg-1.fs-lg-1__Brand {
  @media (min-width: 992px) {
    font-size: 5.75rem !important;
  }
}

.hero-section .hero-background {
  background-image: url("../img/illustrations/abstract_image.png");
}

.experience {
  background: -webkit-gradient(linear, left top, left bottom, from(#536fb8), to(#121b35));
  background: -o-linear-gradient(top, #536fb8, #121b35);
  background: linear-gradient(to bottom, #536fb8, #121b35);
}

.bg-1100 {
  --brainwaveio-bg-opacity: 1;
  background-color: #121b35 !important;
}

.bg-white {
  background-color: #fff;
}

.accordion {
  border-top: 5px solid #bad7d1;
  border-radius: var(--brainwaveio-border-radius);
}

.bl_mv .row>* {
  margin-top: 0;
}

.bl_mv {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .bl_mv {
    margin-top: 100px;
  }
}

@media (min-width: 992px) {
  .bl_mv {
    margin-top: 0;
  }
}

/* フォームのinputボーダー色 */
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #959494;
}

/*LPの自作フォーム設定 */
.form-group__kijican {
  .form-control_wrap {
    background: var(--color-light-blue);
    padding: 1.5em 1em;
  }
}

.form-control {
  background: #fff;
  border-radius: 4px;
  padding: 1em;
  height: 40px;
  font-size: 16px;
}

.label_title {
  font-weight: bold;
  color: var(--color-dark-gray);
}

.label_required {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  padding: .2rem .5rem;
  background: var(--color-dark-gray);
  margin-left: 1rem;
}

/* 見出しに縦棒の装飾 */
.with-border {
  position: relative;
  padding-left: 15px;
  /* 縦棒とテキストの間に余白を追加 */
}

.with-border::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  /* 縦棒の幅 */
  background-color: var(--color-bright-blue);
  /* 縦棒の色（例：Bootstrapのプライマリカラー） */
}

/* アカウント申請フォーム */
.signUp-form {
  .label_title {
    font-size: 1rem;
  }

  .form-group {
    margin-top: 24px;
  }

  input::placeholder {
    color: #bbb;
    font-size: 14px;
  }
}


/* 問い合わせページのhusspotフォーム */
.field {
  margin-bottom: 24px;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  display: flex !important;
  justify-content: center !important;
  margin-top: 20px !important;
}

fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}

.input>input {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #33475b;
  background-color: #fff;
  border: 1px solid #959494;
  box-sizing: border-box;
  border-radius: 3px;

  &::placeholder {
    color: #bbb;
    font-size: 14px;
  }
}

fieldset {
  max-width: 100% !important;
}

.actions {
  margin-top: 30px;
}

.legal-consent-container {
  margin-top: 30px;
}

.hs-button {
  white-space: pre-wrap;
  background: var(--color-bright-blue);
  border-radius: 4px;
  padding: 1em 3em !important;
  font-weight: bold;
  color: #Fff;
  border: none;
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

.hs-button:hover {
  background: var(--color-dark-blue);
}

/* インジケータ */
.clearfix {
  clear: both;
}

/* パターン1 */
.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
  z-index: 0;
  position: relative;
}

.progressbar li {
  list-style-type: none;
  width: 33.3%;
  float: left;
  font-size: 14px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #aaa;
}

.progressbar li:before {
  width: 50px;
  height: 50px;
  content: counter(step);
  counter-increment: step;
  line-height: 50px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #eee;
}

.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #eee;
  top: 25px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color: var(--color-bright-blue);
  font-weight: bold;
}

.progressbar li.active:before {
  background-color: var(--color-bright-blue);
  color: #fff;
}

.progressbar li.active+li:after {
  background-color: var(--color-bright-blue);
}

/* prettier-ignore */
.fs-lg-1.fs-lg-1__Brand {
  @media (min-width: 992px) {
    font-size: 5.75rem !important;
  }
}

.hero-section .hero-background {
  background-image: url("../img/illustrations/abstract_image.png");
}

/* /terms/で使用 */
.bl_terms {
  font-size: 14px;
  line-height: 1.8;
}

.bl_listGroup li {
  border: none;

  &+* {
    margin-top: .6em;
  }
}

ol {
  counter-reset: item;
}

ol>li {
  list-style: none;
  counter-increment: item;
}

ol>li:before {
  content: "(" counter(item) ") ";
  font-weight: bold;
}

.card {
  background-color: #f8f9fa;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-title {
  margin-bottom: 15px;
}

.card-body {
  flex-grow: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;

  i {
    margin-left: 5px;
  }
}

.logo_pc {
  height: 30px;
  width: 100%;
}

.logo-h1-images {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logo-h1-images {
    max-width: 100%;
  }
}

.logo-h1 {
  max-width: 260px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logo-h1 {
    max-width: 100%;
    margin: 0;
  }
}