.topics {
  background: #f8f8f5;
}
.topics main {
  max-width: 1024px;
  margin: 140px auto 80px auto;
  padding: 45px;
  background: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .topics main {
    max-width: 96%;
    padding: 20px 5%;
    margin: 70px auto 80px;
  }
}
.topics .topics_title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.topics h1 {
  font-size: 1.5rem;
  margin-bottom: 0.2em;
}
.topics time {
  color: #7f9f6d;
}
.topics .wrapper {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}
.topics .wrapper_narrow {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
.topics .topics_title01 {
  background: #184800;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.2em 0.8em;
}
@media screen and (max-width: 767px) {
  .topics .topics_title01 {
    font-size: 1.1875rem;
  }
}
.topics .topics_title02 {
  color: #184800;
  font-weight: bold;
  border-bottom: 1px solid #184800;
  font-size: 1.25rem;
  position: relative;
  padding: 0.2em 1.1em;
  margin-top: 1em;
}
.topics .topics_title02:before {
  content: "";
  width: 5px;
  height: 1.5em;
  background: #184800;
  position: absolute;
  left: 0;
  bottom: 3px;
}
.topics .topics_title03 {
  color: #184800;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.2em 0;
  margin-top: 1em;
}
.topics .topics_col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.topics .topic_info {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .topics .topic_info {
    grid-template-columns: 1fr;
  }
}
.topics .tag_list {
  color: #184800;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  font-size: 13px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .topics .tag_list {
    font-size: 11px;
  }
}
.topics .tag_list li {
  border: 1px solid #184800;
  padding: 0.1em 0.3em;
  min-width: 51px;
}
.topics .tag_list .tag_cat {
  color: #fff;
  background: #184800;
}
.topics .btn_article_back {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  margin: 2em auto;
  padding: 0.5em 1em;
  border-radius: 5px;
  background: #184800;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.topics .btn_article_back:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  rotate: -45deg;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  display: inline-block;
  margin-right: 0.5em;
}
.topics .btn_cta {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.375rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
  margin: 1em auto;
  padding: 0.5em 1em;
  border-radius: 5px;
  background: #ff8f21;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (hover) {
  .topics .btn_cta {
    transition: 0.2s ease scale;
  }
  .topics .btn_cta:hover {
    scale: 1.02;
  }
}
.topics .btn_cta:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  rotate: 135deg;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  display: inline-block;
  margin-left: 0.5em;
}
.topics .article_table {
  max-width: 720px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
}
.topics .article_table th,
.topics .article_table td {
  border: 1px solid #ccc;
  padding: 0.5em;
}
.topics .article_table th {
  background: #efefef;
}
.topics .indent {
  text-indent: -1em;
  margin-left: 1em;
}
.topics .topics_feature_list {
  --img_width: 287px;
  color: #184800;
}
.topics .topics_feature_list .topics_feature_details {
  border-bottom: 1px solid #fff;
}
.topics .topics_feature_list .topics_feature_details[open] {
  border-bottom: none;
}
.topics .topics_feature_list .topics_feature_details[open] .ac_title .ico_plus:before {
  rotate: 0deg;
}
.topics .topics_feature_list .ac_title {
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 60px;
  background: #184800;
  position: relative;
  font-size: 1.25rem;
  gap: 0.6em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .ac_title {
    font-size: 1rem;
    grid-template-columns: 1fr 50px;
  }
}
.topics .topics_feature_list .ac_title h3 {
  padding: 0.5em 0.5em;
}
.topics .topics_feature_list .ac_title .ico_plus {
  position: relative;
  background: #7cba5b;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.topics .topics_feature_list .ac_title .ico_plus:before, .topics .topics_feature_list .ac_title .ico_plus:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 3px;
  background: #fff;
  translate: -50% -50%;
  transition: rotate 0.2s ease;
}
.topics .topics_feature_list .ac_title .ico_plus:before {
  translate: -50% -50%;
  rotate: 90deg;
}
.topics .topics_feature_list .ac_cont {
  border: 1px solid #184800;
  border-top: none;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .ac_cont {
    padding: 1.125rem;
  }
}
.topics .topics_feature_list .topics_feature_grid_image {
  display: grid;
  grid-template-columns: 1fr var(--img_width);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .topics_feature_grid_image {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.topics .topics_feature_list .topics_feature_grid_image_reverse {
  display: grid;
  grid-template-columns: var(--img_width) 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .topics_feature_grid_image_reverse {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.topics .topics_feature_list .pro_course {
  background: #f8f8f5;
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .pro_course {
    padding: 0 1em 1em;
  }
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .pro_course img {
    max-width: 60%;
    margin: auto;
  }
}
.topics .topics_feature_list .topics_feature_border_ttl {
  border-bottom: 1px solid;
  font-size: 1.25rem;
  padding-bottom: 0.2em;
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
}
.topics .topics_feature_list .topics_feature_border_ttl.no_border {
  border: none;
}
.topics .topics_feature_list .topics_feature_border_ttl .sm {
  font-size: 80%;
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .planner_ttl {
    font-size: 7vw;
  }
}
.topics .topics_feature_list .topics_feature_plannerwork_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 10px;
}
@media screen and (max-width: 767px) {
  .topics .topics_feature_list .topics_feature_plannerwork_list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2em;
  }
}
.topics .topics_feature_list .topics_feature_plannerwork_list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 10px;
  background: #f4f8f4;
  padding: 40px 1em 1em;
  border-radius: 5px;
}
.topics .topics_feature_list .topics_feature_plannerwork_list h4 {
  font-size: 1.125rem;
  align-self: center;
  justify-self: center;
  text-align: center;
}
.topics .topics_feature_list .plannerwork_list_ico01,
.topics .topics_feature_list .plannerwork_list_ico02,
.topics .topics_feature_list .plannerwork_list_ico03,
.topics .topics_feature_list .plannerwork_list_ico04,
.topics .topics_feature_list .plannerwork_list_ico05,
.topics .topics_feature_list .plannerwork_list_ico06 {
  position: relative;
}
.topics .topics_feature_list .plannerwork_list_ico01:before,
.topics .topics_feature_list .plannerwork_list_ico02:before,
.topics .topics_feature_list .plannerwork_list_ico03:before,
.topics .topics_feature_list .plannerwork_list_ico04:before,
.topics .topics_feature_list .plannerwork_list_ico05:before,
.topics .topics_feature_list .plannerwork_list_ico06:before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: calc(100% - 36px);
  width: 52px;
  height: 52px;
  background: no-repeat center center/contain;
}
.topics .topics_feature_list .plannerwork_list_ico01:before {
  background-image: url(/sc/sophia/assets/images/topics/topics_feature_ico01.svg);
}
.topics .topics_feature_list .plannerwork_list_ico02:before {
  background-image: url(/sc/sophia/assets/images/topics/topics_feature_ico02.svg);
}
.topics .topics_feature_list .plannerwork_list_ico03:before {
  background-image: url(/sc/sophia/assets/images/topics/topics_feature_ico03.svg);
}
.topics .topics_feature_list .plannerwork_list_ico04:before {
  background-image: url(/sc/sophia/assets/images/topics/topics_feature_ico04.svg);
}
.topics .topics_feature_list .plannerwork_list_ico05:before {
  background-image: url(/sc/sophia/assets/images/topics/topics_feature_ico05.svg);
}
.topics .topics_feature_list .plannerwork_list_ico06:before {
  background-image: url(/sc/sophia/assets/images/topics/topics_feature_ico06.svg);
}
.topics .topics_feature_list .order1 {
  order: 1;
}
.topics .topics_feature_list .order2 {
  order: 2;
}
.topics .topics_feature_list .align_self_center {
  align-self: center;
}
.topics .topics_feature_list .dropshadow {
  filter: drop-shadow(6px 7px 10px rgba(79, 67, 3, 0.14));
}
.topics .cta_btn_wrap.wrapper {
  max-width: unset;
}

