@charset "UTF-8";
/* :root
------------------------------------------- */
:root {
  --mov-sub-header: calc((540 / 1920) * 100%);
  --fnt-notosans: "Noto Sans JP", sans-serif;
  --fnt-aboreto: "Aboreto", system-ui;
  --fnt-weight-reg: 400;
  --fnt-weight-mid: 500;
  --fnt-weight-bld: 700;
  --line-height-lg: 2;
  --line-height-md: 1.7;
  --line-height-sm: 1.5;
  --line-height-xs: 1.2;
  --clr-primary: #0050b4;
  --clr-primary-p70: #4c7baa;
  --clr-primary-p20: #ccdcf0;
  --clr-primary-p10: #e5edf7;
  --clr-text: #000000;
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-black-20: #cccccc;
  --clr-black-30: #b2b2b2;
  --clr-black-15: #e6e6e6;
  --clr-sub-seminar: #00aa00;
  --clr-sub-seminar-p20: #cceecc;
  --clr-sub-basic: #4db6e8;
  --clr-sub-basic-p20: #dbf0fa;
  --clr-sub-capstone: #4955a3;
  --clr-sub-capstone-p20: #dbdded;
  --header-height: 10rem;
  --nav-lower: 8rem;
  --col-width-xl: min(90%, 192rem);
  --col-width-lg: min(90%, 150rem);
  --col-width-md: min(90%, 120rem);
  --col-width-sm: min(90%, 90rem);
  --sp-xs: .5rem;
  --sp-sm: 1rem;
  --sp-md: 2.5rem;
  --sp-lg: 5rem;
  --sp-xl: 7.5rem;
  --sp-2xl: 10rem;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 6rem;
    --sp-xs: .5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 5rem;
    --sp-2xl: 7rem;
  }
}

/* -------------------------------------------
  Base Setting
------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: min(62.5%, 0.8333333333vw);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.4vw;
  }
}

body {
  position: relative;
  line-height: var(--line-height-md);
  background-color: var(--clr-white);
  font-family: var(--fnt-notosans);
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  color: var(--clr-text);
}
body:not(.p-top) {
  opacity: 0;
}
body:not(.p-top).is-view {
  animation: body 1s ease forwards;
}

@keyframes body {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ul, li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: currentColor;
}
a[href="javascript:;"] {
  pointer-events: none;
}
a[href="#"] {
  pointer-events: none;
  opacity: 0.3;
}

img, video {
  max-width: 100%;
  vertical-align: bottom;
}

/* -------------------------------------------
  Common Style
------------------------------------------- */
/* Lauyout
------------------------------------------- */
@media screen and (max-width: 767px) {
  .mov-sub-wrapper {
    display: flex;
    flex-direction: column;
  }
}
/* Responsive Display
------------------------------------------- */
@media screen and (min-width: 768px) {
  .forsp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .forpc {
    display: none !important;
  }
}
/* Column
------------------------------------------- */
.col-xl {
  width: var(--col-width-xl);
  margin-right: auto;
  margin-left: auto;
}

.col-lg {
  width: var(--col-width-lg);
  margin-right: auto;
  margin-left: auto;
}

.col-md {
  width: var(--col-width-md);
  margin-right: auto;
  margin-left: auto;
}

.col-sm {
  width: var(--col-width-sm);
  margin-right: auto;
  margin-left: auto;
}

/* Contents
------------------------------------------- */
.mov-sub-contents {
  margin-left: var(--mov-sub-header);
}
@media screen and (max-width: 767px) {
  .mov-sub-contents {
    order: 2;
    margin-left: 0;
    padding-bottom: 10rem;
  }
}
.mov-sub-contents__inner {
  width: min(90%, 90rem);
  margin: 0 auto;
}
.mov-sub-contents h1:not([class]) {
  display: none;
}

.mov-section {
  padding-top: 7rem;
}
@media screen and (max-width: 767px) {
  .mov-section {
    padding-top: 5rem;
  }
}
.mov-section-header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .mov-section-header {
    flex-direction: column;
  }
}
.mov-section-top-title {
  margin-bottom: 0 !important;
}
.mov-section-notes {
  margin-top: 0.7rem;
  padding-left: 1em;
  line-height: 1.6;
  text-indent: -1em;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  color: #F00;
}
@media screen and (max-width: 767px) {
  .mov-section-notes {
    margin-top: 1rem;
    padding-left: 0;
    text-indent: 0;
    font-size: 0.8em;
  }
}

