@charset "UTF-8";
/*----------------------------------------------------------------------------
******************************************************************************
** 追加
******************************************************************************
----------------------------------------------------------------------------*/
.e_link::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: url(./../images/icon_elink_gray.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  margin-left: 0.4em;
}

.btn_base {
  box-sizing: border-box;
  color: #333;
  padding: 20px 36px 20px 24px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  border-radius: 3px;
  transition: all 0.3s ease;
  background: #f4f4f4;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8em;
  font-size: 1rem;
}
@media (max-width: 769px) {
  .btn_base {
    padding: 12px 36px 12px min(20px, 4vw);
    font-size: 0.937rem;
  }
}
.btn_base:before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #2a8756;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.3s ease;
}
.btn_base::after {
  right: 20px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.3s ease;
}
.btn_base:hover {
  background: #9CC45F;
  color: #fff;
}
.btn_base:hover::before {
  background: #fff;
  right: 12px;
}
.btn_base:hover::after {
  border-top: 1px solid #9CC45F;
  border-right: 1px solid #9CC45F;
  right: 18px;
}
.btn_base[target=_blank]::before {
  width: 12px;
  height: 12px;
  right: 16px;
  border-radius: 0;
  background: url(./../images/icon_elink_green.svg) no-repeat center center;
  background-size: contain;
}
.btn_base[target=_blank]::after {
  display: none;
}
.btn_base[target=_blank]:hover::before {
  background: url(./../images/icon_elink_white.svg) no-repeat center center;
  background-color: transparent;
}
.btn_base[href^="#"]::after {
  transform: rotate(135deg);
  top: -1px;
  right: 19px;
}
.btn_base[href^="#"]:hover::before {
  top: 4px;
  right: 14px;
}
.btn_base[href^="#"]:hover::after {
  right: 19px;
  top: 4px;
}
.btn_base span {
  border: 1px solid #2a8756;
  color: #2a8756;
  display: inline-block;
  width: 5.4em;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px 0;
}
.btn_base span.is_medicine {
  border-color: #00a0e9;
  color: #00a0e9;
}
.btn_base span.is_health_sciences {
  border-color: #eb8724;
  color: #eb8724;
}
.btn_base.is_white:not(:hover) {
  background: #fff;
}
.btn_base.is_small {
  width: min(100%, 320px);
}
.btn_base.is_small_c {
  width: min(100%, 320px);
  margin-right: auto;
  margin-left: auto;
}
.btn_base.is_disabled {
  opacity: 0.8;
  cursor: not-allowed;
  filter: grayscale(100%);
}
.btn_base.is-current:not(:hover) {
  color: rgba(51, 51, 51, 0.5);
  background: rgba(102, 102, 102, 0.2);
}

.btn_anchor {
  box-sizing: border-box;
  color: #333;
  padding: 12px 0 12px 24px;
  display: inline-block;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  background: #f0f0ee;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr 50px;
  align-items: center;
  justify-content: space-between;
}
.btn_anchor::after {
  right: 20px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(135deg);
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.3s ease;
}
.btn_anchor:hover {
  background: #9CC45F;
  color: #fff;
}
.btn_anchor:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.btn_anchor.is_other::after {
  transform: rotate(45deg);
}

.title_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: none;
  padding: 0;
}
@media (max-width: 769px) {
  .title_main {
    font-size: 1.625rem;
  }
}

.title_sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.5em 1.4em;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
  border: none;
}
@media (max-width: 769px) {
  .title_sub {
    font-size: 1.25rem;
  }
}
.title_sub::before, .title_sub::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #333;
  left: 0;
}
.title_sub::before {
  top: 0;
}
.title_sub::after {
  bottom: 0;
}

.title_line {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
}
@media (max-width: 769px) {
  .title_line {
    font-size: 1.2rem;
    line-height: 1.8;
    gap: 20px;
  }
}
.title_line::before {
  content: "";
  width: 5px;
  height: auto;
  background: #8CC14A;
  display: block;
}
.title_line.is_medicine::before {
  background: #00a0e9;
}
.title_line.is_health_sciences::before {
  background: #eb8724;
}
.title_line.is_graduate::before {
  background: #2a8756;
}

