@charset "UTF-8";
/* -------------------------------------------------------------------------------- */
/* 相談窓口（対象＋支援内容）ブロック                          .mgsblk-consult-target */
/* -------------------------------------------------------------------------------- */

.editor-styles-wrapper .mgsblk-consult-target { border: 1px dashed #ccc; min-height: 40px; }

.mgsblk-consult-target {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* ------------------------------ 左カラム：対象リスト ------------------------------ */

.mgsblk-consult-target__main {
  flex: 1 1 55%;
  min-width: 0;
}

.mgsblk-consult-target__eyebrow {
  color: #2f6b4f;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.mgsblk-consult-target__heading {
  font-size: 30px;
  font-weight: bold;
  line-height: 145%;
  margin-bottom: 28px;
}

.mgsblk-consult-target__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.mgsblk-consult-target__list li {
  position: relative;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  font-family: "OptimaLTProRoman", YakuHanMP, yu-mincho-pr6n, 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  padding: 14px 16px 14px 34px;
}

.mgsblk-consult-target__list li::before {
  content: "▸";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--main-color);
  font-size: 13px;
}

/* ------------------------------ 右カラム：支援内容ボックス ------------------------------ */

.mgsblk-consult-target__box {
  flex: 1 1 42%;
  min-width: 0;
  background-color: #f4f4f2;
  border-radius: 8px;
  padding: 40px;
}

.mgsblk-consult-target__box-heading {
  color: #2f6b4f;
  font-family: "OptimaLTProRoman", YakuHanMP, yu-mincho-pr6n, 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 175%;
  margin-bottom: 24px;
}

.mgsblk-consult-target__box-text {
  font-size: 14px;
  line-height: 200%;
  opacity: 0.85;
  margin-bottom: 20px;
}

.mgsblk-consult-target__checks {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.mgsblk-consult-target__checks li {
  position: relative;
  font-size: 13px;
  line-height: 170%;
  padding: 6px 0 6px 26px;
}

.mgsblk-consult-target__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: #2f6b4f;
  font-weight: bold;
}

/* -------------------------------------------------------------------------------- */
/*        TABLET                                                                    */
/* -------------------------------------------------------------------------------- */
@media screen and (min-width: 740px) and (max-width: 899px) {
  .mgsblk-consult-target {
    flex-direction: column;
    gap: 40px;
  }
  .mgsblk-consult-target__heading {
    font-size: 26px;
  }
  .mgsblk-consult-target__box {
    width: 100%;
    box-sizing: border-box;
  }
}

/* -------------------------------------------------------------------------------- */
/*         MOBILE                                                                   */
/* -------------------------------------------------------------------------------- */
@media only screen and (max-width: 739px) {
  .mgsblk-consult-target {
    flex-direction: column;
    gap: 32px;
  }
  .mgsblk-consult-target__heading {
    font-size: 22px;
  }
  .mgsblk-consult-target__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mgsblk-consult-target__box {
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .mgsblk-consult-target__box-heading {
    font-size: 18px;
  }
}
