@charset "UTF-8";

/* 子見出し */
.g-border {
  position: relative;
  padding: 0.8em 0.5em;
  margin: 15px 0 10px 0; 
  font-size: 18px;
  font-weight: bold;
  border-radius: 3px;
  border: 3px solid #91d4ff;
  background: #91d4ff;
  text-align: center;
}

/* ボックス */
.box28 {
    position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #FFC107;
}
.box28 .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #FFC107;
    color: #ffffff;
    font-weight: bold;
}
.box28 p {
    margin: 0; 
    padding: 0;
}


/* ボタンデザイン */
.bt-wrap {
    display: flex;
    gap: 20px;
}

.bt003 a {
    background: #eee;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 350px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.bt003 a:hover {
    background: #91d4ff;
    color: #FFF;
}
.bt003 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #91d4ff;
    border-right: 3px solid #91d4ff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.bt003 a:hover:after {
    border-color: #FFF;
}



/* テキスト */
.pa2 {
    padding: 0 1em 0.3em 1em;
}

.p12 {
    text-align: left;
    font-size: 12px;
    padding: 0 1em;
    color:#136082;
}

/* 項目 */
.c-h2 {
  margin: 0.4em 0 0.3em 0;
  padding-left: 24px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  /* display: inline-block; 必要ならそのまま */
  display: inline-block;
}

.c-h2::before {
  content: "◆";
  color: #5aa9e6;
  font-weight: bold;
  position: absolute;
  font-size: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* テーブル */
.table-t1 {
    width: 100%;
    border-collapse: collapse;
  }

.table-t1 th,
.table-t1 td {
    width: 50%;
    padding: 8px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: top;
  }

/* 受講者 */
.label201 {
  background-color: #b3cc6e;
  color: white;
  font-size: 14px;
  display: inline-block;
  border-radius: 3px;
  padding: 0 1em;
}

.label202 {
  background-color: #b3cc6e;
  color: white;
  font-size: 14px;
  margin-top: 1em;
  display: inline-block;
  border-radius: 3px;
  padding: 0 1em;
}


/* 問い合わせ */
.bg-h {
  background-color:#eceff3;
  border-radius: 3px;
  margin: 0.5em 0;
  padding: 1em;
}



/* 目次 */

.m-cont {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding : 2%;
}


.m-lf, .m-rg {
  box-sizing: border-box;
  border-bottom: 1px dotted #b2d5de;
}

.m-lf {
  flex: 0 0 39%;
  padding: 0.3em 0 0.3em 0.5em;
}

.m-rg {
  flex: 1 1 60%;
  padding: 0.3em 0 0.3em 1em;
}

.nb{
  display: none;
}



@media (max-width: 600px) {
  .m-cont {
    display: block;
  }
  .m-lf, .m-rg {
    width: 100%;
    flex: none;
    box-sizing: border-box;
  }
  .m-lf {
    border-bottom: none;
  }
  .m-rg {
    border-bottom: 1px dotted #b2d5de;
  }

  .nb{
    display: block;
  }

  .table-t1,
  .table-t1 tbody,
  .table-t1 tr,
  .table-t1 td {
    display: block;
    width: 100%;
  }
}