.title_small {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2;
}
@media (max-width: 769px) {
  .title_small {
    font-size: 1.1rem;
  }
}

.table_scroll {
  width: 100%;
}
.table_scroll table {
  width: max(100%, 1000px) !important;
}
.table_scroll.is-middle table {
  width: max(100%, 600px) !important;
}
.table_scroll.is-wide table {
  width: max(100%, 1400px) !important;
}

.table_colored {
  width: 100%;
  border: none;
  margin: 0;
}
.table_colored th, .table_colored td {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 1rem;
}
@media (max-width: 769px) {
  .table_colored th, .table_colored td {
    font-size: 0.875rem;
    text-align: left;
  }
}
.table_colored.is_number th, .table_colored.is_number td {
  text-align: center;
}
.table_colored.is_bg02 tr:first-child th {
  background: rgba(153, 153, 153, 0.35);
}
.table_colored.is_bg02 th, .table_colored.is_bg02 td {
  border-right: 3px solid #f4f4f4;
  border-bottom: 3px solid #f4f4f4;
}
.table_colored.is_bg02 th {
  background: rgba(153, 153, 153, 0.15);
}
.table_colored.is_bg02 td {
  background: white;
}
.table_colored.is_health_sciences tr:first-child th {
  background: rgba(203, 125, 49, 0.4);
}
.table_colored.is_health_sciences th {
  background: rgba(203, 125, 49, 0.25);
}
.table_colored.is_health_sciences td {
  background: rgba(203, 125, 49, 0.1);
}

.mv_banner {
  position: relative;
  padding: 20px 0;
}
.mv_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  background: #f4f4f4;
  z-index: -1;
}
.mv_banner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 769px) {
  .mv_banner ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mv_banner ul li img {
  width: 100%;
}

.nav_course {
  padding: 40px 0;
  position: relative;
}
.nav_course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100%;
  background: #f4f4f4;
  z-index: -1;
}
.nav_course__title {
  padding: 0 1.25em;
  border-radius: 3px;
  background: rgba(140, 193, 74, 0.2);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
  height: 3.25em;
  line-height: 3.25em;
}
.nav_course__title:hover {
  background: rgba(255, 255, 255, 0.9);
}
.nav_course__contents {
  display: flex;
  gap: 40px;
  margin-bottom: 0 !important;
}
@media (max-width: 769px) {
  .nav_course__contents {
    flex-direction: column;
  }
}
.nav_course__block {
  width: 100%;
}
.nav_course li {
  margin: 0;
}
.nav_course li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 0;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
.nav_course li a[target=_blank]::before {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(./../images/icon_elink_green.png) no-repeat center center;
  background-size: cover;
  border: none;
}
.nav_course li a[target=_blank]::after {
  display: none;
}
.nav_course__name span, .nav_course__name a {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 0;
  color: #111;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  border-bottom: 2px solid #ccc;
}
.nav_course li a,
.nav_course .nav_course__name a {
  transition: all 0.3s ease;
}
.nav_course li a:hover,
.nav_course .nav_course__name a:hover {
  background: rgba(255, 255, 255, 0.8);
}
.nav_course li a::before,
.nav_course .nav_course__name a::before {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  content: "";
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 5px solid #8CC14A;
}
.nav_course li a::after,
.nav_course .nav_course__name a::after {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translate(0, -50%);
  content: "";
  width: 12px;
  height: 1px;
  border-left: 10px solid #8CC14A;
}

.banner {
  position: relative;
  padding: 20px 0;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  background: #f4f4f4;
  z-index: -1;
}
.banner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.banner ul li img {
  width: 100%;
}

.inner_base {
  width: 100%;
  max-width: min(1160px, 92%);
  margin: 0 auto;
}
@media (max-width: 769px) {
  .inner_base {
    max-width: none;
    width: min(92%, 100% - 40px);
  }
}
.inner_base.is-max {
  max-width: 1160px;
}
@media (max-width: 769px) {
  .inner_base.is-max {
    width: 100%;
  }
}
.inner_base.is-sp-max {
  width: 100%;
}