/* Heading
------------------------------------------- */
.sec-heading-lg {
  margin-bottom: 3rem;
  line-height: var(--line-height-sm);
  text-align: center;
  font-family: var(--fnt-aboreto);
  font-size: 3rem;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .sec-heading-lg {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}
.sec-heading-lg:not(:first-child) {
  margin-top: 4rem;
}
.sec-heading-md {
  margin-bottom: 4rem;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  line-height: var(--line-height-sm);
}
@media screen and (max-width: 767px) {
  .sec-heading-md {
    flex-direction: column;
    gap: 1rem;
    letter-spacing: 0;
  }
}
.sec-heading-md .en {
  font-family: var(--fnt-aboreto);
  font-size: 3rem;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .sec-heading-md .en {
    font-size: 2.6rem;
  }
}
.sec-heading-md .ja {
  font-size: 1.4rem;
  white-space: nowrap;
}
.sec-heading-md:not(:first-child) {
  margin-top: 4rem;
}
.sec-heading-sm {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
.sec-heading-sm:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-heading-sm {
    letter-spacing: 0;
  }
}

/* Header
------------------------------------------- */
.mov-top-header {
  padding: 7rem 0;
  background: linear-gradient(to right, #001e78, #0050b4);
}
@media screen and (max-width: 767px) {
  .mov-top-header {
    padding: 3rem 0;
  }
}
.mov-top-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .mov-top-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem 0;
  }
}
.mov-top-header h1 {
  line-height: 1.1;
  font-family: var(--fnt-aboreto);
  font-size: 7.8rem;
  font-weight: var(--fnt-weight-reg);
  color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .mov-top-header h1 {
    font-size: 3rem;
  }
}
.mov-top-header .list-button span {
  display: block;
  padding: 0.5rem 3rem;
  border: solid 2px var(--clr-white);
  font-family: var(--fnt-aboreto);
  font-size: 2rem;
  color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .mov-top-header .list-button span {
    border-width: 1px;
    font-size: 1.4rem;
  }
}

