@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*--------------------------
共通設定
--------------------------*/
@media (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .br_pc {
    display: none;
  }
}
/*改行*/
.wbrWrap {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/*セクション切り替え*/
.contentBlc {
  padding: 5rem 0;
}
.contentBlc.bg_green {
  background: #e6fbf1;
}
.contentBlc.bg_blue {
  background: #dbf2ff;
}
.contentBlc .container {
  max-width: 106rem;
}
.contentBlc.pb_none {
  padding-bottom: 0;
}

/*「※」リスト*/
.list_asterisk li {
  padding-left: 1.25em;
  position: relative;
}
.list_asterisk li:before {
  content: "※";
  position: absolute;
  left: 0;
}
.list_asterisk li + li {
  margin-top: 0.5em;
}
.list_asterisk.fc_red {
  color: #f00;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .list_asterisk.fc_red {
    font-size: 1.6rem;
  }
}

.list_dot li {
  margin-left: 1em;
  text-indent: -1em;
}
.list_dot li:before {
  content: "・";
}
.list_dot li + li {
  margin-top: 0.5em;
}

.list_circle li {
  padding-left: 1.5em;
  position: relative;
}
.list_circle li:before {
  background: #1e3743;
  border-radius: 0.5em;
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.list_circle li + li {
  margin-top: 0.5em;
}

.dl_circle > div + div {
  margin-top: 1.5rem;
}
.dl_circle .ttl {
  color: #38a6e0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.25em;
  padding-left: 2.5rem;
  position: relative;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .dl_circle .ttl {
    font-size: 1.6rem;
  }
}
.dl_circle .ttl span {
  display: inline-block;
}
.dl_circle .ttl:before {
  background: #38a6e0;
  border-radius: 0.5em;
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  position: absolute;
  top: 0.1em;
  left: 0;
}
.dl_circle .txt {
  margin-left: 2.5rem;
}

/*「/」で横並びのリスト*/
.list_flex_slash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list_flex_slash li + li:before {
  content: "/";
  margin: 0 0.5rem;
}

/*下線（黄色）*/
.bottom_yellow {
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(20%, #fff600), color-stop(40%, transparent));
  background: linear-gradient(to top, transparent 0% 20%, #fff600 20% 40%, transparent 40% 100%);
}

/*緑・青線タイトル*/
.greenline01,
.blueline01 {
  margin-bottom: 2em;
  position: relative;
}
.greenline01__ttl,
.blueline01__ttl {
  font-size: 2.2rem;
  line-height: 1;
  padding-left: 2rem;
  position: relative;
}
.greenline01__ttl:before,
.blueline01__ttl:before {
  border-radius: 5px;
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 0.5rem;
  left: 0;
  top: 0;
}

.greenline01__ttl:before {
  border-right: solid #51ab6d 0.5rem;
}

.blueline01__ttl:before {
  border-right: solid #38a6e0 0.5rem;
}

.right_link a {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .right_link {
    margin-top: 1rem;
    text-align: right;
  }
}
@media (min-width: 768px) {
  .greenline01__ttl {
    font-size: 2.4rem;
  }
  .right_link {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .right_link a {
    font-size: 1.6rem;
  }
}
/*固定メニュー*/
.p-menu-internship {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 19;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.p-menu-internship__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-menu-internship__item {
  border: solid 1px #fff;
}
.p-menu-internship__anchor {
  display: block;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  padding: 0.9rem 0.8rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .p-menu-internship {
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .p-menu-internship .student {
    width: 70%;
  }
  .p-menu-internship .student .p-menu-internship__list {
    background: #51ab6d;
  }
  .p-menu-internship .student .p-menu-internship__item:nth-child(1) {
    width: 30vw;
  }
  .p-menu-internship .student .p-menu-internship__item:nth-child(2) {
    width: 40vw;
  }
  .p-menu-internship .company {
    width: 30%;
  }
  .p-menu-internship .company .p-menu-internship__list {
    background: #38a6e0;
  }
  .p-menu-internship .company .p-menu-internship__item {
    width: 30vw;
  }
  .p-menu-internship__list {
    border-top: solid 1px #fff;
  }
  .p-menu-internship__anchor {
    color: #fff;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .p-menu-internship {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 986px;
    top: 3.2rem;
    right: 3.2rem;
  }
  .p-menu-internship__in + div {
    margin-left: 1rem;
  }
  .p-menu-internship__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 4rem;
    border: 0.2rem solid #1e3843;
    background-color: #fff;
    overflow: hidden;
    position: relative;
  }
  .p-menu-internship__item {
    position: relative;
  }
  .p-menu-internship__item:not(:last-child):after {
    content: "";
    position: absolute;
    height: 50%;
    width: 1px;
    right: 0;
    background: #788990;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-menu-internship__anchor {
    font-size: 1.3rem;
    padding: 1.7rem 2.4rem;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .p-menu-internship__anchor.is-active {
    color: #38a6e0;
  }
}
.p-footer {
  padding: 3.6rem 0 7rem;
}
@media (min-width: 768px) {
  .p-footer {
    padding: 3.6rem 0;
  }
}

/*トップに戻るボタン*/
.backtotop {
  background: #38a6e0;
  border: solid 1px #fff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  line-height: 1;
  padding: 1em;
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  z-index: 999;
}
@media (min-width: 768px) {
  .backtotop {
    right: 3rem;
    bottom: 3rem;
  }
}
.backtotop:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  display: block;
  margin: 0 auto 5px;
  height: 12px;
  width: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*一覧リスト*/
.list_internship > li {
  background: #fff;
  position: relative;
}
.list_internship > li .status {
  border: solid 2px #1f3743;
  border-radius: 1rem;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  position: absolute;
  left: -1rem;
  top: -1rem;
}
.list_internship > li .status.recruit {
  background: #ff0;
}
.list_internship > li a {
  border: solid 2px #1f3743;
  border-radius: 1rem;
  display: block;
  overflow: hidden;
  height: 100%;
}
.list_internship > li a .type {
  color: #fff;
  font-size: 1.8rem;
  padding: 0.75rem;
  text-align: center;
}
.list_internship > li a .type.round {
  border-radius: 3rem;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  padding: 0.25rem 1rem;
}
.list_internship > li a .type.recruit-type {
  background: #efa823;
}
.list_internship > li a .type.paid-type {
  background: #51ab6d;
}
.list_internship > li a .type.job-type {
  background: #38a6e0;
}
.list_internship > li a .type.multi-type {
  background: #da748d;
}
.list_internship > li a .thumb {
  aspect-ratio: 600/405;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.list_internship > li a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.list_internship > li a .detailWrap {
  padding: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.list_internship > li a .detailWrap .ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.list_internship > li a .detailWrap .company_name {
  font-size: 1.3rem;
}
.list_internship > li a .detailWrap .deadline {
  font-size: 1.3rem;
}
.list_internship > li:hover .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.list_industry > li {
  background: #f2f2f2;
  border: solid 1px #ccc;
  border-radius: 3rem;
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding: 0.2em 1em;
}

@media (min-width: 768px) {
  .list_internship {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
  }
  .list_internship > li a .type {
    font-size: 1.8rem;
  }
  .list_internship > li a .detailWrap {
    padding: 1rem;
  }
  .list_internship > li a .detailWrap .ttl {
    font-size: 1.6rem;
  }
  .list_internship > li a .detailWrap .company_name {
    font-size: 1.4rem;
  }
  .list_internship > li a .detailWrap .deadline {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .archiveBlc .list_internship {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
/*検索ボックス*/
.searchBlc {
  background: #fff;
  border: solid 1px #dae2e6;
  border-radius: 2rem;
  padding: 2rem;
}
.searchBlc .link_search {
  margin-top: 3rem;
}
.searchBlc .link_search button {
  background: #38a6e0;
  border-radius: 1rem;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.searchBlc .link_search button:before {
  background: url(../images/internship/icon_search.svg) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 1.8rem;
  width: 1.8rem;
  margin-right: 1rem;
  margin-bottom: -0.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.searchBlc .link_search button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.searchBlc .link_search button:hover:before {
  margin-bottom: 0;
}
.searchBlc .link_search.no_link button {
  pointer-events: none;
  position: relative;
}
.searchBlc .link_search.no_link button:before {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.searchBlc .link_search.no_link button:after {
  color: #fff;
  content: "準備中です";
  display: block;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  width: 100%;
}

.searchList {
  font-size: 1.4rem;
}
.searchList .searchList_in {
  padding: 1rem 0;
}
.searchList .searchList_in + .searchList_in {
  border-top: solid 1px #ccc;
}
.searchList .searchList_in dt {
  color: #38a6e0;
  margin-bottom: 1rem;
}
.searchList .searchList_in dd {
  margin: 0;
}
.searchList {
  /*チェックボックス横並び*/
}
.searchList .checkbox-group {
  border: none;
  padding: 0;
}
.searchList .checkbox-item {
  cursor: pointer;
  display: inline-block;
  margin: 0 2rem 0 0;
  padding: 0.5rem 0;
}
.searchList {
  /*セレクトボックス（＋）*/
}
.searchList .custom-select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #566573;
  border-radius: 4px;
  max-width: 24rem;
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
  position: relative;
}
.searchList .custom-select-wrapper .custom-select {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: none;
  padding: 0.8rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 500;
  color: #566573;
}
.searchList .custom-select-wrapper .custom-select:focus {
  outline: none;
  cursor: pointer;
}
.searchList .custom-select-wrapper .select-addon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  border-left: 1px dashed #566573;
  background-color: white;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

@media (min-width: 768px) {
  .searchBlc {
    padding: 5rem;
  }
  .searchBlc .link_flow a {
    font-size: 2rem;
    max-width: 300px;
  }
  .searchBlc .link_flow a:before {
    height: 2rem;
    width: 2rem;
  }
  .searchList {
    font-size: 1.8rem;
  }
  .searchList .searchList_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 0;
  }
  .searchList .searchList_in dt {
    margin-bottom: 0;
    width: 15%;
  }
  .searchList .searchList_in dd {
    width: 85%;
  }
}
.search-selected-conditions .search-selected-title {
  background: #1e3743;
  border-radius: 0.5rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
}
.search-selected-conditions .list_search_selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3rem;
}
.search-selected-conditions .list_search_selected li + li:before {
  content: "/";
  margin: 0 0.5rem;
}

/*フェードアップ*/
.fadeInUp {
  position: relative;
  bottom: -50px;
  opacity: 0;
  -webkit-transition: bottom 1s, opacity 1s;
  transition: bottom 1s, opacity 1s;
}

.fadeInUp.show {
  bottom: 0;
  opacity: 1;
}

/*フェードアップ 順次*/
.fadeInUp_order li {
  position: relative;
  bottom: -50px;
  opacity: 0;
}

.fadeInUp_order.show li {
  bottom: 0;
  opacity: 1;
}
.fadeInUp_order.show li:nth-child(1) {
  -webkit-transition: bottom 1s, opacity 1s;
  transition: bottom 1s, opacity 1s;
}
.fadeInUp_order.show li:nth-child(2) {
  -webkit-transition: bottom 1s 0.2s, opacity 1s 0.2s;
  transition: bottom 1s 0.2s, opacity 1s 0.2s;
}
.fadeInUp_order.show li:nth-child(3) {
  -webkit-transition: bottom 1s 0.4s, opacity 1s 0.4s;
  transition: bottom 1s 0.4s, opacity 1s 0.4s;
}
.fadeInUp_order.show li:nth-child(4) {
  -webkit-transition: bottom 1s 0.6s, opacity 1s 0.6s;
  transition: bottom 1s 0.6s, opacity 1s 0.6s;
}
.fadeInUp_order.show li:nth-child(5) {
  -webkit-transition: bottom 1s 0.8s, opacity 1s 0.8s;
  transition: bottom 1s 0.8s, opacity 1s 0.8s;
}

/*--------------------------
スライド
--------------------------*/
.slideBlc {
  margin: 5rem 0;
}

/*学生向けトップ・企業向けトップ(SPのみスライド)*/
@media (max-width: 767px) {
  .internship-slider .swiper-wrapper {
    padding-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  .internship-slider .swiper-wrapper.list_internship {
    margin: 0 auto;
    max-width: 102.6rem;
    width: 100%;
  }
}
.internship-slider .swiper-wrapper .swiper-slide {
  height: auto;
}
.internship-slider .swiper-pagination .swiper-pagination-bullet {
  margin: 0 1rem;
  height: 1rem;
  width: 1rem;
}
.internship-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #38a6e0;
}

/*インターンシップ詳細*/
@media (max-width: 767px) {
  .internship-slider-single .swiper-wrapper {
    padding-bottom: 5rem;
  }
}
.internship-slider-single .swiper-wrapper .swiper-slide .img {
  border-radius: 1.5rem;
  overflow: hidden;
}
.internship-slider-single .swiper-wrapper .swiper-slide .img img {
  width: 100%;
}
.internship-slider-single .swiper-pagination-single {
  text-align: center;
}
@media (max-width: 767px) {
  .internship-slider-single .swiper-pagination-single {
    margin-top: -3rem;
  }
}
.internship-slider-single .swiper-pagination-single .swiper-pagination-bullet {
  margin: 0 1rem;
  height: 1rem;
  width: 1rem;
}
.internship-slider-single .swiper-pagination-single .swiper-pagination-bullet-active {
  background: #788990;
}

/*--------------------------
メインイメージ（学生向けトップ・企業向けトップ）
--------------------------*/
.l-main:before {
  content: none;
}

@-webkit-keyframes mainTxt {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mainTxt {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.internship_mainImgBlc {
  aspect-ratio: 767/364;
  background: url(../images/internship/mainimg_sp.webp) no-repeat center/cover;
  height: auto;
  max-height: 65rem;
  position: relative;
  width: 100%;
  z-index: 0;
}
.internship_mainImgBlc .mainttlWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}
.internship_mainImgBlc .mainttlWrap .ttl_animation {
  -webkit-animation: mainTxt 2s;
          animation: mainTxt 2s;
}
.internship_mainImgBlc .internship_mainTtl {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vw;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}
.internship_mainImgBlc .internship_subTtl {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 0.5rem;
  line-height: 1.2;
  text-shadow: 0 0 10px rgb(0, 0, 0);
  z-index: 10;
}
.internship_mainImgBlc .internship_subTtl .txt01 {
  display: block;
  font-size: 6vw;
  text-align: center;
}
.internship_mainImgBlc .internship_subTtl .txt02 {
  display: block;
  text-align: center;
  font-size: 12vw;
}
.internship_mainImgBlc .internship_subTtl .txt03 {
  display: block;
  text-align: center;
  font-size: 6vw;
}
.internship_mainImgBlc .internship_subTtl .txt04 {
  display: block;
  text-align: center;
  font-size: 8vw;
}
.internship_mainImgBlc .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.internship_mainImgBlc.student .gradient-overlay {
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(146, 233, 238, 0.7)), to(rgba(85, 135, 201, 0.7)));
  background: linear-gradient(to bottom right, rgba(146, 233, 238, 0.7), rgba(85, 135, 201, 0.7));
}
.internship_mainImgBlc.company .gradient-overlay {
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(13, 204, 255, 0.3)), to(rgba(71, 96, 255, 0.3)));
  background: linear-gradient(to bottom right, rgba(13, 204, 255, 0.3), rgba(71, 96, 255, 0.3));
}

@media (min-width: 768px) {
  .internship_mainImgBlc {
    aspect-ratio: 1300/550;
    background: url(../images/internship/mainimg.webp) no-repeat center/100%;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1365px) {
  .internship_mainImgBlc .mainttlWrap {
    padding-top: 7rem;
  }
}
@media (min-width: 768px) {
  .internship_mainImgBlc .internship_mainTtl {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
  .internship_mainImgBlc .internship_subTtl {
    font-size: 2rem;
  }
  .internship_mainImgBlc .internship_subTtl .txt01 {
    font-size: 5rem;
  }
  .internship_mainImgBlc .internship_subTtl .txt02 {
    font-size: 10rem;
  }
  .internship_mainImgBlc .internship_subTtl .txt03 {
    font-size: 5rem;
  }
  .internship_mainImgBlc .internship_subTtl .txt04 {
    display: block;
    text-align: center;
    font-size: 7.5rem;
  }
}
/*--------------------------
ページ内リンク（学生向けトップ・企業向けトップ）
--------------------------*/
.list_pageLink {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .list_pageLink {
    border: solid 1px #1f3743;
  }
}
.list_pageLink.student li {
  background: linear-gradient(45deg, #09abdf, #6bcaa1);
}
.list_pageLink.company li {
  background: linear-gradient(45deg, #0dccff, #4760ff);
}
.list_pageLink li {
  border: solid 1px #1f3743;
}
@media (max-width: 767px) {
  .list_pageLink li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.list_pageLink li a {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 1rem 0.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .list_pageLink li a {
    padding: 0.5rem 0.2rem;
    text-align: center;
  }
  .list_pageLink li a .smallTxt {
    display: block;
    font-size: 1.2rem;
    width: 100%;
  }
  .list_pageLink li a .singleTxt {
    display: block;
  }
}

@media (min-width: 768px) {
  .pageLink_blc {
    margin: 3rem 0;
  }
  .list_pageLink {
    margin: 0 auto;
    max-width: 102.6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    gap: 2rem;
  }
  .list_pageLink li {
    border: solid 3px #1f3743;
  }
  .list_pageLink li a {
    font-size: 1.8rem;
    padding: 1.5rem 4rem 1.5rem 1.5rem;
  }
  .list_pageLink li a:after {
    background: url(../images/common/icon_arrow02_white.svg) no-repeat center/1.5rem;
    border-left: dashed 1px #fff;
    content: "";
    display: block;
    height: 3rem;
    width: 4rem;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .list_pageLink li a:hover:after {
    background: url(../images/common/icon_arrow02_white.svg) no-repeat center bottom/1.5rem;
  }
}
/*--------------------------
お知らせ（学生向けトップ・企業向けトップ）
--------------------------*/
.is_newsList {
  border-radius: 10px;
  padding: 1em;
}
.is_newsList.student {
  background-color: #e6fbf1;
}
.is_newsList.student .is_newsList_in + li {
  border-top: solid 2px #d5eae1;
}
.is_newsList.company {
  background-color: #dbf2ff;
}
.is_newsList.company .is_newsList_in + li {
  border-top: solid 2px #d5e4ea;
}
.is_newsList .is_newsList_in + li {
  margin-top: 1rem;
  padding-top: 1rem;
}
.is_newsList .is_newsList_in a {
  display: block;
  padding-right: 6.2rem;
  position: relative;
}
.is_newsList .is_newsList_in a .news_detail .is-news_date {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #788990;
  width: 13em;
}
.is_newsList .is_newsList_in a .linkIcon {
  background: url("../img/icon_line01.svg") repeat-y left center;
  display: block;
  padding: 0.5em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.2rem;
  text-align: center;
}
.is_newsList .is_newsList_in a .linkIcon img {
  width: 60%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.is_newsList .is_newsList_in a .linkIcon.arrowBottom img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.is_newsList .is_newsList_in a:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.is_newsList .is_newsList_in a:hover .news_ttl01 {
  text-decoration: underline;
}
.is_newsList .is_newsList_in a:hover .linkIcon.arrowRight img {
  margin-left: 50%;
}

@media (min-width: 768px) {
  .is_newsList .is_newsList_in a .news_detail {
    display: table;
  }
  .is_newsList .is_newsList_in a .news_detail .is-news_date {
    display: table-cell;
  }
  .is_newsList .is_newsList_in a .news_detail .news_ttl01 {
    display: table-cell;
  }
}
/*--------------------------
プログラム案内（学生向けトップ・企業向けトップ）
--------------------------*/
/*アコーディオン基本設定*/
.program_accordion .accordion-section {
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 2rem 3rem;
  position: relative;
  overflow: hidden;
}
.program_accordion .accordion-section .accordion-header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.program_accordion .accordion-section .accordion-header:after {
  border-left: solid 3px #1f3743;
  border-bottom: solid 3px #1f3743;
  border-bottom-left-radius: 4px;
  content: "";
  display: block;
  height: 1.4rem;
  width: 1.4rem;
  position: absolute;
  right: 2rem;
  top: 0.5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.program_accordion .accordion-section.active .accordion-header:after {
  top: 1rem;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.program_accordion .accordion-section .accordion-content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.program_accordion .accordion-section .accordion-content .accordion-content_in {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1.5rem;
  padding: 1.5rem 0 0.5rem;
  position: relative;
}
.program_accordion .accordion-section .accordion-content .accordion-content_in:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  width: 5rem;
}
.program_accordion .recruit-type {
  background: #fcf6ec;
}
.program_accordion .recruit-type .accordion-content .accordion-content_in {
  border-top: solid 2px #ebe8e1;
}
.program_accordion .recruit-type .accordion-content .accordion-content_in:before {
  background: #efa823;
}
.program_accordion .paid-type {
  background: #e6fbf1;
}
.program_accordion .paid-type .accordion-content .accordion-content_in {
  border-top: solid 2px #d5eae1;
}
.program_accordion .paid-type .accordion-content .accordion-content_in:before {
  background: #51ab6d;
}
.program_accordion .job-type {
  background: #ebf5fa;
}
.program_accordion .job-type .accordion-content .accordion-content_in {
  border-top: solid 2px #d5e4ea;
}
.program_accordion .job-type .accordion-content .accordion-content_in:before {
  background: #38a6e0;
}
.program_accordion .multi-type {
  background: #fdf4f6;
}
.program_accordion .multi-type .accordion-content .accordion-content_in {
  border-top: solid 2px #f8e3e3;
}
.program_accordion .multi-type .accordion-content .accordion-content_in:before {
  background: #da748d;
}

/*学生ページでのアコーディオン枠内追加設定*/
.program_accordion.student .accordion-section {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.program_accordion.student .program_link {
  margin-top: 1.5rem;
  padding-bottom: 5px;
  text-align: right;
}
.program_accordion.student .program_link a {
  font-size: 1.3rem;
}

/*企業ページでのアコーディオン枠内追加設定*/
.program_accordion.company .company_link_wrap {
  padding-top: 2rem;
}
.program_accordion.company .company_link_wrap .entry_link a {
  border-radius: 1rem;
  color: #fff;
  display: block;
  font-size: 1.5rem;
  padding: 0.5em;
  text-align: center;
}
.program_accordion.company .company_link_wrap .entry_link a .icon_mail {
  display: inline-block;
  padding-left: 3rem;
  position: relative;
}
.program_accordion.company .company_link_wrap .entry_link a .icon_mail:before {
  background: url(../../assets/images/internship/icon_mail.svg) center/100%;
  content: "";
  display: inline-block;
  margin-right: 1rem;
  height: 1.5rem;
  width: 2.1rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotateY(0);
          transform: translateY(-50%) rotateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.program_accordion.company .company_link_wrap .entry_link a:hover {
  opacity: 0.8;
}
.program_accordion.company .company_link_wrap .entry_link a:hover .icon_mail:before {
  -webkit-transform: translateY(-50%) rotateY(360deg);
          transform: translateY(-50%) rotateY(360deg);
}
.program_accordion.company .company_link_wrap .pdf_link a {
  background: #fff;
  border: solid 1px #df4965;
  border-radius: 1rem;
  color: #df4965;
  display: block;
  font-size: 1.5rem;
  padding: 0.5em;
  text-align: center;
}
.program_accordion.company .company_link_wrap .pdf_link a .icon_pdf {
  display: inline-block;
  padding-left: 2.5rem;
  position: relative;
}
.program_accordion.company .company_link_wrap .pdf_link a .icon_pdf:before {
  background: url(../../assets/images/internship/icon_pdf.svg) center/100%;
  content: "";
  display: inline-block;
  margin-right: 1rem;
  height: 2.2rem;
  width: 1.7rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotateY(0);
          transform: translateY(-50%) rotateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.program_accordion.company .company_link_wrap .pdf_link a:hover .icon_pdf:before {
  -webkit-transform: translateY(-50%) rotateY(360deg);
          transform: translateY(-50%) rotateY(360deg);
}
.program_accordion.company .company_link_wrap .pdf_link a.no_link {
  pointer-events: none;
  position: relative;
}
.program_accordion.company .company_link_wrap .pdf_link a.no_link:before {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.program_accordion.company .company_link_wrap .pdf_link a.no_link:after {
  color: #fff;
  content: "PDF資料準備中です";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  width: 100%;
}
.program_accordion.company .recruit-type {
  border: solid 2px #efa823;
}
.program_accordion.company .recruit-type .entry_link a {
  background: #efa823;
  border: solid 1px #efa823;
}
.program_accordion.company .paid-type {
  border: solid 2px #51ab6d;
}
.program_accordion.company .paid-type .entry_link a {
  background: #51ab6d;
  border: solid 1px #51ab6d;
}
.program_accordion.company .job-type {
  border: solid 2px #38a6e0;
}
.program_accordion.company .job-type .entry_link a {
  background: #38a6e0;
  border: solid 1px #38a6e0;
}
.program_accordion.company .multi-type {
  border: solid 2px #da748d;
}
.program_accordion.company .multi-type .entry_link a {
  background: #da748d;
  border: solid 1px #da748d;
}

@media (min-width: 768px) {
  .program_accordion {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .program_accordion .accordion-section {
    margin-bottom: 0;
    padding: 2rem 3rem;
  }
  .program_accordion .accordion-section .accordion-header {
    cursor: inherit;
    font-size: 2.4rem;
  }
  .program_accordion .accordion-section .accordion-header:after {
    display: none;
  }
  .program_accordion .accordion-section .accordion-content {
    height: auto;
  }
  .program_accordion .accordion-section .accordion-content .accordion-content_in {
    font-size: 1.8rem;
  }
  .program_accordion.student .accordion-section {
    padding-bottom: 6rem;
  }
  .program_accordion.student .program_link {
    position: absolute;
    right: 3rem;
    bottom: 2rem;
  }
  .program_accordion.student .program_link a {
    font-size: 1.6rem;
  }
  .program_accordion.company .accordion-section {
    padding-bottom: 8rem;
  }
  .program_accordion.company .company_link_wrap {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    width: calc(100% - 4rem);
  }
  .program_accordion.company .company_link_wrap .entry_link a {
    font-size: 1.8rem;
  }
  .program_accordion.company .company_link_wrap .pdf_link {
    margin-top: 1rem;
  }
  .program_accordion.company .company_link_wrap .pdf_link a {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .program_accordion.company .company_link_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .program_accordion.company .company_link_wrap .entry_link {
    width: 52%;
  }
  .program_accordion.company .company_link_wrap .pdf_link {
    width: 43%;
  }
  .program_accordion.company .company_link_wrap .pdf_link a.no_link:after {
    content: "準備中です";
  }
}
/*--------------------------
　インターンシップを探す（学生向けトップ・インターンシップを探す）
--------------------------*/
.circle_search {
  position: relative;
}
.circle_search .circle_search__ttl {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  padding-left: 5rem;
}
.circle_search .circle_search__ttl:before {
  background: #fff url(../images/internship/icon_search02.svg) no-repeat center/60%;
  border-radius: 4rem;
  content: "";
  display: block;
  height: 4rem;
  width: 4rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .circle_search .circle_search__ttl {
    font-size: 3.2rem;
    padding-left: 6rem;
  }
  .circle_search .circle_search__ttl:before {
    border-radius: 5rem;
    height: 5rem;
    width: 5rem;
    top: 0;
  }
}
/*--------------------------
　コーディネーター（企業向けトップ）
--------------------------*/
.coordinatorBlc {
  background: url(../images/internship/coodinator_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 0;
}
.coordinatorBlc .coordinatorBlc_in {
  color: #fff;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  text-align: center;
  text-shadow: 0 0 1rem rgb(0, 0, 0);
  z-index: 10;
}
.coordinatorBlc .coordinatorBlc_in .txt01 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.coordinatorBlc .coordinatorBlc_in .txt02 {
  font-size: 1.5rem;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.coordinatorBlc .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.coordinatorBlc.company .gradient-overlay {
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(13, 204, 255, 0.3)), to(rgba(71, 96, 255, 0.3)));
  background: linear-gradient(to bottom right, rgba(13, 204, 255, 0.3), rgba(71, 96, 255, 0.3));
}

@media (min-width: 768px) {
  .coordinatorBlc .coordinatorBlc_in .txt01 {
    font-size: 3.2rem;
  }
  .coordinatorBlc .coordinatorBlc_in .txt02 {
    font-size: 2.2rem;
    font-weight: 400;
  }
}
/*--------------------------
　応募の流れ・プログラムの流れ（学生向けトップ・企業向けトップ）
--------------------------*/
.flowList {
  counter-reset: count-number;
  margin-bottom: 3rem;
}
.flowList .flowList_in {
  border-radius: 1rem;
  color: #fff;
  counter-increment: count-number;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .flowList .flowList_in + li {
    margin-top: 1rem;
  }
}
.flowList .flowList_in .stepImg {
  position: absolute;
  text-align: center;
}
.flowList .flowList_in .stepNum {
  font-size: 1.6rem;
  line-height: 1;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}
.flowList .flowList_in .stepNum:after {
  content: counter(count-number, decimal-leading-zero);
  font-size: 2.2rem;
  margin-left: 0.5rem;
}
.flowList .flowList_in .stepTxt {
  font-size: 1.4rem;
  line-height: 1.3;
  margin-top: 1rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}
.flowList .flowList_in .stepSubtxt {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}
.flowList .flowList_in .step_asterisk {
  margin-top: 1.5rem;
  text-align: center;
}
.flowList.student .flowList_in {
  background: linear-gradient(30deg, #09abdf, #6bcaa1);
  padding: 2rem 2rem 2rem 12rem;
}
.flowList.student .flowList_in .stepImg {
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 12rem;
}
.flowList.student .flowList_in .stepImg img {
  height: 8rem;
}
.flowList.company .flowList_in {
  background: -webkit-gradient(linear, left top, right top, from(#0d9aff), to(#4760ff));
  background: linear-gradient(90deg, #0d9aff, #4760ff);
  padding: 2rem 2rem 2rem 12rem;
}
.flowList.company .flowList_in .stepImg {
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 12rem;
}
.flowList.company .flowList_in .stepImg img {
  height: 6rem;
}

@media (min-width: 768px) {
  .flowList {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(5, 1fr);
  }
  .flowList .flowList_in {
    border-radius: 2rem;
    z-index: 10;
  }
  .flowList .flowList_in:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -1.4rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: -1;
  }
  .flowList .flowList_in .stepImg {
    position: absolute;
  }
  .flowList .flowList_in .stepNum {
    font-size: 2.1rem;
    text-align: center;
  }
  .flowList .flowList_in .stepNum:after {
    font-size: 4rem;
  }
  .flowList .flowList_in .stepTxt {
    font-size: 2rem;
    margin-top: 2rem;
    text-align: center;
  }
  .flowList .flowList_in .stepSubtxt {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .flowList.student .flowList_in {
    padding: 100px 1rem 2rem 1rem;
  }
  .flowList.student .flowList_in:not(:last-child):after {
    border-left: solid 1.5rem #48beb7;
    border-top: solid 1rem transparent;
    border-bottom: solid 1rem transparent;
  }
  .flowList.student .flowList_in .stepImg {
    top: -2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .flowList.student .flowList_in .stepImg img {
    height: auto;
  }
  .flowList.company .flowList_in {
    padding: 70px 1rem 2rem 1rem;
  }
  .flowList.company .flowList_in:not(:last-child):after {
    border-left: solid 1.5rem #4760ff;
    border-top: solid 1rem transparent;
    border-bottom: solid 1rem transparent;
  }
  .flowList.company .flowList_in .stepImg {
    top: -1rem;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
  }
  .flowList.company .flowList_in .stepImg img {
    height: auto;
  }
}
.link_flow a {
  background: #38a6e0;
  border-radius: 1rem;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  max-width: 280px;
  width: 100%;
}
.link_flow a:before {
  background: url(../images/internship/icon_search.svg) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 1.8rem;
  width: 1.8rem;
  margin-right: 1rem;
  margin-bottom: -0.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link_flow a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.link_flow a:hover:before {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .link_flow a {
    font-size: 2rem;
    max-width: 480px;
  }
  .link_flow a:before {
    height: 2rem;
    width: 2rem;
  }
}
/*--------------------------
　特徴（学生向けトップ・企業向けトップ）
--------------------------*/
.featuresBlc .featuresBlc_in {
  counter-reset: count-number;
  margin-bottom: 8rem;
  padding-top: 3rem;
}
.featuresBlc .featuresBlc_in .pointWrap {
  background: #fff;
  border-radius: 1rem;
  counter-increment: count-number;
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 7rem;
}
.featuresBlc .featuresBlc_in .pointWrap .features_head {
  padding-top: 3rem;
  position: relative;
}
.featuresBlc .featuresBlc_in .pointWrap .features_head .pointImg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.featuresBlc .featuresBlc_in .pointWrap .features_head .pointImg img {
  width: 100%;
}
.featuresBlc .featuresBlc_in .pointWrap .features_head .point {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.featuresBlc .featuresBlc_in .pointWrap .features_head .point:after {
  content: counter(count-number, decimal-leading-zero);
  font-size: 2.4rem;
  margin-left: 0.5rem;
}
.featuresBlc .featuresBlc_in .pointWrap .features_head .ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.featuresBlc .featuresBlc_in .pointWrap .features_body {
  font-weight: 400;
}
.featuresBlc .featuresBlc_in .pointWrap .features_body .coordinatorLink {
  background: #38a6e0 url(../images/internship/icon_external_w.svg) no-repeat center right 1rem/1.4rem;
  border-radius: 0.5rem;
  color: #fff;
  display: block;
  font-size: 1.4rem;
  margin-top: 1.6rem;
  padding: 1rem 3rem 1rem 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.featuresBlc .featuresBlc_in .pointWrap .features_body .coordinatorLink:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.featuresBlc .features_bottom {
  border-radius: 1rem;
  color: #fff;
  font-size: 1.6rem;
  margin-top: 10rem;
  padding: 6.5rem 1rem 2rem;
  position: relative;
  text-align: center;
}
.featuresBlc .features_bottom figure {
  position: absolute;
  top: -4rem;
}
.featuresBlc .features_bottom figure img {
  width: 100%;
}
.featuresBlc .features_bottom .pointbottom_l {
  right: 51%;
  width: 8rem;
}
.featuresBlc .features_bottom .pointbottom_r {
  left: 51%;
  width: 8rem;
}
.featuresBlc {
  /*学生向け・法人向けの色分け*/
}
.featuresBlc.student {
  background: linear-gradient(45deg, #dff9ff, #e5f8e5);
}
.featuresBlc.student .pointWrap .features_head.point01 .pointImg {
  top: -6rem;
  width: 8rem;
}
.featuresBlc.student .pointWrap .features_head.point02 .pointImg {
  top: -5rem;
  width: 10rem;
}
.featuresBlc.student .pointWrap .features_head.point03 .pointImg {
  top: -6rem;
  width: 10rem;
}
.featuresBlc.student .pointWrap .features_head .point {
  color: #51ab6d;
}
.featuresBlc.student .features_bottom {
  background: linear-gradient(45deg, #3ba8df, #6dcba0);
}
.featuresBlc.company {
  background: linear-gradient(45deg, #d0f7fd, #a4beee);
}
.featuresBlc.company .pointWrap .features_head.point01 .pointImg {
  top: -6rem;
  width: 10rem;
}
.featuresBlc.company .pointWrap .features_head.point02 .pointImg {
  top: -5rem;
  width: 10rem;
}
.featuresBlc.company .pointWrap .point {
  color: #38a6e0;
}
.featuresBlc.company .features_bottom {
  background: linear-gradient(45deg, #0dccff, #4760ff);
}
.featuresBlc.company .features_bottom a {
  background: #fff;
  border-radius: 2rem;
  color: #38a6e0;
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 1rem;
  padding: 0.25rem 2rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.featuresBlc.company .features_bottom a:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .featuresBlc .featuresBlc_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0;
  }
  .featuresBlc .featuresBlc_in.column_3 .pointWrap {
    width: 31%;
  }
  .featuresBlc .featuresBlc_in.column_2 .pointWrap {
    width: 48%;
  }
  .featuresBlc .featuresBlc_in .pointWrap {
    background: #fff;
    margin-top: 0;
    margin-bottom: 0;
    padding: 2rem;
  }
  .featuresBlc .featuresBlc_in .pointWrap .features_head {
    padding-top: 4rem;
  }
  .featuresBlc .featuresBlc_in .pointWrap .features_head .point {
    font-size: 2.1rem;
  }
  .featuresBlc .featuresBlc_in .pointWrap .features_head .point:after {
    font-size: 4rem;
  }
  .featuresBlc .featuresBlc_in .pointWrap .features_body .coordinatorLink {
    background: #38a6e0 url(../images/internship/icon_external_w.svg) no-repeat center right 1rem/1.6rem;
    color: #fff;
  }
  .featuresBlc .features_bottom {
    font-size: 2.5rem;
    margin-top: 8rem;
    padding: 2rem;
  }
  .featuresBlc .features_bottom figure {
    position: absolute;
    top: -4rem;
  }
  .featuresBlc .features_bottom figure img {
    width: 100%;
  }
  .featuresBlc .features_bottom .pointbottom_l {
    right: inherit;
    left: 3rem;
    width: 15rem;
  }
  .featuresBlc .features_bottom .pointbottom_r {
    left: inherit;
    right: 3rem;
    width: 15rem;
  }
  .featuresBlc {
    /*学生向け・法人向けの色分け*/
  }
  .featuresBlc.student .pointWrap .features_head.point01 .pointImg {
    top: -5rem;
    width: 8.4rem;
  }
  .featuresBlc.student .pointWrap .features_head.point02 .pointImg {
    top: -5rem;
    width: 12.5rem;
  }
  .featuresBlc.student .pointWrap .features_head.point03 .pointImg {
    top: -6rem;
    width: 11.6rem;
  }
  .featuresBlc.company .pointWrap .features_head.point01 .pointImg {
    top: -5rem;
    width: 12rem;
  }
  .featuresBlc.company .pointWrap .features_head.point02 .pointImg {
    top: -5.5rem;
    width: 12rem;
  }
  .featuresBlc.company .features_bottom a {
    font-size: 1.8rem;
    margin-top: 0;
  }
}
/*--------------------------
　インターンシップに関する注意事項（学生向けトップ・企業向けトップ）
--------------------------*/
.list_policy_scroll {
  background: #fff;
  border: solid 1px #ccc;
  position: relative;
  height: 30rem;
  overflow-y: scroll;
}
.list_policy_scroll:after {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background: linear-gradient(transparent, #fff);
  content: "";
  display: block;
  height: 3rem;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
}

.list_policy {
  padding: 3rem 3rem 0;
  counter-reset: count-number;
}
.list_policy .list_policy_in {
  counter-increment: count-number;
  padding-left: 2.5rem;
}
.list_policy .list_policy_in + .list_policy_in {
  margin-top: 2rem;
}
.list_policy .list_policy_in dt {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
  position: relative;
}
.list_policy .list_policy_in dt:before {
  content: counter(count-number) ".";
  position: absolute;
  left: -2.5rem;
}
.list_policy .list_policy_in dd {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 0;
}

@media (min-width: 768px) {
  .list_policy .list_policy_in + .list_policy_in {
    margin-top: 2rem;
  }
  .list_policy .list_policy_in dt {
    font-size: 2rem;
  }
  .list_policy .list_policy_in dd {
    font-size: 1.8rem;
  }
}
/*--------------------------
　よくあるご質問（学生向けトップ・企業向けトップ）
--------------------------*/
.list_faq .list_faq_in {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.5rem 5rem;
}
.list_faq .list_faq_in + .list_faq_in {
  margin-top: 2rem;
}
.list_faq .list_faq_in dt {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
  position: relative;
}
.list_faq .list_faq_in dt:before {
  border-radius: 3rem;
  content: "";
  display: block;
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 0;
  left: -3.8rem;
}
.list_faq .list_faq_in dt:after {
  content: "Q";
  font-size: 1.6rem;
  position: absolute;
  top: 0;
  left: -3rem;
}
.list_faq .list_faq_in dd {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 0;
}
.list_faq.student .list_faq_in {
  border: solid 2px #51ab6d;
}
.list_faq.student .list_faq_in dt:before {
  background: #e6fbf1;
}
.list_faq.student .list_faq_in dt:after {
  color: #51ab6d;
}
.list_faq.company .list_faq_in {
  border: solid 2px #38a6e0;
}
.list_faq.company .list_faq_in dt:before {
  background: #dbf2ff;
}
.list_faq.company .list_faq_in dt:after {
  color: #38a6e0;
}

@media (min-width: 768px) {
  .list_faq .list_faq_in {
    padding: 2rem 2rem 2rem 7rem;
  }
  .list_faq .list_faq_in dt {
    font-size: 2rem;
  }
  .list_faq .list_faq_in dt:before {
    left: -4.7rem;
  }
  .list_faq .list_faq_in dt:after {
    content: "Q";
    font-size: 1.8rem;
    left: -4rem;
  }
  .list_faq .list_faq_in dd {
    font-size: 1.8rem;
  }
  .list_faq.student .list_faq_in {
    border: solid 2px #51ab6d;
  }
  .list_faq.student .list_faq_in dt:before {
    background: #e6fbf1;
  }
  .list_faq.student .list_faq_in dt:after {
    color: #51ab6d;
  }
}
/*--------------------------
　参加企業リスト
--------------------------*/
.company_listBlc__item:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .company_listBlc__item:not(:last-child) {
    margin-bottom: 10rem;
  }
}
.company_listBlc .partner-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 1.5rem;
}
@media (min-width: 768px) {
  .company_listBlc .partner-list {
    -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr 3rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 4.8rem 3rem;
  }
}
.company_listBlc .partner-list .partner-item {
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}
.company_listBlc .partner-list .partner-item__media {
  background-color: #fff;
  border-radius: 0.8rem;
  height: 8rem;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
}
@media (min-width: 768px) {
  .company_listBlc .partner-list .partner-item__media {
    height: 11rem;
    padding: 1rem 1.5rem;
  }
}
.company_listBlc .partner-list .partner-item__media.--border {
  border: 1px solid #d6e6ed;
  border-radius: 0.8rem;
  background-color: #fff;
  overflow: hidden;
}
.company_listBlc .partner-list .partner-item__media.--noimg {
  padding: 0;
}
.company_listBlc .partner-list .partner-item__media.--noimg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.company_listBlc .partner-list .partner-item__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.company_listBlc .partner-list .partner-item__ttl {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .company_listBlc .partner-list .partner-item__ttl {
    font-size: 1.4rem;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
  }
}
.company_listBlc .partner-list .partner-item__link {
  margin-top: 1rem;
}
.company_listBlc .partner-list .partner-item .floatTxt {
  background: #efa823;
  border-radius: 3rem;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.2em 1em;
  position: absolute;
  left: 50%;
  top: 0;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15rem;
}
.company_listBlc .partner-list .partner-item .list_industry > li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.company_listBlc .partner-list .partner-item .c-link {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .company_listBlc__txt {
    font-size: 1.4rem;
  }
}
.company_listBlc__txt:not(:last-child) {
  margin-bottom: 3.2rem;
}

/*--------------------------
　一覧ページ
--------------------------*/
/*カテゴリーボタン色分け*/
.c-tab-head li.is-active a {
  background: #1e3743;
}
.c-tab-head li.is-active a.recruit-type {
  background: #efa823;
}
.c-tab-head li.is-active a.paid-type {
  background: #51ab6d;
}
.c-tab-head li.is-active a.job-type {
  background: #38a6e0;
}
.c-tab-head li.is-active a.multi-type {
  background: #da748d;
}

.p-info.internship_news .c-news__item {
  background: none;
}
.p-info.internship_news .c-news__item + .c-news__item {
  border-top: solid 1px #d6e6ed;
}

.p-internship_newsDetail {
  padding-bottom: 5rem;
}
.p-internship_newsDetail.for-students {
  background: #e6fbf1;
}
.p-internship_newsDetail.for-companies {
  background: #dbf2ff;
}
.p-internship_newsDetail .p-detail-btn__item {
  background: #fff;
}

/*--------------------------
　タイトル（企業情報詳細・インターンシップ詳細）
--------------------------*/
.header_internship .header_internship_in {
  min-height: 18.6rem;
  margin-bottom: 3rem;
  padding: 3rem 0;
  /*インターンシップ詳細*/
}
.header_internship .header_internship_in.recruitment .header_sub {
  margin-bottom: 1rem;
}
.header_internship .header_internship_in.recruitment .header_sub .release_date {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.header_internship .header_internship_in.recruitment .header_sub .release_date .separator {
  border-right: solid 1px #1e3743;
  display: inline-block;
  line-height: 1.2;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
}
.header_internship .header_internship_in.recruitment .header_sub .list_industry li {
  font-size: 1rem;
  margin-right: 1rem;
}
.header_internship .header_internship_in.recruitment .internship_ttl {
  font-size: 2.5rem;
}
.header_internship .header_internship_in.recruitment .status {
  border-radius: 3rem;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 1.5rem;
}
.header_internship .header_internship_in.recruitment .status .separator {
  border-right: solid 1px #fff;
  display: inline-block;
  line-height: 1.2;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
}
.header_internship .header_internship_in.recruitment.recruit {
  background: #fcf6ec;
}
.header_internship .header_internship_in.recruitment.recruit .status {
  background: #efa823;
}
.header_internship .header_internship_in.recruitment.paid {
  background: #e6fbf1;
}
.header_internship .header_internship_in.recruitment.paid .status {
  background: #51ab6d;
}
.header_internship .header_internship_in.recruitment.job {
  background: #ebf5fa;
}
.header_internship .header_internship_in.recruitment.job .status {
  background: #38a6e0;
}
.header_internship .header_internship_in.recruitment.multi {
  background: #fdf4f6;
}
.header_internship .header_internship_in.recruitment.multi .status {
  background: #da748d;
}
.header_internship .header_internship_in.recruitment.closed .status {
  background: #788990;
}
.header_internship .header_internship_in {
  /*企業情報*/
}
.header_internship .header_internship_in.company {
  background: #dbf2ff;
}
.header_internship .header_internship_in.company .company_name {
  font-size: 2.5rem;
  line-height: 1.3;
}
.header_internship .header_internship_in {
  /*検索結果一覧*/
}
.header_internship .header_internship_in.archive_search {
  background: linear-gradient(45deg, #c3f1c9, #c8e7ff);
  min-height: inherit;
}
.header_internship .header_internship_in {
  /*参加企業の声の一覧*/
}
.header_internship .header_internship_in.archive_report {
  background: linear-gradient(45deg, #d0f7fd, #a4beee);
  min-height: inherit;
}
.header_internship .header_internship_in.archive_report .internship_ttl {
  font-size: 2.5rem;
}
.header_internship .header_internship_in.archive_voice {
  background: linear-gradient(45deg, #c3f1c9, #c8e7ff);
  min-height: inherit;
}
.header_internship .header_internship_in.archive_voice .internship_ttl {
  font-size: 2.5rem;
}
.header_internship .header_internship_in.archive_news {
  background: #ebf5fa;
  min-height: inherit;
}
.header_internship .header_internship_in.archive_news .internship_ttl {
  font-size: 2.5rem;
}
.header_internship .header_internship_in.archive_news_student {
  background: #e6fbf2;
  min-height: inherit;
}
.header_internship .header_internship_in.archive_news_student .internship_ttl {
  font-size: 2.5rem;
}
.header_internship .header_internship_in.archive_news_company {
  background: #ebf5fa;
  min-height: inherit;
}
.header_internship .header_internship_in.archive_news_company .internship_ttl {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .header_internship .header_internship_in {
    margin-bottom: 3rem;
    padding: 6rem 0;
  }
  .header_internship .header_internship_in.recruitment .header_sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
  }
  .header_internship .header_internship_in.recruitment .header_sub .release_date {
    font-size: 1.4rem;
    margin-bottom: 0;
    margin-right: 2rem;
    margin-top: 0.5rem;
  }
  .header_internship .header_internship_in.recruitment .internship_ttl {
    font-size: 3.2rem;
  }
  .header_internship .header_internship_in.recruitment .status {
    font-size: 1.6rem;
  }
  .header_internship .header_internship_in.company .company_name {
    font-size: 3.2rem;
  }
  .header_internship .header_internship_in.archive_search h1 {
    margin-top: 5rem;
  }
  .header_internship .header_internship_in.archive_report .internship_ttl, .header_internship .header_internship_in.archive_voice .internship_ttl, .header_internship .header_internship_in.archive_news .internship_ttl, .header_internship .header_internship_in.archive_news_student .internship_ttl, .header_internship .header_internship_in.archive_news_company .internship_ttl {
    font-size: 4.5rem;
    margin-top: 5rem;
  }
}
/*応募するボタン*/
.float_recruit {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}
.float_recruit a {
  background: -webkit-gradient(linear, left top, right top, from(#6dcba0), to(#3ba8df));
  background: linear-gradient(to right, #6dcba0, #3ba8df);
  border: solid 2px #1e3743;
  border-radius: 2rem;
  -webkit-box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.3);
          box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
  height: 8rem;
  width: 8rem;
  padding-top: 0.5rem;
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.float_recruit a:after {
  background: url(../images/common/icon_arrow02_white.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.float_recruit a span {
  font-size: 2rem;
}
.float_recruit a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

@media (min-width: 768px) {
  .float_recruit {
    right: 5rem;
    bottom: 5rem;
  }
  .float_recruit a {
    border-radius: 50%;
    font-size: 2rem;
    height: 17rem;
    width: 17rem;
    padding-top: 2rem;
  }
  .float_recruit a:after {
    height: 2.9rem;
    width: 2.2rem;
    bottom: 3rem;
  }
  .float_recruit a span {
    font-size: 3rem;
  }
  .float_recruit a:hover:after {
    bottom: 2rem;
  }
}
/*--------------------------
　企業情報・インターンシップ 詳細ページ
--------------------------*/
.youtubeWrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 3rem 0;
}
.youtubeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.leadBlc .container p + p {
  margin-top: 1.6rem;
}

.infoBlc {
  padding: 2rem 0;
}
.infoBlc .container {
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .infoBlc .container {
    border: solid 1px #d5e4ea;
    padding: 5rem;
  }
}
.infoBlc .container .info_lead p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .infoBlc .container .info_lead p {
    font-size: 1.8rem;
  }
}
.infoBlc .container .wysiwygArea a {
  color: #38a6e0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.infoBlc .container .wysiwygArea a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.info_ttlWrap {
  margin-bottom: 3rem;
}
.info_ttlWrap .info_ttl {
  font-size: 3.2rem;
  font-weight: 900;
}
.info_ttlWrap .lastUpdated {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 1rem;
}
.info_ttlWrap .info_subTtl {
  color: #38a6e0;
  font-size: 1.2rem;
  font-weight: 700;
}

.official_linkBtn {
  background: #38a6e0 url(../images/internship/icon_arrow_white.svg) no-repeat right 1.5rem center/1.5rem;
  color: #fff;
  display: inline-block;
  padding: 1rem 7rem 1rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.official_linkBtn:hover {
  background: #38a6e0 url(../images/internship/icon_arrow_white.svg) no-repeat right -1.5rem center/1.5rem;
  opacity: 0.8;
}

.info_body {
  margin-top: 5rem;
}
.info_body .companyImg {
  border-radius: 1rem;
  margin: 5rem auto 0;
  max-width: 50rem;
  overflow: hidden;
}
.info_body .companyImg img {
  height: auto;
  width: 100%;
}

.overviewList {
  font-size: 1.4rem;
}
.overviewList .overviewList_in.overviewList_in {
  margin-top: 3rem;
}
.overviewList .overviewList_in dt.overview_subTtl {
  border-bottom: solid 1px #38a6e0;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 0 0 0.5rem 1em;
  position: relative;
}
.overviewList .overviewList_in dt.overview_subTtl:before {
  background: #38a6e0;
  border-radius: 2px;
  content: "";
  display: block;
  height: 0.8em;
  width: 0.8em;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.overviewList .overviewList_in dd {
  margin: 0;
}
.overviewList .overviewList_in dd .schedule_in {
  border-top: dashed 1px #d5e4ea;
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.overviewList .overviewList_in dd .schedule_in .schedule_in_ttl {
  background: #dbf2ff;
  border-radius: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 2rem;
  text-align: center;
}
.overviewList .overviewList_in dd .schedule_in .list_dot li + li {
  margin-top: 0;
}

@media (min-width: 768px) {
  .overviewList {
    font-size: 1.8rem;
  }
  .overviewList .overviewList_in dt.overview_subTtl {
    font-size: 2.2rem;
  }
  .overviewList .overviewList_in dd {
    margin: 0;
    padding: 1rem;
  }
}
.infoList {
  font-size: 1.4rem;
}
.infoList .infoList_in dt {
  padding: 1rem 0 0;
}
@media (max-width: 767px) {
  .infoList .infoList_in dt {
    font-weight: 700;
  }
  .infoList .infoList_in dt .leftLine_blue {
    display: block;
    padding-left: 1rem;
    position: relative;
  }
  .infoList .infoList_in dt .leftLine_blue:before {
    background: #38a6e0;
    content: "";
    display: block;
    height: 1.4rem;
    width: 0.3rem;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.infoList .infoList_in dd {
  border-bottom: solid 1px #d5e4ea;
  margin: 0;
  padding: 1rem 0 1rem 1rem;
}
.infoList .infoList_in dd p + p {
  margin-top: 0.5rem;
}
.infoList .infoList_in dd .googlemap {
  border-radius: 1rem;
  height: 0;
  margin-top: 1rem;
  overflow: hidden;
  padding-bottom: 20%;
  position: relative;
}
.infoList .infoList_in dd .googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.infoList .infoList_in dd .list_border_dashed li + li {
  border-top: dashed 1px #d5e4ea;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.infoList .infoList_in dd .external_linkBtn {
  background: url(../images/internship/icon_external.svg) no-repeat right center/1.6rem;
  display: inline-block;
  padding-right: 3rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.infoList .infoList_in dd .external_linkBtn:after {
  background: #38a6e0;
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.infoList .infoList_in dd .external_linkBtn:hover {
  color: #38a6e0;
}
.infoList .infoList_in dd .external_linkBtn:hover:after {
  width: 100%;
}

@media (min-width: 768px) {
  .infoList {
    font-size: 1.8rem;
  }
  .infoList .infoList_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .infoList .infoList_in dt {
    border-bottom: solid 1px #38a6e0;
    margin-right: 3%;
    padding: 1rem 0;
    width: 23%;
  }
  .infoList .infoList_in dd {
    padding: 1rem 0;
    width: 74%;
  }
}
.prev_link {
  margin: 5rem auto 8rem;
  max-width: 20rem;
}
.prev_link .prev_linkBtn {
  font-size: 1.2rem;
  background: #f4f6f7;
  border: solid 1px #dae2e6;
  border-radius: 5rem;
  display: block;
  padding: 1rem 2rem;
  text-align: center;
}
.prev_link .prev_linkBtn:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .prev_link {
    max-width: 30rem;
  }
  .prev_link .prev_linkBtn {
    font-size: 2.2rem;
    padding: 2rem 4rem;
  }
}
.hostBlc {
  background: #ebf5fa;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.hostBlc .container .host_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hostList {
    display: -ms-grid;
    display: grid;
    gap: 4rem 2rem;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .hostList > li {
    margin-bottom: 3rem;
  }
}
.hostList > li .hostList_in {
  background: #fff;
  border: solid 1px #d5e4ea;
  border-radius: 1rem;
  padding: 2rem;
}
.hostList > li .hostList_in .companyName {
  font-size: 1.8rem;
}
.hostList > li .c-link {
  margin-top: 1rem;
  text-align: right;
}
.hostList > li .c-link .icon-external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1rem;
  height: 1.3rem;
  width: 1.9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .hostList > li .c-link .icon-external {
    margin-left: 1.2rem;
    height: 1.7rem;
    width: 1.7rem;
  }
}
.hostList > li .c-link .icon-external::after {
  content: "";
  background: url("../images/internship/icon_external.svg") no-repeat center bottom/contain;
  height: 1.5rem;
  width: 1.5rem;
}
@media (min-width: 768px) {
  .hostList > li .c-link .icon-external::after {
    height: 1.7rem;
    width: 1.7rem;
  }
}
.hostList > li .host_linkBtn {
  margin-top: 0.5rem;
  text-align: right;
}
.hostList > li .host_linkBtn a {
  display: inline-block;
  font-size: 1.6rem;
  padding-right: 2.5rem;
  position: relative;
  text-decoration: underline;
}
.hostList > li .host_linkBtn a:after {
  background: url(../images/internship/icon_external.svg) no-repeat center;
  content: "";
  display: block;
  height: 1.8rem;
  width: 1.8rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hostList .list_industry li {
  font-size: 1rem;
}

.formBlc {
  padding: 2rem 0;
}
.formBlc .container {
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .formBlc .container {
    border: solid 1px #d5e4ea;
    padding: 5rem;
  }
}
.formBlc .container .form_ttl {
  font-size: 2.4rem;
  padding-bottom: 1.4rem;
  margin-bottom: 4rem;
  position: relative;
}
@media (min-width: 768px) {
  .formBlc .container .form_ttl {
    font-size: 3.2rem;
  }
}
.formBlc .container .form_ttl:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/common/icon_ttl_02.svg) no-repeat center/contain;
  width: 2.6rem;
  height: 0.2rem;
}
@media (min-width: 768px) {
  .formBlc .container .form_ttl:after {
    width: 5.1rem;
    height: 0.4rem;
  }
}
@media (max-width: 767px) {
  .contentBlc.archive_search {
    padding-top: 0;
  }
}
/*--------------------------
　参加学生の声
--------------------------*/
.voice_headBlc .voice_headBlc_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.voice_headBlc .voice_headBlc_in .imgBlc {
  width: 250px;
}
.voice_headBlc .voice_headBlc_in .imgBlc figure {
  border: solid 1px #f2f2f2;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 220px;
}
.voice_headBlc .voice_headBlc_in .imgBlc figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.voice_headBlc .voice_headBlc_in .txtBlc {
  width: calc(100% - 250px);
}
.voice_headBlc .voice_headBlc_in .txtBlc .voice_ttl {
  margin-bottom: 2.5rem;
  text-indent: -0.5em;
}
.voice_headBlc .voice_headBlc_in .txtBlc .voice_ttl:before {
  content: "「";
}
.voice_headBlc .voice_headBlc_in .txtBlc .voice_ttl:after {
  content: "」";
}
.voice_headBlc .voice_headBlc_in .txtBlc .voice_schedule {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.voice_headBlc .voice_headBlc_in .txtBlc .company_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.voice_headBlc .voice_headBlc_in .txtBlc .company_name dt {
  width: 15rem;
}
.voice_headBlc .voice_headBlc_in .txtBlc .company_name dd {
  margin: 0;
  width: calc(100% - 15rem);
}
.voice_headBlc .voice_headBlc_in .txtBlc .company_name dd span {
  display: inline-block;
}
.voice_headBlc .voice_headBlc_in .txtBlc .company_name dd span + span:before {
  content: "・";
}
.voice_headBlc .voice_headBlc_in .txtBlc .detailed_articleLink {
  color: #38a6e0;
  font-size: 1.4rem;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .voice_headBlc .voice_headBlc_in {
    display: block;
  }
  .voice_headBlc .voice_headBlc_in .imgBlc {
    margin: 0 auto 3rem;
    width: 220px;
  }
  .voice_headBlc .voice_headBlc_in .txtBlc {
    width: 100%;
  }
  .voice_headBlc .voice_headBlc_in .txtBlc .voice_schedule {
    font-size: 1.8rem;
  }
  .voice_headBlc .voice_headBlc_in .txtBlc .company_name {
    display: block;
  }
  .voice_headBlc .voice_headBlc_in .txtBlc .company_name dt {
    font-weight: bold;
    margin-bottom: 0.5em;
    width: 100%;
  }
  .voice_headBlc .voice_headBlc_in .txtBlc .company_name dt:after {
    content: "：";
  }
  .voice_headBlc .voice_headBlc_in .txtBlc .company_name dd {
    width: 100%;
  }
}
/*--------------------------
　参加企業の声
--------------------------*/
.reportImg {
  margin: 3rem auto;
  max-width: 600px;
  width: 100%;
}
.reportImg figure {
  border-radius: 1.5rem;
  overflow: hidden;
}
.reportImg figure img {
  height: auto;
  width: 100%;
}