@media (max-width: 769px) {
  .inner_sp_w100 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.new-news {
  position: relative;
  padding: 40px 0 90px;
}
@media (max-width: 769px) {
  .new-news {
    margin: 0 auto;
    padding: 20px 0 40px;
  }
}
@media (max-width: 769px) {
  .new-news_wrap {
    position: relative;
  }
}
.new-news_con {
  margin: 50px 0 0;
}
@media (max-width: 769px) {
  .new-news_con {
    margin: 30px 0;
  }
}
.new-news_tab {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .new-news_tab {
    margin-bottom: 22px;
    padding: 0 max(20px, 4%);
  }
}
.new-news_tab > div {
  width: calc((100% - 5px) / 2);
  cursor: pointer;
}
.new-news_tab > div span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  background: #F0F0EE;
  color: #3E3A39;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: none;
  transition: all 0.5s ease;
}
@media (max-width: 769px) {
  .new-news_tab > div span {
    padding: 10px 0;
    font-size: 0.687rem;
    letter-spacing: 0.03em;
  }
}
.new-news_tab > div span::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: transparent;
  transition: all 0.5s ease;
}
@media (max-width: 769px) {
  .new-news_tab > div span::after {
    border-width: 10px 7px 0 7px;
  }
}
.new-news_tab > div span.active {
  background: #3E3A39;
  color: #fff;
}
.new-news_tab > div span.active::after {
  border-color: #3E3A39 transparent transparent transparent;
}
.new-news_list {
  border: 1px solid #ccc;
}
@media (max-width: 769px) {
  .new-news_list {
    border-right: none;
    border-left: none;
  }
}
@media (max-width: 769px) {
  .new-news_item {
    width: 100%;
    padding: 18px max(4%, 20px);
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 769px) {
  .new-news_item:last-of-type {
    border-bottom: none;
  }
}
@media (max-width: 769px) {
  .new-news_item_date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }
  .new-news_item_date time {
    color: #666;
    font-size: 0.812rem;
    font-weight: 500;
  }
}
@media (max-width: 769px) {
  .new-news_item_cate {
    min-width: 70px;
    margin-left: 11px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    color: #8CC14A;
    border: 1px solid #8CC14A;
    text-decoration: none;
  }
  .new-news_item_cate.recruitment {
    color: #3E3A39;
    background: #F0F0EE;
    border: 1px solid #F0F0EE;
  }
  .new-news_item_cate.event {
    color: #00a0e9;
    border: 1px solid #00a0e9;
  }
  .new-news_item_cate.topics {
    color: #8CC14A;
    border: 1px solid #8CC14A;
  }
  .new-news_item_cate.important {
    color: #c30d23;
    border: 1px solid #c30d23;
  }
}
@media (max-width: 769px) {
  .new-news_item_ttl {
    font-size: 0.812rem;
  }
  .new-news_item_ttl_item_icon_new {
    display: inline-block;
    color: #C00;
    font-size: 0.65rem;
    margin-left: 0.3em;
  }
  .new-news_item_ttl_item_icon_new:before {
    content: "NEW";
  }
}
@media (min-width: 770px) {
  .new-news .tab_pnl .new-news_item {
    display: flex;
    align-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #ccc;
  }
  .new-news .tab_pnl .new-news_item:last-of-type {
    border-bottom: none;
  }
  .new-news .tab_pnl .new-news_item_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 25px;
  }
  .new-news .tab_pnl .new-news_item_date time {
    color: #666;
    font-weight: 500;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate {
    min-width: 95px;
    margin-left: 20px;
    padding: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    color: #8CC14A;
    border: 1px solid #8CC14A;
    text-decoration: none;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate.recruitment {
    color: #3E3A39;
    background: #F0F0EE;
    border: 1px solid #F0F0EE;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate.event {
    color: #00a0e9;
    border: 1px solid #00a0e9;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate.topics {
    color: #8CC14A;
    border: 1px solid #8CC14A;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate.important {
    color: #c30d23;
    border: 1px solid #c30d23;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate.category-health_sciences {
    color: #eb8724;
    border: 1px solid #eb8724;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate.category-medicine {
    color: #00a0e9;
    border: 1px solid #00a0e9;
  }
  .new-news .tab_pnl .new-news_item_date .new-news_item_cate.category-graduate {
    color: #2a8756;
    border: 1px solid #2a8756;
  }
  .new-news .tab_pnl .new-news_item_ttl {
    padding: 0 10px;
  }
  .new-news .tab_pnl .new-news_item_ttl .new-news_item_icon_new {
    display: inline-block;
    color: #C00;
    font-size: 0.75em;
    margin-left: 0.3em;
  }
  .new-news .tab_pnl .new-news_item_ttl .new-news_item_icon_new:before {
    content: "NEW";
  }
}
.new-news .more {
  position: absolute;
  top: 60px;
  right: 0;
}
@media (max-width: 769px) {
  .new-news .more {
    position: relative;
    top: 0;
    right: 0;
    width: min(100%, 260px);
    margin: 0 auto;
  }
}
.new-news .more a {
  position: relative;
  display: flex;
  align-items: center;
  color: #666;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
@media (min-width: 770px) {
  .new-news .more a {
    font-size: 0.875rem;
  }
}
@media (max-width: 769px) {
  .new-news .more a {
    justify-content: center;
    width: 100%;
    padding: 15px 10px;
    background: #2b8756;
    color: #fff;
    margin-top: 30px;
    border-radius: 3px;
  }
}
.new-news .more a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: url(./../images/icon_archive.svg) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}
.new-news .more a:hover {
  text-decoration: underline;
}

.mv_sub {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 769px) {
  .mv_sub {
    height: 280px;
    max-height: 100svh;
  }
}
@media (min-width: 770px) {
  .mv_sub.is-min {
    height: 400px;
  }
}
.mv_sub::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
}
.mv_sub h1 {
  position: absolute;
  z-index: 3;
  width: 100%;
  text-align: center;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 769px) {
  .mv_sub h1 {
    font-size: min(40px, 7vw);
  }
}