.mov-sub-header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--mov-sub-header);
  height: 100vh;
  overflow-y: auto;
  background: linear-gradient(to right, #001e78, #0050b4);
  color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .mov-sub-header {
    order: 3;
    position: static;
    width: 100%;
    height: auto;
  }
}
.mov-sub-header__inner {
  width: min(86%, 40rem);
  margin: 0 auto;
  padding: 5rem 0;
}
.mov-sub-header .logo {
  line-height: 1.2;
  font-family: var(--fnt-aboreto);
  font-size: min(3rem, 2vw);
  font-weight: var(--fnt-weight-reg);
}
@media screen and (max-width: 767px) {
  .mov-sub-header .logo {
    font-size: 2.4rem;
  }
}
@media (hover: hover) {
  .mov-sub-header .logo a {
    transition: opacity 0.3s ease;
  }
  .mov-sub-header .logo a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .mov-sub-header-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mov-sub-header-sp {
    order: 1;
    padding: 3rem 5%;
    background: linear-gradient(to right, #001e78, #0050b4);
    color: var(--clr-white);
  }
  .mov-sub-header-sp .logo {
    line-height: 1.2;
    font-family: var(--fnt-aboreto);
    font-size: 2rem;
    font-weight: var(--fnt-weight-reg);
  }
}

/* Footer
------------------------------------------- */
.mov-footer {
  padding: 10rem 0 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mov-sub-contents .mov-footer {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .mov-sub-footer-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mov-sub-footer-sp {
    order: 4;
    padding: 2rem 5%;
    text-align: center;
  }
}

.copyright small {
  font-size: 1rem;
}

/* Nav
------------------------------------------- */
.mov-nav {
  margin-top: 5rem;
  font-size: 1.4rem;
}
.mov-nav > li {
  margin-top: 2rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1440px) {
  .mov-nav > li {
    letter-spacing: 0.1em;
  }
}
.mov-nav > li ul {
  display: none;
  margin: 1.5rem 0 0 2rem;
  font-size: 1.3rem;
}
.cat--executives-ai .mov-nav > li ul.nav--executives-ai, .cat--foundation-ai .mov-nav > li ul.nav--foundation-ai, .cat--cybersecurity .mov-nav > li ul.nav--cybersecurity, .cat--robot .mov-nav > li ul.nav--robot, .cat--data-science1 .mov-nav > li ul.nav--data-science1, .cat--data-science2 .mov-nav > li ul.nav--data-science2, .cat--ds-basic .mov-nav > li ul.nav--ds-basic {
  display: block;
}
.mov-nav > li ul li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1rem;
  letter-spacing: 0.1em;
}
.mov-nav > li ul li::before {
  content: "-";
  position: absolute;
  left: 0;
}
@media (hover: hover) {
  .mov-nav a:hover {
    text-decoration: underline;
  }
}

/* Course List
------------------------------------------- */
.mov-course-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem 3%;
}
@media screen and (max-width: 767px) {
  .mov-course-list {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
}
.mov-course-list li a {
  display: block;
}
.mov-course-list li figure {
  aspect-ratio: 400/260;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mov-course-list li figure {
    aspect-ratio: 400/180;
  }
}
.mov-course-list li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.mov-course-list li p {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 500;
}
@media (hover: hover) {
  .mov-course-list li a img {
    transition: transform 0.3s ease;
  }
  .mov-course-list li a:hover img {
    transform: scale(1.2);
  }
}

/* Movie Item
------------------------------------------- */
.mov-item {
  padding: 7rem 0;
  border-bottom: solid 1px var(--clr-black);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .mov-item {
    flex-direction: column-reverse;
  }
}
.mov-item:first-of-type {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .mov-item:first-of-type {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .mov-item:last-child {
    border-bottom: none;
  }
}
.mov-item.no-item {
  flex-direction: row;
}
.mov-item__text {
  width: 27.1111111111%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .mov-item__text {
    width: 100%;
    margin-top: 3rem;
  }
}
.mov-item__text h2 {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 0.4rem var(--clr-primary);
  line-height: var(--line-height-sm);
  font-size: 1.8rem;
  color: var(--clr-primary);
}
.mov-item__text .text {
  margin-bottom: 2rem;
  line-height: var(--line-height-sm);
  font-size: 1.4rem;
}
.mov-item__text .check {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .mov-item__text .check {
    width: min(80%, 30rem);
    margin: 1rem auto 0;
  }
}
.mov-item__text .check a {
  display: block;
  padding: 1.2rem 0.5rem;
  border: solid 1px var(--clr-primary);
  background-color: var(--clr-primary);
  text-align: center;
  color: var(--clr-white);
}
@media (hover: hover) {
  .mov-item__text .check a {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .mov-item__text .check a:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
  }
}
.mov-item__thumb {
  width: 68.8888888889%;
  border: solid 1px var(--clr-black);
}
.mov-item__thumb a {
  display: block;
  height: 100%;
}
.mov-item__thumb a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .mov-item__thumb {
    width: 100%;
  }
}

/* Chapter
------------------------------------------- */
.mov-section-title {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  font-size: 2.5rem;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .mov-section-title {
    padding-top: 4rem;
    font-size: 2.2rem;
  }
}
.mov-section-title .icon {
  width: 5rem;
  margin-right: 2rem;
}
.mov-section-title .text {
  flex: 1;
}

.mov-chapter-title {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .mov-chapter-title {
    font-size: 2rem;
  }
}

.mov-chapter-movie {
  width: 100%;
  margin-top: 5rem;
}
.mov-chapter-movie:not(.no-border) {
  border: solid 1px var(--clr-black);
}

.mov-chapter-check {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mov-chapter-check {
    flex-direction: column;
    align-items: center;
  }
}
.mov-chapter-check a {
  display: inline-block;
  width: min(80%, 30rem);
  padding: 1.2rem 3rem;
  border: solid 1px var(--clr-primary);
  background-color: var(--clr-primary);
  text-align: center;
  color: var(--clr-white);
}
@media (hover: hover) {
  .mov-chapter-check a {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .mov-chapter-check a:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
  }
}

/* Questionnaire
------------------------------------------- */
.questionnaire {
  margin-top: 3rem;
  text-align: center;
}
.questionnaire .mov-chapter-movie {
  margin-top: 0;
}
.questionnaire p {
  text-align: center;
}
.questionnaire p + .mov-chapter-check {
  margin-top: 3rem;
}

/* 補助教材
------------------------------------------- */
.ds-basic__box {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: solid 1px var(--clr-black-30);
}
.ds-basic__box:last-of-type {
  padding-bottom: 5rem;
  border-bottom: solid 1px var(--clr-black-30);
}/*# sourceMappingURL=style.css.map */