@charset "UTF-8";
/* ---[基礎設定]--- */
section.big-section {
  /* max-width: 1130px; */
  /* background: pink; */
  margin: 0 auto;
  /* padding: 0 1.5rem; */
}
@media (max-width: 768px) {
  section.big-section {
  }
}

.a-link {
  /* color: #004989; */
  text-decoration: underline;
  font-weight: 600;
  position: relative;
  margin-left: 16px;
}
.a-link::before {
  content: "";
  height: 12px;
  width: 12px;
  /* background: red; */
  background-image: url(../img/betu.svg);
  position: absolute;
  top: 5px;
  left: -16px;
}
/* ---[基礎設定]END */

/* ---[ヘッダー]--- */
header.header {
  /* background: orange; */
  max-width: 1130px;
  padding: 1.5rem;
  margin: 0 auto;
}
.header-img {
  width: 25.7rem;
}

@media (max-width: 768px) {
  /* ---[ヘッダー]--- */
  header.header {
    padding: 0.7rem 1.5rem;
  }

  .header-img {
    width: 14.7rem;
  }
}
/* ---[ヘッダー]END */

/* ---[トップ画像]--- */
section.section-topimg {
  /* max-width: 1130px; */
  margin: 0 auto;
  background: #5795d4;
  background-image: url(../img/bg_02.png);
  background-size: cover;
  background-attachment: fixed;
  background-position-x: right;
  background-position-y: center;
}
.sec-topimg {
  width: 100%;
  /* height: 40rem; */
  /* background: pink; */
  /* border: solid 1px; */
  /* background-image: url(../img/bnr_01.png); */
  background-position: center;
  background-size: cover;
  max-width: 1130px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.section-topimg {
    /* background-image: none; */
  }
  .sec-topimg {
    /* height: 20rem; */
  }
}
/* ---[トップ画像]END */

/* ---[タイトル]--- */
section.section-title-plan {
  padding: 2rem 1.5rem;
  max-width: 1130px;
  margin: 0 auto;
}

.sec-title-plan {
  padding: 0 0 0 1.1rem;
  position: relative;
  line-height: 0.75;
}
.sec-title-plan::before {
  position: absolute;
  content: "";
  left: 0.3rem;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 2.4rem;
  background-color: #004989;
  margin-top: -0.2rem;
}
@media (max-width: 768px) {
  .sec-title-plan::before {
    height: 2rem;
  }
}
/* ---[タイトル]END */

/* ---[サブタイと説明文]--- */
section.section-topic {
  max-width: 1130px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
.sec-topic {
  color: #004986;
  margin-bottom: 0.6rem;
}
/* ---[サブタイと説明文]END */

/* ---[申し込みボタン]--- */
section.section-btn {
  text-align: center;
  margin: 5rem 0 10rem;
  /* background: yellow; */
}
.sec-btn {
  display: flex;
  width: 27rem;
  height: 5.1rem;
  /* padding: 1.8rem 3rem 1.7rem 3rem; */
  border-radius: 2.5rem;
  background: #004989;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: ease 0.1s;
  font-size: 1.6rem;
  pointer-events: auto;
  /* cursor: pointer; */
  margin: 0 auto;
}

/* ----[ボタンアニメ]---- */
.btn_23 {
  overflow: hidden;
  z-index: 1;
}
.btn_23::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #009ce2;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}
.btn_23:hover::before {
  transform: translateX(0);
}
.btn_23:hover {
  color: #fff;
}
/* ----[ボタンアニメ]-END */

.sec-btn:hover {
  opacity: 0.8;
}
.sec-btn a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: none;
}
/* ---[申し込みボタン]END */

/* ---[登壇者関連]--- */
section.section-toudan {
  max-width: 1130px;
  padding: 0 1.5rem;
  margin: 0 auto 8rem;
}

.sec-toudan-title {
  padding: 0 0 0 1.1rem;
  position: relative;
  line-height: 0.75;
  margin-bottom: 1.2rem;
}
.sec-toudan-title::before {
  position: absolute;
  content: "";
  left: 0.3rem;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 2.4rem;
  background-color: #004989;
  margin-top: -0.2rem;
}

.sec-toudan {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  gap: 2%;
}
.sec-toudan__list {
  width: 50%;
  padding: 1.2rem 1.2rem 2rem;
  background: #f1f6fe;
}
.sec-toudan__list--img {
  margin-bottom: 1rem;
}
.sec-toudan__list h5 {
  color: #004986;
  font-weight: 700;
}

@media (max-width: 768px) {
  .sec-toudan-title::before {
    height: 2rem;
  }

  .sec-toudan {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .sec-toudan__list {
    width: 100%;
  }
  .sec-toudan__list.list2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .sec-toudan__list--img {
    width: 60%;
  }
}
/* ---[登壇者関連]END */

/* ---[募集要項]--- */
section.section-details {
  /* background: greenyellow; */
  max-width: 1130px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
.li---title {
  /* font-size: 2.4rem; */
  padding: 0 0 0 1.1rem;
  position: relative;
  line-height: 0.75;
  margin: 0 0 2rem;
}
.li---title::before {
  position: absolute;
  content: "";
  left: 0.3rem;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 2.4rem;
  background-color: #004989;
  margin-top: -0.2rem;
}

.li---det {
  background-color: #f8f9fa;
  padding: 4.8rem 2rem 4.1rem 2rem;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}
.li---ul {
}
.li---list {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding: 1.85rem 0;
  border-bottom: 0.1rem solid #e5e8eb;
}
.li---list:last-child {
  border-bottom: none;
}
.li---list div:first-of-type {
  width: 17%;
  text-align: left;
  font-weight: 700;
}
.li---list div:last-of-type {
  flex: 1;
  text-align: left;
}
.li---disc p {
  display: list-item;
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 5px;
}
p.list-none{
  list-style-type:none;
  font-size:1.3rem;
}

@media (max-width: 768px) {
  .li---title::before {
    height: 2rem;
  }

  .li---list {
    flex-direction: column;
    align-items: flex-start;
  }
  .li---list div:first-of-type {
    width: 100%;
  }
}
/* ---[募集要項]END */