.mv_slider {
  width: 100%;
  height: 600px;
}
.mv_slider.is-min {
  height: 400px;
}
@media (max-width: 769px) {
  .mv_slider {
    height: 280px;
  }
}
.mv_slider .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-controls {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  pointer-events: none;
}
.swiper-controls .swiper-pagination,
.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
  pointer-events: auto;
}

.swiper-button-next, .swiper-button-prev {
  color: #2a8756 !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-pagination-bullet-active {
  background: #2a8756 !important;
}

.course .title_main {
  margin-bottom: 60px;
}
@media (max-width: 769px) {
  .course .title_main {
    margin-bottom: 30px;
  }
}
.course .title_sub {
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  .course .title_sub {
    margin-bottom: 24px;
  }
}

.course_list {
  display: flex;
  align-items: center;
  gap: min(70px, 6vw);
}
@media (max-width: 769px) {
  .course_list {
    align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .course_list {
    display: block;
    margin-top: 60px;
  }
}
@media (min-width: 770px) {
  .course_list:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.course_list.is_medicine .course_list_title::before {
  background: #00a0e9;
}
.course_list.is_medicine .course_list_link.is-key a {
  background: #00a0e9;
}
.course_list.is_health_sciences .course_list_title::before {
  background: #eb8724;
}
.course_list.is_health_sciences .course_list_link.is-key a {
  background: #eb8724;
}
.course_list.is_graduate .course_list_title::before {
  background: #2a8756;
}
.course_list.is_graduate .course_list_link.is-key a {
  background: #2a8756;
}
.course_list_wrap {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 680px) {
  .course_list_wrap {
    margin-top: 0;
    display: block;
    gap: 0;
  }
}
.course_list_img {
  flex: 1;
}
@media (max-width: 769px) {
  .course_list_img {
    margin-top: 70px;
  }
}
@media (max-width: 680px) {
  .course_list_img {
    margin-top: 20px;
  }
}
.course_list_img img {
  width: 100%;
}
.course_list_contents {
  width: min(600px, 60%);
}
@media (max-width: 680px) {
  .course_list_contents {
    width: 100%;
  }
}
.course_list_title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
}
@media (max-width: 680px) {
  .course_list_title {
    font-size: 1.2rem;
    gap: 20px;
  }
}
.course_list_title::before {
  content: "";
  width: 5px;
  height: auto;
  background: #8CC14A;
  display: block;
}
@media (max-width: 680px) {
  .course_list_title::before {
    width: 4px;
  }
}
.course_list_txt {
  margin-top: 20px;
  line-height: 2;
}
@media (max-width: 769px) {
  .course_list_txt {
    font-size: 0.875rem;
  }
}
.course_list_links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
@media (max-width: 769px) {
  .course_list_links {
    font-size: 0.875rem;
    flex-direction: column;
  }
}
.course_list_link {
  width: 100%;
}
.course_list_link.is-key a {
  color: #fff;
}
.course_list_link.is-half {
  width: calc((100% - 10px) / 2);
}
@media (min-width: 770px) {
  .course_list_link.is-half-pc {
    width: calc((100% - 10px) / 2);
  }
}

.course_detail {
  margin-bottom: 100px;
}
@media (max-width: 769px) {
  .course_detail {
    margin-bottom: 50px;
  }
}
@media (max-width: 769px) {
  .course_detail.is-border {
    border-bottom: 1px solid #ccc;
  }
}
.course_detail__wrap {
  position: relative;
  display: flex;
  gap: 70px;
  margin-bottom: 60px;
  align-items: center;
}
@media (max-width: 769px) {
  .course_detail__wrap {
    display: block;
    margin-bottom: 24px;
  }
}
.course_detail__text {
  flex: 1;
  line-height: 2;
  font-size: 1rem;
}
@media (max-width: 769px) {
  .course_detail__text {
    margin-top: 24px;
    font-size: 0.875rem;
  }
}
.course_detail__img {
  width: min(650px, 60%);
}
@media (max-width: 769px) {
  .course_detail__img {
    width: 100%;
  }
}
.course_detail__img img {
  width: 100%;
}

.accordion_box .accordion_box-check {
  display: none;
}
.accordion_box .accordion_box-label {
  position: relative;
  display: block;
  cursor: pointer;
}
.accordion_box .accordion_box-label::after, .accordion_box .accordion_box-label::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background: #008E66;
  transition: all 0.3s;
}
.accordion_box .accordion_box-label::after {
  transform: rotate(90deg);
}
.accordion_box .accordion_box-con {
  height: 0;
  margin: 0;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}
