/********** Template CSS **********/
:root {
    --primary: #120851;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
	
	.mbback-dark{
		    background-color: #120851;
	}
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 7%;
    left: 0;
    display: flex;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title-image{
	 height: 210px;
	 margin-bottom: 20px;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60% !important;
    height: 80% !important;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item * {
    transition: .5;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 160px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item img {
    height:50px !important;
}

.team-item h3 {
    font-size:1.3rem;
}
  /*** css-fukidashi ***/
  .css-fukidashi {
      padding: 0;
      margin: 0;
    }
    .fukidashi {
      display: none;
      width: 150px;
      position: absolute;
      padding: 5px;
      background: #B78D65a3;
      color: #fff;
      
    }
    .btn:hover + .fukidashi {
      display: block;
    }

/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/*  training_case */
.training_case table{
  width: 100%;
  border-collapse: collapse;
}

.training_case table tr{
  border-bottom: solid 30px white;
}

.training_case table tr:last-child{
  border-bottom: none;
}

.training_case table th{
  position: relative;
  text-align: left;
  width: 22%;
  background-color: #eee;
  padding: 10px 10px;
}

.training_case table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #6489d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.training_case table td{
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 10px 20px;
}

/*** voice ***/
.voice_back{
	background-color: #ffffff;
    background-image: url(./../img/img_voice_back.svg);
    background-repeat: no-repeat;
}
.student_voice{
	background-color: #6489d04d;
    padding: 20px;
    border-radius: 20px;
	line-height:1.5;
}


/*** Problem ***/
.problem_box{
	border-radius: 20px;
    box-shadow: 0px 22px 24px 0px rgb(42 69 81 / 8%);
    background-color: #fff;
    margin: 0 5px;
}

/*** needs ***/
.old____needs_point {
    position: relative;
    padding: 1rem 2rem;
    border-bottom: 6px solid #144665;
  }
  
.old____needs_point:before {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 20%;
    height: 6px;
    content: '';
    background: #68c2d4;
  }
.needs_block{
    box-shadow: 0px 22px 24px 0px rgb(42 69 81 / 8%);
    margin-bottom: 40px;
    padding-bottom: 30px;
}
.needs_each{
    background-color: #144665;
    padding: 9px;
    color: #fff;
    border-radius: 10px;
}
.needs_text{
    font-size: larger;
    color: #144665;
}

.needs-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.needs-img img {
    position: absolute;
    width: 60% !important;
    height: 80% !important;
    object-fit: cover;
}

.needs-img img:last-child {
    margin: 20% 0 0 40%;
}

.needs-img-rikai::before {
    border: 5px solid #16c2d0;
}
.needs-img-kyotsu::before {
    border: 5px solid #f24656;
}
.needs-img-com::before {
    border: 5px solid #ff8f29;
}
.needs-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 10%;
    z-index: -1;
}

.problem_tag    {
    position: relative;
    display: inline-block;
    height: 64px;
    margin-left: 30px;
    padding: 1rem 2rem 1rem 3rem;
    color: #fff;
    background: #fa4141;
  }
  
.problem_tag:before {
    position: absolute;
    top: 0;
    left: -30px;
    content: '';
    border-width: 32px 30px 32px 0;
    border-style: solid;
    border-color: transparent #fa4141 transparent transparent;
  }
  
.problem_tag:after {
    position: absolute;
    top: calc(50% - 7px);
    left: -10px;
    width: 14px;
    height: 14px;
    content: '';
    border-radius: 50%;
    background: #fff;
  }

.impact_title_mae{
    background-color: #777 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 10px 10px;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}
.impact_title_ato{
    background-color: #68c2d4 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 10px 10px;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}

#pop{
  /*  width:3vw; */
  /*  height:4vw; */
    fill:#60B99A;
  /*  animation: 3.5s Roll ease-in-out infinite; */
}
    
#pop span{
    display:block;
    /* animation: FloatHorizontal 7.0s ease-in-out infinite alternate; */
}

#pop svg{
    animation: FloatVertical 4.0s ease-in-out infinite alternate;
}
@keyframes Roll {
    0% { transform: rotateZ(15deg) scale(0.9); }
    50% { transform: rotateZ(-15deg) scale(1.0); }
    100% { transform: rotateZ(15deg) scale(0.9); }
}
@keyframes FloatHorizontal {
    0% { transform:translate3d(2.5vw,0,0); }
    50% { transform:translate3d(-2.5vw,0,0); }
    100% { transform:translate3d(2.5vw,0,0); }
}
@keyframes FloatVertical {
    0% { transform:translate3d(0,1vw,0); }
    50% { transform:translate3d(0,-1vw,0); }
    100% { transform:translate3d(0,1vw,0); }
}

