@charset "UTF-8";
.pc {
  display: block;
}
@media all and (max-width: 992px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media all and (max-width: 992px) {
  .tb {
    display: block;
  }
}

.sp {
  display: none;
}
@media all and (max-width: 520px) {
  .sp {
    display: block;
  }
}

/*===============
internship
===============*/
@media all and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-size: 16px;
  line-height: 1.7;
  background: #fdfdfd;
}
@media all and (max-width: 520px) {
  body {
    font-size: 14px;
  }
}

.wrapper {
  min-width: auto;
}

main {
  padding-top: 5rem;
}
@media all and (max-width: 992px) {
  main {
    padding-top: 90px;
  }
}
@media all and (max-width: 520px) {
  main {
    padding-top: 50px;
  }
}

a {
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media all and (max-width: 520px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

*:focus-visible {
  outline: auto;
}

/*===============
header
===============*/
header {
  width: 100%;
  height: 5rem;
  background: #fff;
  box-shadow: 0 0 10px rgba(35, 35, 35, 0.5);
  z-index: 10;
  padding: 0;
}
@media all and (max-width: 992px) {
  header {
    min-width: 100%;
    height: 90px;
  }
}
@media all and (max-width: 520px) {
  header {
    height: 50px;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
}

.header-logo {
  width: 240px;
}
@media all and (max-width: 1120px) {
  .header-logo {
    padding-left: 2rem;
  }
}
@media all and (max-width: 992px) {
  .header-logo {
    padding-left: 1.5rem;
  }
}
@media all and (max-width: 520px) {
  .header-logo {
    width: auto;
    padding-left: 1rem;
    flex: 0 0 50%;
  }
}

.header-nav {
  flex-grow: 2;
}
.header-nav__main {
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
}
@media all and (max-width: 520px) {
  .header-nav__main {
    display: none;
  }
}
.header-nav__main li a {
  padding: 1rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #002b68;
}
.header-nav__main li a:hover {
  color: #0090db;
}

.header-entry {
  position: relative;
  height: 100%;
}
.header-entry::before {
  content: '';
  background: rgba(253, 253, 253, 0.1);
  width: 80%;
  height: 100%;
  position: absolute;
  right: 50%;
  transform: skewX(-45deg);
  pointer-events: none;
}
.header-entry a {
  min-width: 10rem;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: #e29e21;
  color: #fdfdfd;
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
.header-entry a:hover span::before, .header-entry a:focus-visible span::before {
  top: 60%;
}
.header-entry a span {
  position: relative;
  padding-right: 2rem;
}
@media all and (max-width: 992px) {
  .header-entry a span {
    padding-right: 1.5rem;
  }
}
.header-entry a span::before {
  content: '';
  background: url(../img/internship/icon_arrow_w.svg) no-repeat center center/contain;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: top .3s;
}

/*===============
footer
===============*/
footer {
  padding: 0;
  background: #002b68;
  color: #fdfdfd;
  font-size: .9rem;
}
@media all and (max-width: 992px) {
  footer {
    height: auto;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 0;
}
.footer-inner::after {
  content: none;
}
@media all and (max-width: 1120px) {
  .footer-inner {
    padding: 2rem;
  }
}
@media all and (max-width: 992px) {
  .footer-inner {
    padding: 1.5rem;
    flex-wrap: wrap;
  }
}

.footer-logo .recruit {
  display: inline-block;
  width: 230px;
}
.footer-logo .twitter {
  display: inline-block;
  width: 2rem;
  margin-left: 2rem;
}

.footer-totec {
  position: relative;
  padding-right: 2rem;
}
.footer-totec::before {
  content: '';
  background: url(../img/internship/icon_blank_w.svg) no-repeat center center/contain;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  right: 0;
}
.footer-totec a {
  color: #fdfdfd;
}
@media all and (max-width: 520px) {
  .footer-totec {
    margin-top: 1rem;
  }
}

.footer-copyright {
  text-align: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: 1rem 0;
}

.js-pagetop-btn {
  position: fixed;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #002b68;
  border-radius: 50%;
  box-shadow: 0 0 1rem rgba(253, 253, 253, 0.2);
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 5;
}
.js-pagetop-btn img {
  transform: rotate(180deg);
  width: 50%;
}

/*===============
common
===============*/
.inner-wrap {
  max-width: 1120px;
  margin: 0 auto;
  transform: skewY(10deg);
}
@media all and (max-width: 1120px) {
  .inner-wrap {
    margin: 0 2rem;
  }
}
@media all and (max-width: 992px) {
  .inner-wrap {
    margin: 0 1.5rem;
  }
}
@media all and (max-width: 520px) {
  .inner-wrap {
    margin: 0 1rem;
  }
}

.headline-l {
  display: flex;
  align-items: center;
  padding-top: 4rem;
  margin-bottom: 2rem;
}
.headline-l span {
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  color: #0090db;
}
@media all and (max-width: 520px) {
  .headline-l span {
    font-size: 10vw;
  }
}
.headline-l em {
  display: inline-block;
  margin-left: 2rem;
  color: #002b68;
  font-weight: 700;
  line-height: 4rem;
}
@media all and (max-width: 520px) {
  .headline-l em {
    margin-left: 1rem;
  }
}
.headline-m {
  margin: 3rem auto 2rem;
  text-align: center;
}
.headline-m span {
  position: relative;
  color: #002b68;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 1;
}
@media all and (max-width: 520px) {
  .headline-m span {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.headline-m span::before {
  content: '';
  background: url(../img/internship/bg_marker.svg) no-repeat center bottom/contain;
  width: 250px;
  height: 2rem;
  opacity: .5;
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: rotate(-5deg) translateX(-50%);
  z-index: -1;
}
@media all and (max-width: 520px) {
  .headline-m span::before {
    width: 70vw;
  }
}
.headline-lead strong {
  display: inline-block;
  padding: 0 .25rem;
  color: #e29e21;
  font-weight: 700;
  font-size: 1.1rem;
}

.list-disc li {
  position: relative;
  padding-left: 1rem;
}
.list-disc li::before {
  content: '';
  background: #0090db;
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .8rem;
}

.font-s {
  font-size: .9rem;
}

.font-alphabet {
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
}

/*===============
contents
===============*/
.kv {
  position: relative;
  height: 80vh;
  background: #002b68;
  display: grid;
  place-items: center;
}
.kv::before {
  content: '';
  background: #0090db;
  width: 120%;
  height: 115%;
  position: absolute;
  right: 50%;
  transform: skewX(-30deg);
}
@media all and (max-width: 520px) {
  .kv::before {
    width: 150%;
    height: 100%;
    transform: skewX(-45deg);
  }
}
.kv-inner {
  position: relative;
  color: transparent;
  background-image: linear-gradient(120deg, #fdfdfd 0 50%, #0090db 50%);
  -webkit-background-clip: text;
  text-align: center;
}
@media all and (max-width: 520px) {
  .kv-inner {
    background-image: linear-gradient(135deg, #fdfdfd 0 50%, #0090db 50%);
  }
}
.kv-inner::after {
  content: '';
  background: linear-gradient(120deg, #0090db 50%, #fdfdfd 0 50%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media all and (max-width: 520px) {
  .kv-inner::after {
    background: linear-gradient(135deg, #0090db 50%, #fdfdfd 0 50%);
  }
}
.kv-inner > * {
  width: max-content;
  margin: 0 auto;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}
@media all and (max-width: 520px) {
  .kv-inner > * {
    font-size: 5vw;
  }
}
.kv-inner p {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, sans-serif;
  letter-spacing: 0;
  margin-bottom: 2rem;
}
.kv-inner em {
  font-size: 4rem;
  line-height: 1.3;
}
@media all and (max-width: 520px) {
  .kv-inner em {
    font-size: 8vw;
  }
}
.kv-headline {
  display: initial;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  font-size: 2.5rem;
}
@media all and (max-width: 520px) {
  .kv-headline {
    font-size: 8vw;
    line-height: 1.3;
  }
}

.about {
  position: relative;
  padding: 8rem 0 4rem;
  transform: skewY(-10deg);
  z-index: 2;
}
@media all and (max-width: 520px) {
  .about {
    padding: 4rem 0;
  }
}

.about-wrap {
  background: #fdfdfd;
  border: 3px #0090db solid;
  border-radius: 10px;
  padding: 0 3rem 3rem;
  transform: skewY(10deg);
}
@media all and (max-width: 520px) {
  .about-wrap {
    padding: 0 1rem 1rem;
  }
}
.about-wrap .headline-l {
  padding-top: 3rem;
}
@media all and (max-width: 520px) {
  .about-wrap .headline-l {
    padding-top: 1rem;
  }
}

.about-point {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-point__item {
  width: calc((100% - 2rem) / 2);
  background: rgba(0, 144, 219, 0.05);
  border-radius: 10px;
  border-bottom: 3px #002b68 solid;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media all and (max-width: 992px) {
  .about-point__item {
    width: 100%;
  }
}
/*20230518*/
.about-point__item:last-child{
  flex: 0 0 50%;
  margin: auto;
}
@media all and (max-width: 992px) {
  .about-point__item:last-child{
    flex: initial;
  }
}
@media all and (max-width: 520px) {
  .about-point__item {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.about-point__item dt {
  position: relative;
  margin-bottom: .5rem;
}
.about-point__item dt em {
  color: #002b68;
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: 2px #0090db solid;
  padding-bottom: 4px;
  margin-left: 1rem;
}
@media all and (max-width: 520px) {
  .about-point__item dt em {
    font-size: 1.1rem;
  }
}
.about-point__num {
  position: relative;
  color: #0090db;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.25rem;
  vertical-align: middle;
}
@media all and (max-width: 520px) {
  .about-point__num {
    font-size: 1.75rem;
  }
}
.about-point__num::before {
  content: 'point';
  font-size: .9rem;
  letter-spacing: .05em;
  position: absolute;
  top: -1rem;
}

.about-overview__list {
  display: flex;
  flex-wrap: wrap;
}
.about-overview__list > dt {
  flex: 0 0 30%;
  border-top: 2px #002b68 solid;
  padding: 2rem 0;
  color: #002b68;
  font-weight: 700;
  font-size: 1.1rem;
}
@media all and (max-width: 992px) {
  .about-overview__list > dt {
    flex: 0 0 20%;
  }
}
@media all and (max-width: 520px) {
  .about-overview__list > dt {
    flex: 0 0 100%;
    border-top: none;
    padding: 1rem 0;
    position: relative;
  }
  .about-overview__list > dt::before, .about-overview__list > dt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
  }
  .about-overview__list > dt::before {
    background: #002b68;
    width: 30%;
  }
  .about-overview__list > dt::after {
    background: rgba(0, 144, 219, 0.2);
    width: 100%;
  }
}
.about-overview__list > dd {
  flex: 2 0 70%;
  border-top: 2px rgba(0, 144, 219, 0.2) solid;
  padding: 2rem;
}
@media all and (max-width: 992px) {
  .about-overview__list > dd {
    flex: 2 0 80%;
  }
}
@media all and (max-width: 520px) {
  .about-overview__list > dd {
    flex: 2 0 100%;
    border-top: none;
    padding: 0 0 1rem;
  }
}
.about-overview__list--inner {
  display: flex;
  flex-wrap: wrap;
}
.about-overview__list--inner dt {
  flex: 0 0 20%;
  font-weight: 700;
}
@media all and (max-width: 520px) {
  .about-overview__list--inner dt {
    flex: 0 0 100%;
  }
}
.about-overview__list--address {
  flex: 0 0 50%;
  margin-bottom: 1rem;
}
@media all and (max-width: 992px) {
  .about-overview__list--address {
    flex: 0 0 60%;
  }
}
@media all and (max-width: 520px) {
  .about-overview__list--address {
    flex: 0 0 80%;
  }
}
.about-overview__list--address em {
  font-weight: 700;
}
.about-overview__list--map {
  flex: 0 0 20%;
}
.about-overview__list--map a {
  padding: 0 1rem;
  background: #0090db;
  color: #fdfdfd;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-person {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
}
@media all and (max-width: 992px) {
  .about-person {
    grid-template-columns: 55% 45%;
    column-gap: 2rem;
  }
}
@media all and (max-width: 520px) {
  .about-person {
    display: block;
  }
}
.about-person__img {
  margin-top: 3rem;
  grid-column: 1 / 3;
}
.about-person__txt {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
.about-person__txt .headline-m {
  text-align: left;
}
.about-person__txt .headline-m span::before {
  bottom: -.25rem;
  left: -1rem;
  transform: rotate(-5deg) translateX(0);
}
.about-person__txt .list-disc {
  margin: 1rem 0;
  padding-left: 2rem;
}
.about-person__blog {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  place-self: end;
}
@media all and (max-width: 520px) {
  .about-person__blog {
    margin-top: 2rem;
  }
}
.about-person__blog--lead {
  text-align: center;
  font-weight: 700;
}
.about-person__blog--lead span {
  position: relative;
  padding: 0 1rem;
  color: #002b68;
}
.about-person__blog--lead span::before, .about-person__blog--lead span::after {
  content: '';
  background: #0090db;
  width: 1px;
  height: 1.5rem;
  position: absolute;
  top: .1rem;
}
.about-person__blog--lead span::before {
  left: 0;
  transform: rotate(-30deg);
}
.about-person__blog--lead span::after {
  right: 0;
  transform: rotate(30deg);
}
.about-person__blog--bnr {
  display: block;
  width: 80%;
  margin: 1rem auto;
}
@media all and (max-width: 520px) {
  .about-person__blog--bnr {
    width: 100%;
  }
}
.about-person__blog--bnr figure {
  box-shadow: 0 0 1rem rgba(0, 43, 104, 0.2);
}
.about-person__blog--twitter {
  text-align: center;
}
.about-person__blog--twitter a {
  position: relative;
  padding-left: 3rem;
  color: #002b68;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  font-weight: 600;
  font-size: 1.25rem;
}
.about-person__blog--twitter a::before {
  content: '';
  background: url(../img/internship/icon_x_black.svg) no-repeat center center/contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: .1rem;
  left: 0;
}
.about-person__blog--twitter a span {
  position: relative;
  padding-left: 1rem;
}
.about-person__blog--twitter a span::before, .about-person__blog--twitter a span::after {
  content: '';
  background: #0090db;
  width: 1.5rem;
  height: 1px;
  position: absolute;
  left: 0;
}
.about-person__blog--twitter a span::before {
  transform: rotate(-30deg);
}
.about-person__blog--twitter a span::after {
  bottom: -.5rem;
  transform: rotate(30deg);
}

.program {
  position: relative;
  padding: 0 0 4rem;
  background: #0090db;
  transform: skewY(-10deg);
  z-index: 1;
}
.program .headline-l span {
  position: relative;
  background-image: linear-gradient(170deg, #0090db 0 29.5%, #fdfdfd 29.5%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media all and (max-width: 1120px) {
  .program .headline-l span {
    background-image: linear-gradient(170deg, #0090db 0 19.5%, #fdfdfd 19.5%);
  }
}
@media all and (max-width: 992px) {
  .program .headline-l span {
    -webkit-background-clip: unset;
    background-clip: unset;
    background: none;
    color: #fdfdfd;
  }
}
.program .headline-l span::before {
  content: '';
  background: linear-gradient(170deg, #fdfdfd 29.5%, #0090db 0 29.5%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media all and (max-width: 1120px) {
  .program .headline-l span::before {
    background: linear-gradient(170deg, #fdfdfd 19.5%, #0090db 0 19.5%);
  }
}
@media all and (max-width: 992px) {
  .program .headline-l span::before {
    background: none;
  }
}
.program .headline-l em {
  color: #fdfdfd;
}
.program .headline-m span {
  color: #fdfdfd;
}
.program .headline-m span::before {
  content: '';
  background: url(../img/internship/bg_marker_w.svg) no-repeat center bottom/contain;
}
.program .headline-lead {
  color: #fdfdfd;
}

.program-course__tab {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
@media all and (max-width: 520px) {
  .program-course__tab {
    flex-direction: column;
  }
}
.program-course__box {
  position: relative;
  width: calc((100% - 4rem) / 2);
  padding: 6.5rem 1rem 4rem;
  background: #fdfdfd;
  border-radius: 10px;
  border-bottom: 3px #002b68 solid;
}
@media all and (max-width: 520px) {
  .program-course__box {
    width: 90%;
    margin: 1rem auto 0;
    padding: 4.5rem 1rem 2.5rem;
  }
}
.program-course__box::before {
  content: '';
  background: url(../img/internship/icon_arrow.svg) no-repeat center bottom/contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom .3s;
}
@media all and (max-width: 520px) {
  .program-course__box::before {
    width: 1.5rem;
    height: 1.5rem;
    bottom: .5rem;
  }
}
.program-course__box:hover, .program-course__box:focus-visible {
  border-bottom: 3px #e29e21 solid;
  opacity: 1;
}
.program-course__box:hover::before, .program-course__box:focus-visible::before {
  bottom: .5rem;
}
.program-course__name {
  padding: 1rem 2rem;
  background: #002b68;
  color: #fdfdfd;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  top: 1rem;
  left: -1rem;
}
@media all and (max-width: 520px) {
  .program-course__name {
    padding: .5rem 2rem;
    font-size: 1.1rem;
  }
}
.program-course__name::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1rem 10px 0;
  border-color: transparent #000b1c transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.program-course__txt em {
  display: block;
  color: #0090db;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.program-course__detail {
  position: relative;
  padding: 10rem 3rem 3rem;
  margin-top: 5rem;
  background: #fdfdfd;
  border-radius: 10px;
  border-bottom: 3px #002b68 solid;
}
@media all and (max-width: 992px) {
  .program-course__detail {
    padding: 10rem 2rem 3rem;
  }
}
@media all and (max-width: 520px) {
  .program-course__detail {
    padding: 7rem 1rem 2rem;
    margin: 5rem .5rem 0;
  }
}
.program-course__detail.day1 .program-course__content {
  grid-template-rows: auto auto auto;
  grid-template-columns: 100%;
  gap: 1rem 0;
}
.program-course__detail.day1 .program-course__content dt {
  grid-row: 1 / 2;
  display: grid;
  place-items: center;
  text-align: center;
}
.program-course__detail.day1 .program-course__content--txt {
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}
.program-course__detail.day1 .program-course__content--img {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  text-align: center;
}
.program-course__detail.day1 .program-course__content--img img {
  width: 70%;
  margin: 0 auto;
}
.program-course__detail.day1 .program-course__item {
  display: flex;
  flex-direction: column;
}
.program-course__detail.day1 .program-course__item .program-course__overview {
  display: block;
}
.program-course__detail.day1 .program-course__item .program-course__overview--list {
  width: 100%;
}
.program-course__detail.day1 .program-course__item .program-course__overview .way {
  display: flex;
}
@media all and (max-width: 992px) {
  .program-course__detail.day1 .program-course__item .program-course__overview .way {
    flex-wrap: wrap;
  }
}
.program-course__detail h4 {
  padding-top: 3rem;
  width: calc(100% + 2rem);
  position: absolute;
  top: 0;
  left: -1rem;
}
@media all and (max-width: 520px) {
  .program-course__detail h4 {
    padding-top: 2rem;
  }
}
.program-course__detail h4 span {
  display: block;
  width: 100%;
  padding: 1rem 4rem;
  background: #002b68;
  color: #fdfdfd;
  font-size: 1.5rem;
  font-weight: 700;
}
@media all and (max-width: 992px) {
  .program-course__detail h4 span {
    padding: 1rem 3rem;
  }
}
@media all and (max-width: 520px) {
  .program-course__detail h4 span {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
.program-course__detail h4 span::before, .program-course__detail h4 span::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  bottom: -10px;
}
.program-course__detail h4 span::before {
  border-width: 0 1rem 10px 0;
  border-color: transparent #000b1c transparent transparent;
  left: 0;
}
.program-course__detail h4 span::after {
  border-width: 10px 1rem 0 0;
  border-color: #000b1c transparent transparent transparent;
  right: 0;
}
.program-course__content {
  display: grid;
  grid-template-rows: 2rem auto;
  grid-template-columns: auto 450px;
  gap: 1.5rem 5rem;
  margin-bottom: 2rem;
}
@media all and (max-width: 992px) {
  .program-course__content {
    grid-template-rows: 3rem auto;
    grid-template-columns: auto 45%;
    gap: 1.5rem 3rem;
  }
}
@media all and (max-width: 520px) {
  .program-course__content {
    grid-template-rows: 3rem auto auto;
    grid-template-columns: 100%;
  }
}
.program-course__content dt {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  color: #002b68;
  font-size: 1.25rem;
  font-weight: 700;
}
@media all and (max-width: 992px) {
  .program-course__content dt {
    line-height: 1.4;
  }
}
.program-course__content--txt {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
.program-course__content--img {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}
@media all and (max-width: 520px) {
  .program-course__content--img {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}
.program-course__content--img video {
  width: 100%;
}
.program-course__target {
  background: url(../img/internship/bg_bubble.svg) no-repeat center center/contain;
  filter: drop-shadow(0 0 0.5rem rgba(0, 43, 104, 0.1));
  text-align: center;
  color: #002b68;
  font-size: .9rem;
  padding: 3rem;
  position: absolute;
  top: .5rem;
  right: 1rem;
}
@media all and (max-width: 520px) {
  .program-course__target {
    font-size: .8rem;
    padding: 2.5rem;
    top: -.5rem;
    right: -2.5rem;
  }
}
.program-course__overview {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 992px) {
  .program-course__overview {
    flex-wrap: wrap;
  }
}
.program-course__overview--list {
  width: calc((100% - 4em) / 2);
}
@media all and (max-width: 992px) {
  .program-course__overview--list {
    width: 100%;
  }
}
.program-course__overview--list > dt {
  position: relative;
  /*flex: 0 0 30%;
  border-top: 2px $subColor solid;*/
  padding: 1rem 0 .5rem;
  color: #002b68;
  font-weight: 700;
  font-size: 1.1rem;
}
.program-course__overview--list > dt::before, .program-course__overview--list > dt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
}
.program-course__overview--list > dt::before {
  background: #002b68;
  width: 30%;
}
.program-course__overview--list > dt::after {
  background: rgba(0, 144, 219, 0.2);
  width: 100%;
}
.program-course__overview--list > dd {
  padding: 0 0 1rem;
}
.program-course__overview--list--inner {
  display: flex;
  flex-wrap: wrap;
}
.program-course__overview--list--inner dt {
  flex: 0 0 15%;
  font-weight: 700;
}
.program-course__overview--list--inner dd {
  flex: 2 0 75%;
}
.program-course__overview--list--inner dd span {
  display: inline-block;
  color: #0090db;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  font-weight: 600;
  padding: 0 .5rem;
  margin: 0 .5rem .25rem 0;
}
.program-course__overview--list--inner.time-table {
  margin-top: 1rem;
}
.program-course__overview--list--inner.time-table dt {
  border-bottom: 1px rgba(0, 43, 104, 0.3) solid;
  margin-bottom: 1rem;
}
.program-course__overview--list--inner.time-table dd {
  border-bottom: 1px rgba(0, 43, 104, 0.3) solid;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.program-course__way {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 9rem;
  padding-left: 1rem;
  background: #0090db;
  border-radius: 5px;
}
.program-course__way:not(:first-of-type) {
  margin-left: 1rem;
}
@media all and (max-width: 992px) {
  .program-course__way:not(:first-of-type) {
    margin: 1rem 0 0;
  }
}
@media all and (max-width: 520px) {
  .program-course__way:not(:first-of-type) {
    margin: 0 0 0 1rem;
  }
}
.program-course__way img {
  width: 2rem;
  height: 100%;
}
.program-course__way figcaption {
  flex-grow: 2;
  padding: .5rem 1rem;
  margin-left: 1rem;
  border: 2px #0090db solid;
  background: #fdfdfd;
  border-radius: 0 5px 5px 0;
  color: #0090db;
  font-weight: 700;
  text-align: center;
}
.program-course__entry {
  margin-top: 3rem;
}
.program-course__entry p {
  width: max-content;
  margin: 0 auto;
  font-size: .9rem;
  line-height: 1.5;
}
@media all and (max-width: 520px) {
  .program-course__entry p {
    width: 100%;
  }
}
.program-course__entry .entry-btn {
  position: relative;
  display: block;
  width: max-content;
  background: #e29e21;
  border-radius: 50px;
  padding: 1rem 2rem;
  color: #fdfdfd;
  text-align: center;
  margin: 1rem auto 0;
}
@media all and (max-width: 520px) {
  .program-course__entry .entry-btn {
    width: 100%;
  }
}
.program-course__entry .entry-btn:hover span::before, .program-course__entry .entry-btn:focus-visible span::before {
  top: 70%;
}
.program-course__entry .entry-btn::before {
  content: '';
  background: rgba(253, 253, 253, 0.1);
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 50%;
  transform: skewX(-45deg);
  pointer-events: none;
}
.program-course__entry .entry-btn span {
  position: relative;
  display: inline-block;
  padding-right: 2rem;
  line-height: 1.4;
}
.program-course__entry .entry-btn span::before {
  content: '';
  background: url(../img/internship/icon_arrow_w.svg) no-repeat center center/contain;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: top .3s;
}
.program-course__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media all and (max-width: 520px) {
  .program-course__wrap {
    flex-wrap: wrap;
  }
}
.program-course__item {
  width: calc((100% - 10rem) / 3);
}
@media all and (max-width: 992px) {
  .program-course__item {
    width: calc((100% - 6rem) / 3);
  }
}
@media all and (max-width: 520px) {
  .program-course__item {
    position: relative;
    width: 100%;
    padding-bottom: 2rem;
    margin-top: 2rem;
  }
  .program-course__item::before {
    content: '';
    background: #0090db;
    width: 80%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.voice {
  position: relative;
  padding: 0 0 6rem;
  transform: skewY(-10deg);
  z-index: 1;
}
@media all and (max-width: 520px) {
  .voice {
    padding: 0 0 4rem;
  }
}
.voice .headline-l span {
  position: relative;
  background-image: linear-gradient(170deg, #fdfdfd 0 36%, #0090db 36%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media all and (max-width: 1120px) {
  .voice .headline-l span {
    background-image: linear-gradient(170deg, #fdfdfd 0 20%, #0090db 20%);
  }
}
@media all and (max-width: 992px) {
  .voice .headline-l span {
    -webkit-background-clip: unset;
    background-clip: unset;
    background: none;
    color: #0090db;
  }
}
.voice .headline-l span::before {
  content: '';
  background: linear-gradient(170deg, #0090db 36%, #fdfdfd 0 36%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media all and (max-width: 1120px) {
  .voice .headline-l span::before {
    background: linear-gradient(170deg, #0090db 20%, #fdfdfd 0 20%);
  }
}
@media all and (max-width: 992px) {
  .voice .headline-l span::before {
    background: none;
  }
}

.voice-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;*/
  margin-top: 3rem;
}
@media all and (max-width: 520px) {
  .voice-list {
    justify-content: start;
  }
}
.voice-list__item {
  width: calc((100% - 6rem) / 3);
  margin: 0 1rem 2rem;
}
.voice-list__item:nth-of-type(4), .voice-list__item:nth-of-type(5) {
  margin: 0 2rem 2rem;
}
@media all and (max-width: 520px) {
  .voice-list__item:nth-of-type(4), .voice-list__item:nth-of-type(5) {
    margin: 0 1rem 2rem;
  }
}
.voice-list__item:nth-of-type(1) {
  transition-delay: calc(0ms + (100ms * 1));
}
.voice-list__item:nth-of-type(2) {
  transition-delay: calc(0ms + (100ms * 2));
}
.voice-list__item:nth-of-type(3) {
  transition-delay: calc(0ms + (100ms * 3));
}
.voice-list__item:nth-of-type(4) {
  transition-delay: calc(0ms + (100ms * 4));
}
.voice-list__item:nth-of-type(5) {
  transition-delay: calc(0ms + (100ms * 5));
}
.voice-list__item:nth-of-type(6) {
  transition-delay: calc(0ms + (100ms * 6));
}
.voice-list__item:nth-of-type(7) {
  transition-delay: calc(0ms + (100ms * 7));
}
.voice-list__item:nth-of-type(8) {
  transition-delay: calc(0ms + (100ms * 8));
}
.voice-list__item:nth-of-type(9) {
  transition-delay: calc(0ms + (100ms * 9));
}
.voice-list__item:nth-of-type(10) {
  transition-delay: calc(0ms + (100ms * 10));
}
@media all and (max-width: 992px) {
  .voice-list__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media all and (max-width: 520px) {
  .voice-list__item {
    width: 80%;
  }
  .voice-list__item:nth-of-type(2n) {
    margin-left: auto;
  }
}
.voice-list__bubble {
  position: relative;
  background: rgba(0, 144, 219, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.voice-list__bubble::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 4px 0 10px;
  border-color: rgba(0, 144, 219, 0.05) transparent transparent transparent;
  position: absolute;
  bottom: -1rem;
  left: 40%;
}
.voice-list__bubble dt {
  margin-bottom: 1rem;
}
.voice-list__bubble dt em {
  display: inline-block;
  margin-left: .25rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px #e29e21 solid;
}
.voice-list__bubble dd {
  font-size: .9rem;
}
.voice-list__who {
  text-align: right;
}
.voice-list__who img {
  width: 1.25rem;
  margin-right: .5rem;
}

.entry {
  background: rgba(0, 43, 104, 0.1);
  padding: 0 0 8rem;
  transform: skewY(-10deg);
}
@media all and (max-width: 520px) {
  .entry {
    padding: 0 0 4rem;
  }
}
.entry-list {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
@media all and (max-width: 520px) {
  .entry-list {
    flex-direction: column;
  }
}
.entry-list li {
  width: calc((100% - 6rem) / 3);
  background: #fdfdfd;
  border-radius: 10px;
}
@media all and (max-width: 520px) {
  .entry-list li {
    width: 100%;
    margin-bottom: 1rem;
    min-height: 4.5rem;
  }
}
.entry-list li a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1rem 1.5rem;
  height: 100%;
  border-radius: 10px;
  border-bottom: 3px #002b68 solid;
  text-align: center;
  color: #0090db;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.75rem;
}
.entry-list li a:hover, .entry-list li a:focus-visible {
  border-bottom: 3px #e29e21 solid;
  opacity: 1;
}
@media all and (max-width: 520px) {
  .entry-list li a {
    min-height: 5rem;
  }
}
.entry-list li a::before {
  content: '';
  background: url(../img/internship/icon_blank.svg) no-repeat center center/contain;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: .5rem;
}
.entry-list li img {
  width: auto;
  max-width: 260px;
  max-height: 3.5rem;
}
@media all and (max-width: 992px) {
  .entry-list li img {
    max-width: 10rem;
  }
}
@media all and (max-width: 520px) {
  .entry-list li img {
    max-width: 12rem;
  }
}

.contact {
  padding: 0 0 8rem;
  transform: skewY(-10deg);
}
@media all and (max-width: 520px) {
  .contact {
    padding: 0 0 4rem;
  }
}
.contact-info {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 30% 1fr 1fr;
  margin-top: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 2rem -0.5rem rgba(0, 43, 104, 0.2);
}
@media all and (max-width: 992px) {
  .contact-info {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 520px) {
  .contact-info {
    display: block;
  }
}
.contact-info dt {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  padding: 2rem;
  background: rgba(0, 144, 219, 0.1);
  font-size: 1.1rem;
}
@media all and (max-width: 992px) {
  .contact-info dt {
    grid-column: 1 / 3;
    padding: 1rem;
    text-align: center;
    border-radius: 10px 10px 0 0;
  }
}
.contact-info dt em {
  display: inline-block;
  background: #002b68;
  color: #fdfdfd;
  padding: .25rem 1rem;
  margin-bottom: .5rem;
}
@media all and (max-width: 992px) {
  .contact-info dt em {
    margin: 0 1rem 0 0;
  }
}
@media all and (max-width: 520px) {
  .contact-info dt em {
    display: block;
  }
}
.contact-info dd {
  text-align: center;
  padding: 2rem;
}
.contact-info dd p {
  font-weight: 700;
  font-size: 1.1rem;
  color: #002b68;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-info dd p span {
  position: relative;
  padding-left: 2rem;
}
.contact-info dd p span::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: .1rem;
}
.contact-info dd a {
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
  color: #0090db;
  font-weight: 700;
}
.contact-info__tel {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
@media all and (max-width: 992px) {
  .contact-info__tel {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
}
.contact-info__tel p span::before {
  background: url(../img/internship/icon_tel.svg) no-repeat center center/contain;
  transform: rotate(10deg);
  left: .25rem;
}
.contact-info__tel a {
  font-size: 2rem;
}
.contact-info__tel > span {
  font-size: .9rem;
}
.contact-info__mail {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  position: relative;
}
@media all and (max-width: 992px) {
  .contact-info__mail {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}
.contact-info__mail::before {
  content: '';
  background: #0090db;
  width: 3px;
  height: calc(100% - 4rem);
  position: absolute;
  left: 0;
}
@media all and (max-width: 520px) {
  .contact-info__mail::before {
    width: calc(100% - 4rem);
    height: 3px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contact-info__mail p span::before {
  background: url(../img/internship/icon_mail.svg) no-repeat center center/contain;
  left: 0;
}
.contact-info__mail a {
  font-size: 1.75rem;
}

/** animation
===================================*/
.fadeInLeft,
.fadeInRight,
.fadeInUp {
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease 0s;
}
.fadeInLeft.do,
.fadeInRight.do,
.fadeInUp.do {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.fadeInLeft {
  transform: translate3d(-20%, 0, 0);
}

.fadeInRight {
  transform: translate3d(20%, 0, 0);
}

.fadeInUp {
  transform: translate3d(0, 10%, 0);
}

/*# sourceMappingURL=internship.css.map */

.course-guide-wrap {
  background: #0090db;
  border: 3px #0090db solid;
  color: #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  transform: skewY(10deg);
  text-align: center;
}
.course-guide-wrap p{
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.course-guide-wrap a{
  color: #ffd17a !important;
}

.program-course__entry.closed{
text-align: center;
}

span.entry_closed{
  font-size: 1rem;
  background-color: #000b1c;
  color:#fff;
  padding: 20px 40px;
  border-radius: 50px;
}
