
@charset "UTF-8";
/* ________________________________________________Front Page */

/* ________________________________________________Intro */
.slick-slide img{
  width: 100%;
}
.intro{
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .slick-initialized .slick-slide{
    height: 40vh;
  }
  .slick-slide img{
    height: 100vh;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .slick-slide img{
    left: -50%;
  }
}
/*slickスライダーで一瞬縦並びなる対処ここから*/
.slider {
  display: none;
}
/*slick-initializedクラスが付与されたら*/
.slider.slick-initialized {
  display: block; 
}
/*slickスライダーで一瞬縦並びなる対処ここまで*/
/* ________________________________________________For Students */
.forstudents_link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
}
.forstudents_link .mask{
    max-width: 100%;
    height: 20vw;
    max-height: 180px;
}
.forstudents_link .mask img{
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.forstudents_linkItem{
    width: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.forstudents_linkTtl{
    color: var(--kimap-white);
    padding: 2.5rem 1rem;
}

.forstudents_linkTtl h2{
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.forstudents_linkTtl p{
  font-size: clamp(14px, 2.8vw, 24px);
}
.forstudents_linkItem:nth-child(1) .forstudents_linkTtl,
.forstudents_linkItem:nth-child(2) .forstudents_linkTtl{
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.forstudents_linkItem:nth-child(1) .forstudents_linkTtl:before,
.forstudents_linkItem:nth-child(2) .forstudents_linkTtl:before{
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0.85;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.forstudents_linkItem:nth-child(1) .forstudents_linkTtl{
  background-image:url("../images/TOP_link_L.jpg");
}
.forstudents_linkItem:nth-child(2) .forstudents_linkTtl{
  background-image:url("../images/TOP_link_R.jpg");
}
.forstudents_linkItem:nth-child(1) .forstudents_linkTtl:before{
  background-color: var(--kimap-blue);
}
.forstudents_linkItem:nth-child(2) .forstudents_linkTtl:before{
  background-color: var(--kimap-green);
}
@media screen and (max-width: 500px) {
  .forstudents_link{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .forstudents_linkItem{
    width: 100%;
  }
  .forstudents_linkTtl h2{
    font-size: 27px;
  }
}

/* ________________________________________________Our Features */
.main_our_features .bg_gray .page-flex{
    padding-bottom: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.main_our_features_yt,
.main_our_features_links{
  width:calc(50% - 3px);
}
.main_our_features_links{
    padding: 0 0 0px 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
.main_our_features_links .ttl{
  display: inline-block;
  border-bottom: 2px solid;
  font-size: clamp(24px, 5vw, 37px);
}
.main_our_features_links .links-wrap h3,
.main_our_features_links .links-wrap p:first-child{
  margin-bottom: 1.2rem;
}

.ourfeatures_card{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ourfeatures_cardItem{
  width: calc(100% / 3 - 40px);
}
.ourfeatures_cardItem .thumb{
    margin-bottom: 1.5rem;
}
.ourfeatures_cardItem .ttl{
  margin-bottom: 0.5rem;
    font-size: 24px;
}
.ourfeatures_cardItem .txt{
    margin-bottom: 1rem;
}
@media screen and (max-width: 768px){
  .ourfeatures_card{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ourfeatures_cardItem{
    width: 100%;
  }
  .ourfeatures_cardItem:not(:last-child){
    margin-bottom: 2.5rem;
  }
  .ourfeatures_cardItem .thumb{
    max-width: 100%;
    height: 35vw;
    max-height: 200px;
    margin-bottom: 0.8rem;
  }
  .ourfeatures_cardItem .thumb.mask img{
    height: auto;
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 500px){
  .main_our_features .bg_gray .page-flex{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main_our_features_links{
    padding: 20px 0 0 0;
    width: 100%;
    gap: 40px;
  }
  .main_our_features .bg_gray .page-flex{
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .main_our_features_yt,
  .main_our_features_links{
    width: 100%;
  }
  .main_our_features_yt .yt-wrap{
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

/* ________________________________________________News */
.main_news .ttl-wrap{
  background-image: url("../images/TOP_NEWS.jpg");
  background-size: cover;
  background-position: bottom;
  position: relative;
  z-index: 1;
}
.main_news .ttl-wrap:after{
  z-index: -1;
  left: 0;
}
.news_link{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
.news_linkItem{
  width: calc(100% / 3 - 40px);
}
.news_linkItem:not(:last-child){
    margin-right: 55px;
}
.news_linkItem a{
  display: block;
}
.news_linkItem .thumb{
  margin-bottom: 1.5rem;
  width: 100%;
}
.news_linkItem .desc{
  border-top: 3px solid var(--kimap-blue);
  padding: 1rem 0;
}
.news_linkItem .desc .cat{
  top: 0.8rem;
}
.news_linkItem .desc .txt{
  margin-bottom: 1rem;

}
@media screen and (max-width: 768px){
  .news_link{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .news_linkItem{
    width: 100%;
    margin-bottom:0;
    border-bottom: 1px solid var(--kimap-lightgray);
  }
  .news_linkItem:not(:last-child){
    margin-right:0;
  }
  .news_linkItem a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding:1.5rem 0 0.5rem;
  }
  .news_linkItem .thumb {
    max-width: 90px;
    height: 70px;
    margin-right: 1rem;
  }
  .news_linkItem .desc{
    width: calc(100% - 100px);
    border-top: none;
    padding: 0;
  }
  .news_linkItem .desc .cat{
    top:0;
  }
  .news_linkItem  .desc .ttl {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
  .news_linkItem .desc .txt {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .news_linkItem .btn_more_2{
    display: none;
  }
}

/* ________________________________________________Outro */
.outro_Link{
  background-color:var(--kimap-blue);
  color: var(--kimap-white);
}
.outro_Link .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 3rem 0;
  margin-bottom: 0;
}
.outro_Link .outro_LinkItem{
  width: 215px;
  text-align: center;
}
.outro_Link .outro_LinkItem img{
  width: 90%;
}
.outro_LinkItem h3{
  text-align: center;
  color: var(--kimap-white);
  font-family: 'Oswald', sans-serif;
  font-size:24px;
  margin-top: 1rem;
  display: block;
}
.outro_LinkItem h3.icon-externallink{
  position: relative;
}
@media screen and (max-width: 768px){
  .outro_Link .container{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .outro_Link .outro_LinkItem{
    width: 45%;
    margin-bottom: 3rem;
    text-align: center;
  }
  .outro_Link .container .outro_LinkItem:nth-last-of-type(-n+2){
    margin-bottom: 0;
  }
}