@charset "utf-8";

/*タイトル　underline */
.underline_support {
  text-align: center;
}
.underline_support span {
	position: relative;
  display: inline-block;
  margin-bottom: 1em;
	font-size: 1.5rem;
	color: #262889;
	line-height: 45px;
}

.underline_support span:after {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #262889;
  border-radius: 2px;
}

/*四つのアイコン*/
.header-icon p {
  text-align: center !important;

}
.header-icon h3 {
  padding: 0.5em 0;/*上下の余白*/
	margin-left: 10px;
  font-size: 1.22rem;
	font-weight: 900;
	line-height: 1.4;
	color:#2427A0;/*文字色*/
}
@media (max-width: 767px) {
  .header-icon h3 {
  font-size: 1.4rem;
}
  .header-icon img {
    max-width: 80%;
    height: auto;
    padding: 10px;
  }
}

/* ネット講義 */
     .support-box {
      border-radius: 8px;
      padding: 20px;
      margin-bottom:0;
    }
    .pink-box {
      background-color: #ffecec;
    }
    .blue-box {
      background-color: #edf0ff;
    }
    .support-img {
      margin-bottom: 15px;
    }
    .support-title {
      font-weight: bold;
      font-size: 1.3rem ;
      color: #e54b4b;
    }
    .blue-box .support-title {
      color: #f15a24;
    }

    /* 二つ矢印 */
    .arrow-container {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    @media (min-width: 768px) { 
      .support-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .support-img {
        width: 45%;
      }
      .support-text {
        width: 50%;
        display: block;
        padding: 0 10px;
      }
    }

    /*悩み*/
      .worries-title {
        font-weight: bold;
        font-size: 1.3rem ;
        color: #2b338a;
        position: relative;
        padding-left: 45px; 
    }

    .worries-title h3:before {
      position: absolute;
      font-family: "icomoon";
      content: "\f128";
      background: #2b338a;
      color: white;
      font-weight: 900;
      font-size: 15px;
      border-radius: 50%;
      left: 299px;
      width: 25px;
      height: 25px;
     line-height: 25px; 
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
}
.worries-title h3:after {
      /*吹き出しのちょこんと出た部分*/
  content: '';
  display: block;
  position: absolute;
  left: 320px;
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #2b338a;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

 @media (max-width: 767px) {
  .worries-title h3:before {
      left: 10px;
}
.worries-title h3:after {
  left: 30px;
 }
}

.worries-list {
      background: #fff;
      border: 1px solid #ccc;
      padding: 20px;
      border-radius: 8px;
      margin: 30px auto;
      width: 100%;
      max-width: 480px;
    }

.worries--list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 1.2em;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.8;
  color: #333;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.worries--list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #c55f2c; /* 淡藍色 check */
  font-weight: bold;
  font-size: 1em;
}
.worries--list a {
  color: #2c64c5;
  text-decoration: underline;
}
.worries--list a:hover {
  text-decoration: none;
}

.worries--list strong {
   font-family: 'Noto Sans JP', sans-serif;
   font-weight: bolder;
   font-size: 1.1rem;
}

/*フォローチャート*/
 .step-box-support {
      background-color: #fff1f0;
      border-radius: 8px;
      padding: 20px 25px;
      margin-bottom: 20px;
      text-align: left;
    }

    .step-number-support {
      background-color: #ff7676;
      color: white;
      font-weight: bold;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      text-align: center;
      line-height: 36px;
      display: inline-block;
      margin-right: 10px;
    }

    .step-title-support {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: bold;
      font-size: 1.3rem;
      display: inline-block;
      vertical-align: middle;
      color: #ff7676;
    }

    .step-desc-support {
      margin-top: 8px;
      margin-left: 46px;
      font-size: 14px;
    }

    .arrow-down-support {
      width: 0;
      height: 0;
      border-left: 14px solid transparent;
      border-right: 14px solid transparent;
      border-top: 14px solid #fbb;
      margin: 0 auto 20px;
    }

    .red-highlight {
    color: rgb(255, 0, 111);
    background: #fff;
  }
  .blue-highlight {
    color: rgb(0, 132, 255);
    background: #fff;
  }

.btn-flat-border {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #6666cc;
  border: solid 2px #6666cc;
  border-radius: 3px;
  transition: .4s;
   background: #fff;
}

.btn-flat-border:hover {
  background: #6666cc;
  color: white;
}

    @media (max-width: 768px) {
      .step-desc {
        font-size: 13px;
      }
    }