.accordion_box .accordion_box-con figure {
  width: 310px;
  height: auto;
  margin-right: 40px;
}
.accordion_box .accordion_box-check:checked + .accordion_box-label + .accordion_box-con {
  height: 100%;
  opacity: 1;
  margin-top: 30px;
  margin-bottom: 50px;
  visibility: visible;
}
.accordion_box .accordion_box-check:checked + .accordion_box-label::before {
  transform: rotate(90deg) !important;
}

.introduction_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .introduction_box {
    flex-direction: column;
  }
}
.introduction_box figure {
  flex-shrink: 0;
  width: 260px;
  height: auto;
  margin-right: 30px;
}
@media (max-width: 769px) {
  .introduction_box figure {
    width: 70%;
    margin: 0 auto 20px !important;
  }
}
.introduction_box figure img {
  display: block;
  width: 100%;
  height: auto;
}
.introduction_box ul {
  display: flex;
  flex-wrap: wrap;
  align-self: baseline;
  width: 100%;
  margin: 0 !important;
}
@media (max-width: 769px) {
  .introduction_box ul {
    width: 100%;
    flex-direction: column;
  }
}
.introduction_box ul li {
  position: relative;
  width: calc((100% - 30px) / 2);
  margin: 0 30px 0 0 !important;
}
@media (max-width: 769px) {
  .introduction_box ul li {
    width: 100%;
  }
}
.introduction_box ul li:nth-child(2n) {
  margin-right: 0 !important;
}
.introduction_box ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 769px) {
  .introduction_box ul li a {
    padding: 20px 30px 20px 0;
  }
}
.introduction_box ul li a::before {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  content: "";
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 5px solid #8CC14A;
}
.introduction_box ul li a::after {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translate(0, -50%);
  content: "";
  width: 12px;
  height: 1px;
  border-left: 10px solid #8CC14A;
}
.introduction_box ul li.link::before {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(./../images/icon_elink_green.png) no-repeat center center;
  background-size: cover;
}
.introduction_box ul li.link a::before, .introduction_box ul li.link a::after {
  display: none;
}