.feature_area .instruction_list .school_name {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .feature_area .instruction_list .school_name {
    font-size: 0.875rem;
  }
}

#c_wrap {
  color: #253237;
  font-size: 16px;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
}
#c_wrap section {
  text-align: left;
}
#c_wrap .underline {
  background: linear-gradient(transparent 60%, #fff96e 60%);
}
#c_wrap .al-center {
  text-align: center;
}
#c_wrap .bg_blue {
  background: #e0faf9;
}
#c_wrap .fc_red {
  color: red;
}
#c_wrap .wrapper_cont {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}
#c_wrap .wrapper_md {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
#c_wrap .wrapper_sm {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
#c_wrap .bold {
  font-weight: bold;
}
#c_wrap .mt_lg {
  margin-top: 8rem;
}
#c_wrap .mt_md {
  margin-top: 4rem;
}
#c_wrap .mt_sm {
  margin-top: 2.4rem;
}
#c_wrap .mt_xs {
  margin-top: 1em;
}
#c_wrap .title_grad {
  color: #fff;
  background: rgb(25, 131, 196);
  background: linear-gradient(310deg, rgb(111, 198, 195) 0%, rgb(27, 167, 228) 65%, rgb(25, 131, 196) 100%);
  padding: 0.5em;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  #c_wrap .title_grad {
    font-size: 22px;
  }
}
#c_wrap .title_grad.orange {
  background: linear-gradient(310deg, #ffb857 0%, #ff961c 65%, #f5681e 100%);
}
#c_wrap .title_grad + .fc_red {
  line-height: 2;
}
#c_wrap .title_lg {
  border-bottom: 1px dotted #85adc6;
  font-size: 32px;
  padding: 0 0 0.1em 0.4em;
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #c_wrap .title_lg {
    font-size: 24px;
    padding: 0 0 0.1em 0.6em;
  }
}
#c_wrap .title_lg:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 90%;
  background: rgb(25, 131, 196);
  background: linear-gradient(310deg, rgb(111, 198, 195) 0%, rgb(27, 167, 228) 65%, rgb(25, 131, 196) 100%);
  position: absolute;
  left: 0;
  bottom: 0.2em;
}
#c_wrap .grid_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #c_wrap .grid_2col {
    grid-template-columns: 1fr;
  }
}
#c_wrap .cta_box {
  padding: 1em 5%;
  display: flex;
  justify-content: center;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  #c_wrap .cta_box {
    flex-wrap: wrap;
    padding: 1em 0;
  }
}
#c_wrap .cta_box a {
  display: block;
}
#c_wrap .cta_box span {
  font-size: 0.7em;
  display: block;
  line-height: 1.2;
  margin-top: 1em;
}
#c_wrap .cta_box img {
  max-width: 340px;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 767px) {
  #c_wrap .cta_box img {
    max-width: 100%;
  }
}
#c_wrap .about_cont {
  display: grid;
  grid-template-columns: 120px 1fr;
  text-align: left;
  gap: 30px;
  align-items: flex-end;
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 960px) {
  #c_wrap .about_cont {
    grid-template-columns: 20vw 1fr;
  }
}
@media screen and (max-width: 767px) {
  #c_wrap .about_cont {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#c_wrap .about_cont:before {
  content: "";
  width: 320px;
  height: 320px;
  border-radius: 500px;
  background: #ffffdd;
  position: absolute;
  left: -20px;
  top: 40px;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  #c_wrap .about_cont:before {
    left: 50%;
    translate: -50% 0;
    width: 30vw;
    height: 30vw;
  }
}
@media screen and (max-width: 767px) {
  #c_wrap .about_cont figure {
    justify-self: center;
  }
}
@media screen and (max-width: 767px) {
  #c_wrap .about_cont figure img {
    height: 36vw;
    width: auto;
  }
}
#c_wrap .about_cont .about_title {
  font-size: 40px;
  display: inline;
}
@media screen and (max-width: 767px) {
  #c_wrap .about_cont .about_title {
    font-size: 29px;
  }
}
#c_wrap .about_cont .about_subtitle {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  #c_wrap .about_cont .about_subtitle {
    font-size: 22px;
  }
}
#c_wrap .about_cont figure,
#c_wrap .about_cont .about_textWrap {
  position: relative;
  z-index: 1;
}
#c_wrap .lecture_box {
  display: grid;
  gap: 0.7em;
  padding: 1em 0;
}
#c_wrap .lecture_box .size_md {
  max-width: 70%;
}
#c_wrap .lecture_box .label {
  background: #2da1be;
  color: #fff;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.2em 0.5em;
  min-height: 36px;
}
#c_wrap .lecture_box .label:has(.badge) {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  flex-direction: column;
  gap: 0.2em;
}
@media screen and (max-width: 767px) {
  #c_wrap .lecture_box .label:has(.badge) {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    align-items: flex-start;
    padding-top: 0.4em;
  }
}
#c_wrap .lecture_box .label .sm {
  font-size: 0.8em;
  display: inline-block;
  line-height: 1.2;
}
#c_wrap .lecture_box .badge {
  font-weight: bold;
  font-size: 0.8em;
  background: #fff;
  padding: 0 0.5em;
  border-radius: 50px;
  color: #2da1be;
  vertical-align: middle;
  align-self: center;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #c_wrap .lecture_box .badge {
    align-self: flex-start;
  }
}
#c_wrap .lecture_box.border-bottom-none {
  border-bottom: none;
}
#c_wrap .lecture_text_col2 {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 100px;
  grid-template-areas: "title image" "text image";
}
@media screen and (max-width: 767px) {
  #c_wrap .lecture_text_col2 {
    grid-template-areas: "title" "text" "image";
    grid-template-columns: 1fr;
  }
}
#c_wrap .lecture_text_col2 h4 {
  grid-area: title;
}
#c_wrap .lecture_text_col2 p {
  grid-area: text;
}
#c_wrap .lecture_text_col2 picture {
  grid-area: image;
  align-self: flex-end;
  justify-self: center;
}
#c_wrap .lecture_title {
  color: #00468c;
  font-size: 30px;
  line-height: 1.4;
  border-left: 5px solid #00468c;
  padding-left: 0.5em;
}
@media screen and (max-width: 767px) {
  #c_wrap .lecture_title {
    font-size: 24px;
  }
}
#c_wrap .lecture_title .sm {
  display: block;
  font-size: 65%;
}
#c_wrap .lecture_title .indent {
  text-indent: -0.5em;
}
#c_wrap .special_contents .lecture_title {
  color: #ff5c20;
  border-left: 5px solid #ff5c20;
}
#c_wrap .special_contents.grid_2col:has(.lecture_box) .lecture_box:nth-child(1) {
  border-top: none;
}
#c_wrap .special_contents.grid_2col:has(.lecture_box) .lecture_box:nth-child(2) {
  border-top: none;
}
@media screen and (max-width: 767px) {
  #c_wrap .special_contents.grid_2col:has(.lecture_box) .lecture_box:nth-child(2) {
    border-top: 1px dotted #85adc6;
  }
}
#c_wrap .special_contents .grid_2col:has(.lecture_box) .lecture_box {
  padding: 0;
}
#c_wrap .special_contents .grid_2col:has(.lecture_box) .lecture_box.border-top-none {
  border-top: none;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  #c_wrap .special_contents .grid_2col:has(.lecture_box) .lecture_box.border-top-none {
    padding: 0.5em 0 0;
  }
}
#c_wrap .special_contents.special_contents_bottom {
  border-top: 1px dotted #85adc6;
  margin-top: 1.5em;
}
#c_wrap .join_univ {
  padding: 0.5em;
  font-size: 14px;
  background: #fef0ea;
}
#c_wrap .lecture_sub_title {
  display: block;
  font-size: 70%;
  color: #253237;
}
#c_wrap .lecture_inner_box {
  background: #e1edf0;
  padding: 1em;
  display: grid;
  gap: 6px;
  font-size: 14px;
}
#c_wrap .lecture_inner_box figure {
  justify-self: center;
}
#c_wrap .grid_2col:has(.lecture_box) {
  border-bottom: 1px dotted #85adc6;
}
#c_wrap .grid_2col:has(.lecture_box).border-bottom-none {
  border-bottom: none;
}
#c_wrap .grid_2col:has(.lecture_box) .lecture_box {
  border-top: 1px dotted #85adc6;
  grid-template-rows: max-content max-content 1fr;
  align-items: start;
}
#c_wrap .grid_2col:has(.lecture_box) .lecture_box:nth-child(2n-1) {
  padding-right: 1em;
  border-right: 1px dotted #85adc6;
}
@media screen and (max-width: 767px) {
  #c_wrap .grid_2col:has(.lecture_box) .lecture_box:nth-child(2n-1) {
    padding-right: 0;
    border-right: none;
  }
}
#c_wrap .grid_2col:has(.lecture_box) .lecture_box:nth-child(2n) {
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  #c_wrap .grid_2col:has(.lecture_box) .lecture_box:nth-child(2n) {
    padding-left: 0;
  }
}
#c_wrap .lottery_bnr {
  padding: 1em;
  border-bottom: 1px dotted #85adc6;
}
@media screen and (max-width: 767px) {
  #c_wrap .lottery_bnr {
    padding: 1em 0;
  }
}
#c_wrap .kan8-table {
  border: 2px solid #004da1;
  vertical-align: middle;
  width: 100%;
}
#c_wrap .kan8-table .link_underline {
  margin-left: 0.5em;
}
#c_wrap .kan8-table th,
#c_wrap .kan8-table td {
  border-bottom: 1px solid #004da1;
  border-right: 1px dashed #004da1;
  padding: 3px 8px;
  line-height: 1.5;
}
#c_wrap .kan8-table th {
  background: #ecf6fc;
  color: #004da1;
  width: 7.5em;
}
@media screen and (max-width: 767px) {
  #c_wrap .kan8-table th {
    font-size: 14px;
    width: 6em;
  }
}
#c_wrap .kan8-table span {
  font-size: 110%;
}
#c_wrap .flow_icon {
  position: relative;
}
#c_wrap .flow_icon:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.8s ease;
}
#c_wrap .flow_icon.active:before {
  transform: translateY(0);
  opacity: 1;
}
#c_wrap .icon_light:before {
  width: 104px;
  aspect-ratio: 74/85;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250512_kan8_ico_light.svg) no-repeat center center/contain;
  right: 1em;
  top: -20px;
}
@media screen and (max-width: 767px) {
  #c_wrap .icon_light:before {
    width: 74px;
  }
}
#c_wrap .icon_time:before {
  width: 104px;
  aspect-ratio: 12/9;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250512_kan8_ico_time.svg) no-repeat center center/contain;
  right: 1em;
  top: -15px;
}
@media screen and (max-width: 767px) {
  #c_wrap .icon_time:before {
    width: 74px;
    top: 5px;
  }
}
#c_wrap .icon_money:before {
  width: 104px;
  aspect-ratio: 12/9;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250512_kan8_ico_money.svg) no-repeat center center/contain;
  right: 1em;
  top: -18px;
}
@media screen and (max-width: 767px) {
  #c_wrap .icon_money:before {
    width: 74px;
  }
}
#c_wrap .icon_teacher:before {
  width: 104px;
  aspect-ratio: 6/5;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250512_kan8_ico_person03.svg) no-repeat center center/contain;
  right: 1em;
  top: -18px;
}
@media screen and (max-width: 767px) {
  #c_wrap .icon_teacher:before {
    width: 74px;
  }
}
#c_wrap .icon_glass {
  padding-bottom: 32px;
  border-bottom: 1px dotted #85adc6;
}
#c_wrap .icon_glass:before {
  width: 78px;
  aspect-ratio: 78/100;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250512_kan8_ico_glass.svg) no-repeat center center/contain;
  right: 0;
  top: -30px;
}
@media screen and (max-width: 767px) {
  #c_wrap .icon_glass:before {
    width: min(14vw, 78px);
  }
}
@media screen and (max-width: 340px) {
  #c_wrap .icon_glass:before {
    top: -20px;
  }
}
#c_wrap .icon_person01 {
  padding-bottom: 128px;
}
#c_wrap .icon_person01:before {
  width: 128px;
  aspect-ratio: 128/142;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250512_kan8_ico_person01.svg) no-repeat center center/contain;
  left: 0;
  top: calc(100% - 128px);
}
@media screen and (max-width: 767px) {
  #c_wrap .icon_person01:before {
    left: 50%;
    translate: -50% 0;
  }
}
#c_wrap .icon_person02 {
  padding-bottom: 122px;
}
#c_wrap .icon_person02:before {
  width: 154px;
  aspect-ratio: 154/122;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250512_kan8_ico_person02.svg) no-repeat center center/contain;
  right: 0;
  top: calc(100% - 118px);
}
@media screen and (max-width: 767px) {
  #c_wrap .icon_person02:before {
    right: unset;
    left: 50%;
    translate: -50% 0;
  }
}
#c_wrap .special_guest {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  background: #e1edf0;
  max-width: 77rem;
  margin: auto;
  margin-top: 4rem;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  #c_wrap .special_guest {
    flex-direction: column;
  }
}
#c_wrap .special_guest .special_guest_cont {
  color: #00468c;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 36rem;
  padding: 2rem 0;
}
#c_wrap .special_guest .special_guest_figure {
  max-width: 28rem;
  margin-top: -2rem;
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  #c_wrap .special_guest .special_guest_figure {
    max-width: 16rem;
    margin-top: -4rem;
  }
}
#c_wrap .link_underline {
  color: #2da1be;
  text-decoration: underline;
}
#c_wrap .lecture_wrap {
  border-top: 2px dotted #85adc6;
  padding-top: 1em;
  margin-top: 1em;
}
#c_wrap .lecture_wrap.grid_2col:has(.lecture_box) {
  gap: 15px;
  border-bottom: 0;
}
#c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_box:nth-child(2n-1), #c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_box:nth-child(2n) {
  padding: 0;
  border: 0;
}
@media screen and (max-width: 767px) {
  #c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_box:nth-child(2n-1).border-top_sp, #c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_box:nth-child(2n).border-top_sp {
    border-top: 2px dotted #85adc6;
    padding-top: 1em;
    margin-top: 1em;
  }
}
#c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_box {
  grid-template-rows: unset;
}
#c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_inner_box {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
#c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_box .label:has(.badge) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.4em;
}
#c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_box .badge {
  align-self: flex-start;
}
#c_wrap .lecture_wrap.grid_2col:has(.lecture_box) .lecture_inner_box figure img {
  width: 100%;
  height: auto;
}