.usage_person_title{
    font-size: x-large;
    font-weight: 600;
    color: #3d9db1;
    padding: 10px 15px;
    background: linear-gradient(transparent 0% , #3d9db130 70%);
    margin-top: 10px;
}

.usage_title_mae{
    background-color: #777 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}
.usage_title_ato{
    background-color: #999 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}

/* ボタンのスタイル */
.btn-arrow-bottom a {
    position: relative;
    display: block;
    padding: 15px 0;
    background-color: var(--primary);
    border-radius: 8px;
    font-size: x-large;
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  
/* アイコンのスタイル */
.btn-arrow-bottom a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-2px) rotate(135deg);
    box-sizing: border-box;
  }
.btn-arrow-bottom a:hover {
    opacity: 0.7;
  }


.pricing__item {
	text-align: center;
	padding-bottom: 20px;
	padding-top: 22px;
	background: #ffffff;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.1);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 15px;
}

.pricing__item:hover {
	-webkit-box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
	box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
}

.pricing__item:hover h3 {
	background: #4c57d6;
}

.pricing__item:hover .primary-btn {
	background: #4c57d6;
	color: #ffffff;
}

.pricing__item h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 20px;
}

.pricing__item h3 {
	background: #120851;
	font-weight: 700;
	color: #ffffff;
	padding: 24px 0 20px;
	margin-bottom: 26px;
	margin-left: -30px;
	border-radius: 10px;
	margin-right: -30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.pricing__item h3 span {
	font-size: 16px;
	font-weight: 400;
}

.pricing__item .title__name{
    text-align: left;
    line-height: 55px;
}

.pricing__item .title__name_2line {
    display: inline-grid;
    text-align: left;
    line-height: 30px;
}

.pricing__item ul {
	margin-bottom: 26px;
}

.pricing__item ul li {
	font-size: 14px;
	color: #444444;
	line-height: 40px;
	list-style: none;
}

.pricing__item .primary-btn {
	color: #ffffff;
	background: #120851;
	display: block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 14px 0 12px;
}

.pricing__item img {
	max-width: 100%;
    height: auto;
}

.pricing__icon {
	width: 60px;
    height: auto;
}

.services__item {
	background: #ffffff;
	padding-left: 40px;
	padding-top: 40px;
	padding-right: 45px;
	padding-bottom: 20px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	/* margin-bottom: 15px; */
	margin:0 26px 20px 26px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.services__item:hover {
	-webkit-box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
	box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
}

.services__item h5 {
	font-size: 20px;
	/* color: #111111; */
	font-weight: 700;
	margin-bottom: 8px;
}

.services__item span {
	font-size: 10px;
	color: #999999;
	font-weight: 500;
	/* display: block; */
	margin-bottom: 10px;
	margin-left: 20px;
}

.services__item p {
	color: #111111;
}

.training_each {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
	margin: 25px 0;
}

.training_each::before,
.training_each::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #246fa1;
}

.training_each::before {
	margin-right: 20px;
}
.training_each::after {
	margin-left: 20px;
}

.how_title {
	color: var(--primary);
}
.how_title img  {
	width:70px;
	margin-right:25px;
	background-color: #120851;
}

.how_courses {
    list-style-type: disc;
    list-style-position: inside;
	margin-top:1rem;
}

.how_courses li {
    padding: .5em;
}

.how_courses li:not(:last-child) {
    border-bottom: 1px dashed #246fa1;
}

.how_courses li::marker {
    color: #246fa1;
    font-size: 1.1em;
}

.balloon-001 {
    display: flex;
    justify-content: center;
    position: relative;
    /* max-width: 300px; */
    margin-bottom: 15px;
    padding: .8em 1.2em;
    border-radius: 5px;
    background-color: #120851;
    color: #ffffff;
}

.balloon-001::before {
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 21px;
    height: 13px;
    background-color: #120851;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

/* gomenu */
.button_gomenu a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px auto;
    max-width: 335px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_gomenu a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_gomenu a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_gomenu a:hover {
    opacity: 0.7;
}
.button_gomenu a:hover:after {
    transform: scale(1, 1);
}

/* ai-skill */

.hero {
    width: 100%;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 60px 0;
    overflow: hidden;
	background-image:url(../img/ai-skill_bg.jpg);
	background-position:center;
	background-size: cover;
}
.hero .ai_back {
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero .btn-get-started {
    color: #fff;
    background: #005cca;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
}
.hero .btn-get-started:hover {
    background-color: #003d86;
}
.hero .icon-box {
    background-color:#fff;
    padding: 15px 30px;
    overflow: hidden;
    box-shadow: 0 0 29px 0 rgb(0 0 0 / 10%);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    width: 100%;
    color: #222 ;
}

.hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: x-large;
    line-height: 1;
    color: var(--accent-color);
}
.hero .icon-box .icon:after {
	content:"";
	padding: 8px 0;
	display: block;
	height: 2px;
	border-radius: 2px;
	background:linear-gradient(90deg, #16b5dd 0%, #152db8 100%);
	background-repeat: no-repeat;
	background-size: 100% 3px;
	background-position: bottom;
}
.hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
.hero .icon-box .description {
    font-size: 15px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.hero .icon-box-image  {
    transition: all 0.3s ease-in-out;
}
@media (min-width: 640px){
.hero .icon-box:hover {
    transform: scale(1.04);
}
.hero .icon-box-image:hover  {
    transform: scale(1.04);
}}

.ai_course table{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

.ai_course table th:first-child{
  border-radius: 5px 0 0 0;
}

.ai_course table th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}

.ai_course table th{
  text-align: center;
  color:white;
  background: linear-gradient(#829ebc,#225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  padding: 10px 0;
  letter-spacing: 2px;
}

.ai_course table td{
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  padding: 10px 0;
  background-color:#ffffff7a;
}

.ai_course table td:last-child{
  border-right: 1px solid #a8b7c5;
}

.ai_course table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.ai_course table .course_code{
  text-align: center;
  width: 18%;
}
.ai_course table .course_name{
  width: 67%;
  padding-left: 10px;
}
.ai_course table .course_term{
  text-align: center;
  width: 15%;
}
