@charset "UTF-8";
/* ----------------------------------------
   ■ index.css
---------------------------------------- */
/* RESET
---------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  height: 100%;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:hover {
  opacity: 0.8;
}

/* Original */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* @media : SP
---------------------------------------- */
@media screen and (max-width: 768px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
@media screen and (max-width: 480px) {
}


/* バーガーメニュー
---------------------------------------- */

/* アイコン用 */
.hamburger-menu {
  display: none;
}

.menu-btn {
  position: fixed;
  top: 10px;
  left: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 3100;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #223D68;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: rgba(255, 255, 255, 1);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: rgba(255, 255, 255, 1);
}

#menu-btn-check {
  display: none;
}

/* メニュー */
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 3000;
  background-color: rgba(34, 61, 104, 1);
  transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}

.menu-content ul {
  display: block;
  padding: 70px 0;
  width: 100%;
  background-color: #223d68;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
  margin-bottom: 20px;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}


/* 画像フェードイン */
.slider {
  height: auto;
  margin-inline: auto;
}
.slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.slider img {
  width: 100%;
  height: 23vw;
  object-fit: cover;
}

@media screen and (min-width: 1300px) {
  .slider img {
    height: 18.7vw;
  }
}

@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  .menu-btn {
    top: 0;
  }
  .slider img {
    height: 80vw;
  }
}


/* 共通
---------------------------------------- */
#program h1,
#newlist h1,
#newdetail h1,
#about h1 {
  text-align: center;
  color: #223d68;
  font-size: 65px;
  font-weight: bold;
  position: relative;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  width: 300px;
  margin: 80px auto;
}
#newlist h1,
#newdetail h1,
#about h1 {
  width: 210px;
}
#program h1::before,
#newlist h1::before,
#newdetail h1::before,
#about h1::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -40px;
  border-right: 30px solid transparent;
  border-bottom: 46px solid #dc0016;
}

h2 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  color: #223d68;
  font-size: 50px;
  position: relative;
}
h2::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -40px;
  border-right: 27px solid transparent;
  border-bottom: 38px solid #dc0016;
}

#blended-mobility-project h2,
#mcp-project h2,
#prep-room h2,
#bm-project h2,
#j-cc_jv-campus h2,
#capacitybuilding h2,
.contents_about h2 {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #223D68;
  color: #fff;
  font-size: 22px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  height: 60px;
}
#blended-mobility-project h2::before,
#mcp-project h2::before,
#prep-room h2::before,
#bm-project h2::before,
#j-cc_jv-campus h2::before,
#capacitybuilding h2::before,
.contents_about h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  border-left: 40px solid transparent;
  border-right: none;
  border-bottom: 60px solid #dc0016;
}

.mv,
.c-breadcrumb_list {
  padding-top: 90px;
}

a.btn {
  color: #fff;
  background-color: #223d68;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 50px;
  margin: 0 0 0 auto;
  border-radius: 40px;
  text-decoration: none;
  position: relative;
}
a.btn::after {
  content: '';
  position: absolute;
  right: 30px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #dc0017;
}
a.btn:hover {
  opacity: 0.8;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 30px solid #223d68;
  border-bottom: 0;
  opacity: 0.6;
  margin: 30px auto;
}

.c-breadcrumb_list ul {
  display: flex;
  padding: 0 30px;
  margin: 30px auto;
}

.c-breadcrumb_list ul li {
  font-size: 14px;
  color: #CECECE;
  padding-left: 30px;
}

.c-breadcrumb_list ul li a {
  color: #CECECE;
  text-decoration: none;
}

.c-breadcrumb_list ul li a:hover {
  text-decoration: underline;
}

.c-breadcrumb_list ul li:last-child {
  color: #648DCE;
  padding-left: 10px;
}
.c-breadcrumb_list ul li:last-child::before {
  content: '|';
  padding-right: 10px;
}

#newdetail .c-breadcrumb_list ul li:nth-child(2) {
  padding-left: 15px;
}

#newdetail .c-breadcrumb_list ul li:nth-child(2)::before,
#newdetail .c-breadcrumb_list.list ul li:last-child::before {
  content: '|';
  padding-right: 10px;
}

#newdetail .c-breadcrumb_list ul li:last-child {
  color: #648DCE;
  padding-left: 30px;
  position: relative;
}
#newdetail .c-breadcrumb_list ul li:last-child::before {
  content: '';
  background-image: url(../img/arrow2.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  left: 12px;
  display: block;
  width: 10px;
  height: 15px;
}

#newdetail .c-breadcrumb_list.list ul li:last-child {
  padding-left: 10px;
}

#newdetail .c-breadcrumb_list.list ul li:last-child::before {
  background-image: none;
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}


@media screen and (max-width: 768px) {
  #program h1,
  #newlist h1,
  #newdetail h1,
  #about h1 {
    width: 240px;
    font-size: 50px;
    margin: 40px auto;
    padding-left: 20px;
  }
  #newlist h1,
  #newdetail h1 {
    width: 170px;
  }
  #program h1::before,
  #newlist h1::before,
  #newdetail h1::before,
  #about h1::before {
    top: 5px;
    left: -10px;
    border-right: 24px solid transparent;
    border-bottom: 37px solid #dc0016;
  }
  h2 {
    padding-left: 40px;
  }
  h2::before {
    left: 0;
  }
  #blended-mobility-project h2,
  #mcp-project h2,
  #prep-room h2,
  #bm-project h2,
  #j-cc_jv-campus h2,
  #capacitybuilding h2,
  .contents_about h2 {
    padding-left: 0;
  }
  a.btn {
    margin: 0 auto;
  }
  .c-breadcrumb_list ul {
    display: none;
  }
  .mv,
  .c-breadcrumb_list {
    padding-top: 50px;
  }
}

/* ----------------------------------------

ヘッダー

---------------------------------------- */
header {
  background-color: #fff;
  border-bottom: 1px solid #adadad;
  position: fixed;
  width: 100%;
  vertical-align: middle;
  z-index: 4000;
}

header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

header ul {
  display: flex;
  align-items: center;
}

header ul li {
 padding: 0 30px;
 position: relative;
}

header ul li.choice::before {
  content: '●';
  color: #DC0017;
  position: absolute;
  top: 0;
  left: 10px;
}

header ul li a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
header ul li a:hover {
  color: #DC0017;
}


@media screen and (max-width: 768px) {
  header {
    padding: 0 10px;
  }
  header ul.menu {
    display: none;
  }  
  header ul li a {
    font-size: 13px;
  }
  header ul li.choice::before {
    content: '';
  }
  header .wrap {
    padding: 8px 30px;
  }
}

/* jp＆en切り替え
---------------------------------------- */
.toggle {
  display: none;
}
.option {
  position: relative;
  top: 0;
}
.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.title {
  background-color: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  width: 90px;
  padding: 1em;
  display: block;
  color: #333;
  font-weight: bold;
  cursor: pointer;
}
.title::after {
  content: '';
  background-image: url(../img/arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 57%;
  right: 7px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 18px;
  pointer-events: none;
  z-index: 2;
  opacity: .6;
}
.content {
  max-height: 0;
  overflow: hidden;
  background-color: #EBEBEB;
}
.content p,
.content a {
  width: 80%;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 0.9em;
  line-height: 1.5;
  text-align: center;
}
.content p {
  color: #B5B5B5;
  border-bottom: 1px solid #B5B5B5;
}
.content a {
  color: #000;
  text-decoration: none;
}
.content a:hover {
  color: #DC0017;
}
.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
  position: absolute;
  border-radius: 5px;
  width: 100%;
  height: 90px;
  z-index: 2000;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 14px;
  }
}

/* ----------------------------------------

フッター

---------------------------------------- */
footer {
  text-align: center;
}

footer .footer_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20vw;
  background-image: url(../img/footer_mv.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}

footer .footer_banner div {
  width: 50%;
}

footer .information {
  padding: 50px 0 20px;
  color: #404040;
}

footer .information p {
  font-size: 14px;
  line-height: 1.5;
}
footer .information p:first-child {
  margin-bottom: 10px;
  font-weight: 500;
}

footer .information p span {
  padding-right: 13px;
  font-weight: 500;
}

footer .information a {
  display: block;
  color: #000;
  margin-top: 20px;
}

footer .information .copywriter {
  padding: 30px 0;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  footer .footer_banner {
    height: 40vw;
    background-image: url(../img/sp_footer_mv.png);
  }
  footer .footer_banner div {
    width: 70%;
  }
  footer .information p {
    font-size: 13px;
  }
  footer .information p:nth-child(2) {
    margin-bottom: 10px;
  }
  footer .information p span {
    display: block;
    padding-right: 0;
  }
  footer .information .copywriter {
    padding: 30px 0 0px;
  }
  footer .information a {
    font-size: 14px;
  }
}


/* ----------------------------------------

TOPページ

---------------------------------------- */
.mv .logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30%;
  left: 15%;
}

.wrap-fx{
  display: flex;
  justify-content: center;
  position: relative;
}

.wrap-fx.al {
  justify-content: flex-start;
  align-items: center;
}

.mv .contents {
  width: 56%;
  margin: 0 0 0 auto;
}

.mv .contents2 {
  width: 44%;
  margin-top: -100px;
}

.mv .contents3 {
  width: 36%;
  margin-left: 10%;
  padding-top: 30px;
}
@media screen and (max-width: 974px) {
  .mv .contents3 {
    width: 43%;
    margin-left: 7%;
  }
}

.mv .alignment_university {
  max-width: 812px;
  margin: 70px auto 100px;
  text-align: center;
  background-color: #f0f3f8;
}

.mv .alignment_university p {
  color: #000;
  font-size: 16px;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding-top: 50px;
}

.mv .alignment_university ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 60px;
}

.mv .alignment_university ul li {
  width: 20%;
  margin: 0 30px;
}

.mv .about_text {
  text-align: justify;
}

.mv .about_text p{
  margin: 20px auto;
  line-height: 2;
}

.contents3 .area_btn {
  max-width: 812px;
  margin: 0 auto;
}


@media screen and (min-width: 1300px) {
  .mv_pc{
    display: block;
  }
  .mv_md{
    display: none;
  }
  .mv_sp{
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .mv_pc{
    display: none;
  }
  .mv_md{
    display: block;
  }
  .mv_sp{
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mv_pc{
    display: none;
  }
  .mv_md{
    display: none;
  }
  .mv_sp{
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .wrap-fx{
    display: block;
  }
  .mv .logo {
    width: 60%;
    display: block;
    margin: 80px auto 60px;
    position: relative;
    top: 0;
    left: 0;
  }
  .mv .contents {
    width: 80%;
    margin: 0 0 0 auto;
  }
  .mv .contents2 {
    width: 80%;
    margin-top: 0%;
  }
  .mv .contents3 {
    width: 80%;
    margin: 50px auto;
  }
  .mv .about_text {
    width: 100%;
    padding: 0;
  }
  .mv .alignment_university p {
    padding-top: 30px;
    line-height: 1.5;
  }
  .mv .alignment_university ul {
    display: block;
    padding: 20px 0 10px;
  }
  .mv .alignment_university ul li {
    width: 43%;
    margin: 0 auto 20px;
  }
  .mv .alignment_university {
    margin: 70px auto;
  }
}

/*
NEWS（スライドショー）
---------------------------------------- */
.area_slider {
  position: relative;
  width: min(100%, 850px);
  margin: 0 auto;
  padding: 0 20px;
}

.area_slider h2 {
  left: 60px;
  margin-bottom: 30px;
}

.slider {
  width: 100%;
  margin-top: 60px;
}

iframe {
  width: 100%;
  height: max(400 / 1800 * 100vw, 650px);
  display: block;
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
}

.slick-prev, .slick-next {
  z-index: 100;
  top: -30px;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
.slick-prev {
  background-image: url(../img/arrow_left.png);
  left: 20px;
}
.slick-next {
  background-image: url(../img/arrow_right.png);
  right: 0;
  left: 90px;
}
.slick-prev:before, .slick-next:before {
  content: '';
  opacity: 1;
}

.slider div {
  margin-left: 20px;
}

.slider div:first-child {
  margin-left: 0;
}

.slider div a {
  text-decoration: none;
}
.slider div a:hover {
  text-decoration: underline;
}
.slider div a .img:hover {
  background-image: url(../img/bg.svg);
  background-size: 100%;
  width: 100%;
  /* height: 100%; */
  text-decoration: underline;
}

.slider ul li.date {
  /* display: ruby-text; */
  display: block;
  font-size: 18px;
  color: #223D68;
  margin-top: 20px;
}

.slider ul li.category {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #648DCE;
  border-radius: 40px;
  text-align: center;
  padding: 3px 15px;
  margin-top: 10px;
}

.slider ul li.text {
  display: block;
  color: #000;
  line-height: 2;
  margin-top: 20px;
}

#news .area_btn {
  max-width: 812px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .area_slider h2 {
    left: 0;
  }  
  .area_slider {
    width: 80%;
    margin: 0 auto;
  }
  iframe {
    overflow: hidden;
    padding: 0;
    left: 0;
    width: 100%;
    height: 550px;
  }
  .slider {
    width: 100%;
    height: auto;
    margin-top: 60px;
    margin-bottom: 20px;
    margin-right: 0%;
    padding: 0;
    left: 0;
  }
  .slick-prev, .slick-next {
    width: 35px;
    height: 35px;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    left: 50px;
  }
  .area_slider a.btn {
    margin: 0 auto;
  }
  .slider ul li.date {
    font-size: 16px;
  }
  .slider ul li.category {
    font-size: 12px;
  }
  .slider ul li.text {
    font-size: 14px;
  }
  .slider div a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  iframe {
    height: 630px;
  }
}

@media screen and (max-width: 480px) {
  iframe {
    height: 550px;
  }
  .slider div {
    margin-left: 0;
  }
}



/*
PROGRAM
---------------------------------------- */
.area_program {
  margin:200px auto;
}

.area_program h2 {
  max-width: 740px;
  margin: 0 auto;
}

.area_program p {
  color: #223D68;
  font-size: 16px;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 50px auto;
  text-align: center;
}

.area_program .box {
  background-color: #f0f3f8;
  padding: 40px 0;
}

.area_program ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 840px;
  margin: 0 auto;
}

.area_program ul li {
  color: #223D68;
  background-color: #CCE2F1;
  margin: 0 3px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
  height: 80px;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  line-height: 1.3;
}

.area_program ul li:nth-child(5),
.area_program ul li:nth-child(6) {
  width: 100%;
  margin: 0 15px 10px;
}

.area_program .area_btn {
  max-width: 812px;
  margin: 20px auto 0;
}

/* .area_program a.btn {
  margin-right: 20%;
  margin-top: 20px;
} */


@media screen and (max-width: 768px) {
  .area_program {
    margin:100px auto;
  }
  .area_program .program_text {
    width: 80%;
    margin: 0 auto;
  }
  .area_program p {
    line-height: 1.5;
    margin: 30px auto;
  }
  .area_program ul {
    display: block;
  }
  .area_program ul li,
  .area_program ul li:nth-child(5),
  .area_program ul li:nth-child(6) {
    width: 80%;
    height: 80px;
    margin: 0 auto 10px;
    font-size: 14px;
  }
  .area_program a.btn {
    margin: 20px auto 0;
  }
}

/*
movie（ムービー）
---------------------------------------- */
#movie {
  max-width: 620px;
  margin: 0 auto 100px;
}

#movie p {
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

#movie video {
  display: block;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #movie {
    width: 80%;
  }  
}

/* ----------------------------------------

PROGRAMページ

---------------------------------------- */
.program .area_program {
  margin: 0 auto;
}

.program .area_program p {
  font-size: 19px;
  font-weight: 500;
  margin: 60px auto;
  line-height: 1.5;
}

.program .area_program ul {
  background: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.program .area_program ul li {
  width: 24.333%;
  max-width: none;
  margin: 0 6px;
  border:none;
  color: #243e69;
  background-color: #223D68;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 0;
  line-height: 1.3;
}

.program .area_program ul li a {
  color: #fff;
  text-decoration: none;
}

.program .area_program ul li a span.line_1 {
  display: inline-block;
  padding: 13px 0;
}

.program .area_program ul li a span.border {
  display: block;
  width: 240px;
  border-top: 1px solid #fff;
  font-size: 14px;
  margin-top: 15px;
  padding-top: 5px;
  position: relative;
  font-weight: 400;
}
.program .area_program ul li a span.border::after {
  content: '▼';
  color: #dc0017;
  position: absolute;
  top: 7px;
  right: 26%;
  font-size: 11px;
}

#program .article {
  background-color: #F0F4F8;
  padding-bottom: 15%;
}

@media screen and (max-width: 768px) {
  .program .area_program p {
    margin: 30px auto;
    font-size: 14px;
  }
  .program .area_program ul {
    width: 95%;
    margin-bottom: 30px;
  }
  .program .area_program ul li {
    width: 46%;
    margin: 0 6px;
    margin-bottom: 10px;
    font-size: 13px;
    padding: 10px 0;
    line-height: 1.3;
  }
  .program .area_program ul li a span.line_1 {
    padding: 8.46px 0;
  }
  .program .area_program ul li a span.border {
    width: 140px;
    font-size: 10px;
    margin-top: 10px;
  }
  .program .area_program ul li a span.border::after {
    bottom: -4px;
    right: 18%;
    font-size: 10px;
  }
}

/*
Blended Mobility Project
---------------------------------------- */
#blended-mobility-project {
  padding-top: 100px;
}

#blended-mobility-project h2 {
  background-color: #223D68;
  color: #fff;
  font-size: 22px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  height: 60px;
}
#blended-mobility-project h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  border-left: 40px solid transparent;
  border-right: none;
  border-bottom: 60px solid #dc0016;
}

#blended-mobility-project .box {
  max-width: 896px;
  margin: 0 auto;
  border: 2px solid #223D68;
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
}

#blended-mobility-project .box h3 {
  font-size: 39px;
  color: #223D68;
  border-bottom: 2px solid #223D68;
  padding-bottom: 6px;
  width: 580px;
  margin: 0 auto;
  /* font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal; */
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
}

#blended-mobility-project .box p {
  font-size: 16px;
  margin: 10px 0 40px;
}

#blended-mobility-project .box ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#blended-mobility-project .box ul li {
  background-color: #CCE2F1;
  border-radius: 10px;
  color: #223D68;
  line-height: 1.5;
  width: 45%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  font-weight: 500;
}

#blended-mobility-project .box ul li.w90 {
  width: 90%;
}

@media screen and (max-width: 768px) {
  #blended-mobility-project {
    /* padding-top: 50px; */
    padding-top: 70px;
    width: 90%;
    margin: 0 auto;
  }
  #blended-mobility-project h2 {
    font-size: 16px;
    margin: 0 auto 20px;
    height: 50px;
  }
  #blended-mobility-project h2::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 50px solid #dc0016;
  }
  #blended-mobility-project .box ul {
    display: block;
  }
  #blended-mobility-project .box h3 {
    width: 90%;
    font-size: 25px;
    padding-bottom: 20px;
  }
  #blended-mobility-project .box p {
    font-size: 16px;
    margin: 10px 0 30px;
    line-height: 1.5;
  }
  #blended-mobility-project .box ul li {
    width: 90%;
    margin: 0 auto;
    height: 80px;
    margin-bottom: 15px;
    font-size: 14px;
  }
  #blended-mobility-project .box ul li:last-child {
    margin-bottom: 0;
  }
}

/*
アトリエMCPプログラム
---------------------------------------- */
#mcp-project {
  padding-top: 100px;
}

#mcp-project .listbox ul {
  max-width: 900px;
  margin: 0 auto;
}

#mcp-project .listbox ul li {
  border: 2px solid #223D68;
  color: #223D68;
  margin-bottom: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
}

#mcp-project .listbox ul li:last-child {
  margin-bottom: 40px;
}

#mcp-project .box {
  max-width: 896px;
  margin: 0 auto;
  border: 2px solid #223D68;
  background-color: #fff;
  text-align: center;
  padding: 30px 0 10px;
}

#mcp-project .box h3 {
  color: #223D68;
  border-bottom: 2px solid #223D68;
  padding-bottom: 20px;
  width: 820px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
}

#mcp-project .box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

#mcp-project .box ul li {
  background-color: #CCE2F1;
  border-radius: 10px;
  color: #223D68;
  line-height: 1.5;
  width: 30%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px 20px;
  font-weight: 500;
}

#mcp-project .link {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: right;
}

#mcp-project .link a {
  color: #648DCE;
  font-size: 14px;
  text-decoration: none;
}
#mcp-project .link a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #mcp-project {
    width: 90%;
    margin: 0 auto;
    padding-top: 70px;
  }
  #mcp-project h2 {
    font-size: 16px;
    margin: 0 auto 20px;
    height: 50px;
  }
  #mcp-project h2::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 50px solid #dc0016;
  }
  #mcp-project .listbox ul li {
    margin-bottom: 10px;
    height: auto;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
    padding: 10px 0;
  }
  #mcp-project .listbox ul li:last-child {
    margin-bottom: 20px;
  }
  #mcp-project .box {
    padding: 20px 0 10px;
  }
  #mcp-project .box h3 {
    width: 90%;
    font-size: 16px;
    line-height: 1.3;
    padding-bottom: 20px;
  }
  #mcp-project .box ul {
    display: block;
  }
  #mcp-project .box ul li {
    border-radius: 5px;
    width: 90%;
    height: auto;
    margin: 0 auto 10px;
    padding: 10px 0;
    font-size: 14px;
  }
  #mcp-project .link {
    margin: 10px auto 0;
  }  
  #mcp-project .link a {
    font-size: 11px;
  }  
}

/*
PREP-ROOM（MCP準備モジュール）
---------------------------------------- */
#prep-room {
  padding-top: 100px;
}

#prep-room p {
  color: #223D68;
  max-width: 810px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

#prep-room .box {
  max-width: 896px;
  margin: 0 auto;
  border: 2px solid #223D68;
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
}

#prep-room .box.mb0 {
  margin-bottom: 0;
}

#prep-room .box h3 {
  font-size: 21px;
  color: #223D68;
  border-bottom: 2px solid #223D68;
  padding-bottom: 20px;
  width: 570px;
  margin: 0 auto;
  font-weight: 600;
  font-style: normal;
}

#prep-room .box p {
  color: #404040;
  max-width: none;
  font-size: 16px;
  font-weight: 400;
  width: 80%;
  text-align: left;
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  #prep-room {
    width: 90%;
    margin: 0 auto;
    padding-top: 70px;
  }
  #prep-room h2 {
    font-size: 16px;
    margin: 0 auto 20px;
    height: 50px;
  }
  #prep-room h2::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 50px solid #dc0016;
  }
  #prep-room p {
    font-size: 14px;
  }
  #prep-room .box h3 {
    width: 90%;
    font-size: 18px;
  }
  #prep-room .box p {
    font-size: 14px;
    width: 90%;
    margin: 20px auto 0;
  }
}

/*
BM型インターンシッププログラム
---------------------------------------- */
#bm-project {
  padding-top: 100px;
}

#bm-project  .listbox ul {
  max-width: 900px;
  margin: 0 auto;
}

#bm-project .listbox ul li {
  border: 2px solid #223D68;
  color: #223D68;
  margin-bottom: 20px;
  background-color: #fff;
  text-align: center;
  font-weight: 500;
  padding: 20px 0;
}

#bm-project .listbox ul li:last-child {
  margin-bottom: 0;
}

#bm-project .listbox ul li p {
  line-height: 1.8;
  font-size: 20px;
}

#bm-project .listbox ul li p:last-child {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #bm-project {
    width: 90%;
    margin: 0 auto;
    padding-top: 70px;
  }
  #bm-project h2 {
    font-size: 16px;
    margin: 0 auto 20px;
    height: 50px;
  }
  #bm-project h2::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 50px solid #dc0016;
  }
  #bm-project .listbox ul li {
    margin-bottom: 10px;
    padding: 10px 0;
  }
  #bm-project .listbox ul li p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  #bm-project .listbox ul li p:last-child {
    font-size: 12px;
  }
}

/*
JIGE Community Campus（J-CC）＆Japan Virtual Campus（JV-campus）
---------------------------------------- */
#j-cc_jv-campus {
  padding-top: 100px;
}

#j-cc_jv-campus h2 {
  height: 90px;
  line-height: 1.5;
  letter-spacing: 7px;
}
#j-cc_jv-campus h2::before {
  border-left: 40px solid transparent;
  border-right: none;
  border-bottom: 60px solid #dc0016;
  bottom: 0;
}

#j-cc_jv-campus .box {
  max-width: 896px;
  margin: 0 auto;
  border: 2px solid #223D68;
  background-color: #fff;
  padding: 40px 0;
}

#j-cc_jv-campus .box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#j-cc_jv-campus .box p.textbox {
  width: 85%;
  margin: 0 auto 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #404040;
}

#j-cc_jv-campus .box a {
  width: 85%;
  margin: 0 auto;
  display: block;
  text-align: right;
  color: #648DCE;
  font-size: 14px;
  text-decoration: none;
}
#j-cc_jv-campus .box a:hover {
  text-decoration: underline;
}

#j-cc_jv-campus .box .heading {
  border-top: 2px solid #223D68;
  border-bottom: 2px solid #223D68;
  color: #223D68;
  text-align: center;
  padding: 20px 0;
  width: 80%;
  margin: 60px auto 30px;
  position: relative;
}
#j-cc_jv-campus .box .heading::after {
  content: '';
  background-image: url(../img/program_icon01.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 90px;
  height: 77px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#j-cc_jv-campus .box .heading p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

#j-cc_jv-campus .box .heading p:first-child {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

#j-cc_jv-campus .box .subject {
  display: flex;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 30px;
}

#j-cc_jv-campus .box .subject p:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 50px;
  background-color: #223D68;
  color: #fff;
}
#j-cc_jv-campus .box .subject p:last-child {
  color: #223D68;
  line-height: 1.5;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
}

#j-cc_jv-campus .box ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#j-cc_jv-campus .box ul li {
  display: flex;
  justify-content: center;
  border: 2px solid #223D68;
  color: #223D68;
  border-radius: 20px;
  width: 200px;
  height: 180px;
  margin: 10px;
  padding-top: 20px;
  text-align: center;
}

#j-cc_jv-campus .box ul li .icon {
  width: 100px;
  margin: 0 auto;
}

#j-cc_jv-campus .box ul li .logo {
  width: 130px;
  margin: 10px auto 0;
}

#j-cc_jv-campus .box ul li h4 {
  margin-bottom: 10px;
  font-weight: 500;
}

#j-cc_jv-campus .box ul li p {
  font-size: 12px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #j-cc_jv-campus {
    width: 90%;
    margin: 0 auto;
    padding-top: 70px;
  }
  #j-cc_jv-campus h2 {
    font-size: 16px;
    margin: 0 auto 20px;
    height: 80px;
    letter-spacing: 0;
  }
  #j-cc_jv-campus h2::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 50px solid #dc0016;
  }
  #j-cc_jv-campus .box {
    padding: 20px 0;
  }
  #j-cc_jv-campus .box a {
    font-size: 11px;
  }
  #j-cc_jv-campus .box .heading {
    width: 95%;
    margin: 50px auto 30px;
  }
  #j-cc_jv-campus .box .heading p:first-child {
    font-size: 18px;
  }
  #j-cc_jv-campus .box .heading::after {
    width: 35px;
    height: 30px;
    top: 80%;
    right: 0px;
  }
  #j-cc_jv-campus .box .heading p {
    font-size: 16px;
    margin-bottom: 0;
  }
  #j-cc_jv-campus .box .subject {
    display: block;
    font-size: 14px;
  }
  #j-cc_jv-campus .box .subject p:first-child {
    width: 90px;
    height: 30px;
    margin: 0 auto;
  }
  #j-cc_jv-campus .box .subject p:last-child {
    padding-left: 0;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
  }
  #j-cc_jv-campus .box ul li {
    border-radius: 10px;
    width: 40%;
    height: 140px;
    margin: 10px 0;
    padding: 5px;
  }
  #j-cc_jv-campus .box ul li .icon {
    width: 60px;
  }
  #j-cc_jv-campus .box ul li h4 {
    font-size: 14px;
  }
  #j-cc_jv-campus .box ul li p {
    line-height: 1.3;
  }
  #j-cc_jv-campus .box ul li .logo {
    width: 90px;
    margin: 10px auto;
  }
  #j-cc_jv-campus .box ul {
    justify-content: space-evenly;
    align-items: flex-start;
  }
  #j-cc_jv-campus .box p.textbox {
    font-size: 14px;
  }  
}


/*
Capacity Building
---------------------------------------- */
#capacitybuilding {
  padding-top: 100px;
}

#capacitybuilding p {
  max-width: 810px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #223D68;
}

#capacitybuilding .box {
  max-width: 896px;
  margin: 0 auto;
  color: #223D68;
  border: 2px solid #223D68;
  background-color: #fff;
  text-align: center;
  padding: 50px 0;
  margin-bottom: 40px;
}

#capacitybuilding .box h3 {
  font-size: 21px;
  padding-bottom: 10px;
  width: 570px;
  margin: 0 auto;
  font-weight: 600;
  font-style: normal;
}

#capacitybuilding .box p {
  max-width: none;
  font-size: 16px;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

#capacitybuilding .box .border {
  width: 300px;
  margin: 30px auto;
  border-bottom: 2px solid #223D68;
}

#capacitybuilding .box .wrap_course h4 {
  font-size: 21px;
  font-weight: 600;
  font-style: normal;
}

#capacitybuilding .box .wrap_course .box2 {
  margin-top: 30px;
  border: 2px solid #223D68;
  width: 90%;
  margin: 30px auto 0;
}

#capacitybuilding .box .wrap_course .box2 h5 {
  color: #fff;
  background-color: #223D68;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  padding: 10px 0;
}

#capacitybuilding .box .wrap_course .box2 ol {
  counter-reset: listnum;
	list-style: none;
  text-align: left;
  padding: 30px 20px;
}
#capacitybuilding .box .wrap_course .box2 ol li {
  padding: 20px 10px;
  display: flex;
  align-items: center;
}
#capacitybuilding .box .wrap_course .box2 ol li::before{
  counter-increment: listnum;
  content: counter(listnum) "";
  color: #223D68;
  vertical-align: middle;
  font-size: 40px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 450;
  width: 30px;
}

#capacitybuilding .box .wrap_course .box2 ol li .borderL {
  border-right: 2px solid #223D68;
  width: 1px;
  height: 50px;
  padding-left: 10px;
}

#capacitybuilding .box .wrap_course .box2 ol li p {
  width: 92%;
  text-align: justify;
  position: relative;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  #capacitybuilding {
    width: 90%;
    margin: 0 auto;
    padding-top: 70px;
  }
  #capacitybuilding h2 {
    font-size: 16px;
    margin: 0 auto 20px;
    height: 50px;
  }
  #capacitybuilding h2::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 50px solid #dc0016;
  }
  #capacitybuilding p {
    font-size: 14px;
  }
  #capacitybuilding .box h3 {
    width: 90%;
    font-size: 16px;
  }
  #capacitybuilding .box p {
    font-size: 13px;
    width: 90%;
    margin: 20px auto 0;
    text-align: justify;
  }
  #capacitybuilding .box {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  #capacitybuilding .box .wrap_course h4 {
    font-size: 17px;
    line-height: 1.5;
  }
  #capacitybuilding .box .wrap_course .box2 h5 {
    font-size: 20px;
    line-height: 1.5;
  }
  #capacitybuilding .box .wrap_course .box2 ol {
    padding: 25px 10px;
  }
  #capacitybuilding .box .wrap_course .box2 ol li {
    padding: 10px 0;
  }
  #capacitybuilding .box .wrap_course .box2 ol li::before {
    width: 10px;
    padding-right: 10px;
    font-size: 26px;
  }
  #capacitybuilding .box .wrap_course .box2 ol li p {
    width: 82%;
    padding-left: 0;
    font-size: 12px;
    margin: 10px auto;
  }
  #capacitybuilding .box .wrap_course .box2 ol li .borderL {
    height: 70px;
    padding: 2px;
  }
}


/* ----------------------------------------

ニュース一覧ページ

---------------------------------------- */
.new-list .area_new {
  /* max-width: 1100px; */
  max-width: 100%;
  margin: 0 20px 100px;
}

.new-list .area_new ul {
  display: flex;
  justify-content: space-between;
  /* justify-content: flex-start; */
  /* align-items: center; */
  align-items: flex-start;
  flex-wrap: wrap;
}
.new-list .area_new ul::after {
  content:"";
  display: block;
  width: calc(100% / 3 - 20px);
  margin: 10px;
}

.new-list .area_new ul li {
  width: 31.3333%;
  margin-bottom: 100px;
  /* margin: 0 10px 100px; */
}

.new-list .area_new ul li a {
  text-decoration: none;
}
.new-list .area_new ul li a:hover {
  text-decoration: underline;
}

.new-list .area_new ul li .img {
  position: relative;
}
.new-list .area_new ul li .img:hover {
  content: '';
  background-image: url(../img/bg.svg);
  background-size: 100%;
  width: 100%;
  height: 100%;
  text-decoration: underline;
}
.new-list .area_new ul li .img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 30px solid transparent;
  border-bottom: 46px solid #dc0016;
}

.new-list .area_new ul li .img img {
  height: 300px;
  object-fit: cover;
}

.new-list .area_new ul li .date {
  display: block;
  font-size: 18px;
  color: #223D68;
  margin-top: 20px;
}

.new-list .area_new ul li .category {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #648DCE;
  border-radius: 40px;
  text-align: center;
  padding: 3px 15px;
  margin-top: 10px;
}

.new-list .area_new ul li .text {
  display: block;
  color: #000;
  line-height: 2;
  margin-top: 20px;
}

.new-list .area_new .page-link {
  display: flex;
  justify-content: center;
  text-align: center;
}

.new-list .area_new .page-link a.link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: #223D68;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  margin: 0 5px;
}
.new-list .area_new .page-link a.link.active {
  opacity: 0.7;
}

.new-list .area_new .page-link a.R-btn {
  width: 42px;
}

.new-list .area_new .page-link p {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 26px;
  color: #707070;
  margin: 0 10px;
}

.new-list iframe {
  width: 100%;
  border: none;
  vertical-align: bottom;
}

@media screen and (min-width: 1300px) {
  .new-list .area_new {
    max-width: 1200px;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 960px) {
  .new-list .area_new ul li {
    width: 48.3333%;
  }
  .new-list .area_new ul li .img img {
    height: 390px;
  }
}

@media screen and (max-width: 768px) {
  .new-list .area_new {
    margin: 0 auto 70px;
  }
  .new-list .area_new ul {
    display: block;
  }
  .new-list .area_new ul li {
    width: 90%;
    margin: 0 auto 70px;
  }
  .new-list .area_new ul li .date {
    font-size: 16px;
  }
  .new-list .area_new ul li .category {
    font-size: 12px;
  }
  .new-list .area_new ul li .text {
    font-size: 14px;
    margin-top: 15px;
  }
  .new-list .area_new .page-link a.link {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .new-list .area_new .page-link p {
    font-size: 20px;
    margin: 0 5px;
  }
  .new-list .area_new .page-link a.R-btn {
    width: 32px;
  }
  .new-list iframe {
    height: 5500px;
  }
  .new-list .area_new ul li .img img {
    height: 100%;
  }
}

/* ----------------------------------------

ニュース詳細ページ

---------------------------------------- */
.area_new_detail {
  max-width: 896px;
  margin: 0 auto 100px;
  height: 100%;
}

.area_new_detail .date {
  font-size: 18px;
  color: #223D68;
  margin-top: 20px;
}

.area_new_detail .category {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background-color: #648DCE;
  border-radius: 40px;
  text-align: center;
  padding: 3px 15px;
  margin-top: 10px;
}

.area_new_detail h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  background-color: #223D68;
  color: #fff;
  padding: 20px;
  line-height: 1.6;
  margin-top: 20px;
}
.area_new_detail h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.area_new_detail h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 35px solid transparent;
  border-bottom: 70px solid #dc0016;
}

.area_new_detail h3 {
  font-size: 22px;
  font-weight: 500;
  color: #223D68;
  margin: 60px auto 30px;
  position: relative;
  padding-bottom: 10px;
}
.area_new_detail h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #bebebe;
}
.area_new_detail h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  border-bottom: 3px solid #223D68;
}

.area_new_detail .img {
  margin: 30px auto 60px;
}

.area_new_detail .img_addition {
  margin-bottom: 30px;
}

.area_new_detail .text,
.area_new_detail .text_addition {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
}

.area_sns {
  margin: 100px auto 150px;
}

.area_sns a.btn {
  width: 300px;
  margin: 0 auto 70px;
}

.area_sns ul.sns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.area_sns ul.sns li {
  width: 160px;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  margin: 0 10px;
}
.area_sns ul.sns li:first-child {
  background-color: #2A2A2A;
  box-shadow: 0 5px 0 #000000;
}
.area_sns ul.sns li:last-child {
  background-color: #1F6ABA;
  box-shadow: 0 5px 0 #1E5188;
}
.area_sns ul.sns li:active  {
  box-shadow: none;
  transform: translateY(5px);
}

.area_sns ul.sns li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.area_sns ul.sns li a span {
  display: inline-block;
  width: 20px;
  padding-right: 10px;
}

#newdetail iframe {
 height: 100%; 
}

@media screen and (max-width: 768px) {
  .area_new_detail {
    width: 90%;
    margin: 0 auto 50px;
  }
  .area_new_detail .date {
    font-size: 16px;
  }
  .area_new_detail .category {
    font-size: 11px;
    padding: 5px 10px;
  }
  .area_new_detail h2 {
    font-size: 18px;
    padding: 10px;
  }
  .area_new_detail h2::after {
    border-left: 25px solid transparent;
    border-bottom: 40px solid #dc0016;
  }
  .area_new_detail h3 {
    font-size: 18px;
  }
  .area_new_detail .img {
    margin: 30px auto;
  }
  .area_new_detail .text,
  .area_new_detail .text_addition {
    font-size: 16px;
  }
  .area_sns {
    margin: 50px auto 100px;
  }
  .area_sns a.btn {
    margin: 0 auto 50px;
  }
  .area_sns ul.sns li {
    width: 35%;
  }
}


/* ----------------------------------------

ABOUT（JIGEについて）ページ

---------------------------------------- */
.about .area_program {
  margin: 0 auto;
}

.area_overview {
  margin: 100px auto;
}

.area_overview .wrap,
.area_blended_mobility .wrap {
  max-width: 900px;
  margin: 0 auto;
}

.area_overview .wrap p {
  line-height: 2;
  margin-bottom: 33px;
  color: #404040;
}

.area_overview .wrap .wrap_circle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.area_overview .wrap .circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: #94B6D8;
  color: #fff;
  text-align: center;
  margin: 0 -15px;
  /* opacity: 0.8; */
  position: relative;
  mix-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
}
.area_overview .wrap .circle:nth-child(2) {
  background: #81C1C9;
}
.area_overview .wrap .circle:last-child {
  background: #81C9A8;
}

.area_overview .wrap .circle .textcircle {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); */
}

.area_overview .wrap .circle h3 {
  width: 200px;
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 0;
}
.area_overview .wrap .circle:first-child h3 {
  padding: 24px 0;
}

.area_overview .wrap .circle p {
  color: #fff;
  font-size: 17px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #about h1::before {
    left: 20px;
  }
  .area_overview {
    width: 90%;
    margin: 70px auto;
  }
  .contents_about h2 {
    font-size: 16px;
    margin: 0 auto 20px;
    height: 50px;
  }
  .contents_about h2::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 50px solid #dc0016;
  }
  .area_overview .wrap p {
    font-size: 14px;
    margin-bottom: 23px;
  }
}

@media screen and (max-width: 480px) {
  .area_overview .wrap .wrap_circle {
    flex-wrap: wrap;
  }
  .area_overview .wrap .circle {
    width: 180px;
    height: 180px;
    margin: 0 -10px;
  }
  .area_overview .wrap .circle:first-child {
    order: 2;
  }
  .area_overview .wrap .circle:first-child h3 {
    padding: 10px 0;
  }
  .area_overview .wrap .circle:nth-child(2) {
    order: 1;
    margin: 0 11% -40px;
    
  }
  .area_overview .wrap .circle:last-child {
    order: 3;
  }
  .area_overview .wrap .circle h3 {
    font-size: 14px;
    padding: 0;
  }
  .area_overview .wrap .circle p {
    font-size: 12px;
    margin-bottom: 0;
  }
}

/*
Blended Mobility
---------------------------------------- */
.area_blended_mobility {
  background-color: #F0F4F8;
  padding-top: 100px;
  padding-bottom: 50px;
}

.area_blended_mobility h2 span.txt {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 450;
  font-size: 50px;
  padding: 0 8px;
}


.area_blended_mobility .wrap_flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

.area_blended_mobility .wrap_flex div {
  width: 60%;
}
.area_blended_mobility .wrap_flex div:first-child {
  width: 30%;
}

.area_blended_mobility .wrap_flex div h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #010101;
}

.area_blended_mobility .wrap_flex div p {
  font-size: 14px;
  line-height: 2;
}

.area_blended_mobility .box,
.area_blended_mobility .box2 {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
}

.area_blended_mobility .box h3 {
  font-size: 39px;
  color: #223D68;
  padding: 20px 0 10px;
  width: 580px;
  margin: 0 auto;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
}

.area_blended_mobility .box ul,
.area_blended_mobility .box2 ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.area_blended_mobility .box ul li {
  background-color: #CCE2F1;
  border-radius: 10px;
  color: #223D68;
  line-height: 1.5;
  width: 45%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px 10px;
  font-size: 17px;
  font-weight: 600;
}
.area_blended_mobility .box ul li span {
  display: contents;
  font-size: 14px;
}


.area_blended_mobility .box .on_site h3 {
  color: #B93341;
}

.area_blended_mobility .box .on_site ul li {
  background-color: #F5D1D4;
}

.area_blended_mobility .box2 .image {
  width: 25%;
  margin: 50px auto 0;
}

.area_blended_mobility .box2 h3 {
  font-size: 23px;
  font-weight: 600;
  color: #223D68;
  margin: 10px auto 0;
}

.area_blended_mobility .box2 p.text2 {
  margin: 40px auto;
  font-weight: 500;
}

.area_blended_mobility .box2 ul li {
  width: 45%;
  /* margin: 0 5px 10px; */
  margin: 0 15px 30px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 10px;
  color: #fff;
}

.area_blended_mobility .box2 ul li p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.area_blended_mobility .box2 ul li p:first-child {
  background-color: #223D68;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 0;
  font-size: 18px;
}
.area_blended_mobility .box2 ul li p:last-child {
  background-color: #81B8DB;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 70px;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}

.area_blended_mobility .wrap p.text {
  font-size: 23px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 50px;
  color: #223D68;
}

.area_blended_mobility .box3,
.area_blended_mobility .box4 {
  border: 2px solid #223D68;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  background-color: #fff;
}

.area_blended_mobility .box3 h3,
.area_blended_mobility .box4 h3 {
  background-color: #223D68;
  padding: 10px 0;
  color: #fff;
  font-size: 22px;
}

.area_blended_mobility .box3 h4,
.area_blended_mobility .box4 h4 {
  padding: 30px 0;
  color: #223D68;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.area_blended_mobility .box3 div,
.area_blended_mobility .box4 div {
  /* margin: 0 100px; */
  margin: 0 11%;
  border-top: 2px solid #223D68;
}

.area_blended_mobility .box4 div p {
  color: #404040;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  line-height: 1.8;
}

.area_blended_mobility .box4 div p a {
  color: #404040;
  text-decoration: none;
  word-break: break-all;
}
.area_blended_mobility .box4 div p a:hover {
  text-decoration: underline;
}

.area_blended_mobility .box4 {
  padding-bottom: 30px;
}

.area_blended_mobility .border {
  border-top: 2px solid #223D68;
  width: 400px;
  height: 0;
  margin: 50px auto;
}

.area_case-study ul {
  display: flex;
  justify-content: space-between;
}

.area_case-study ul li {
  width: 27.333%;
  border: 2px solid #223D68;
  background-color: #fff;
  padding: 20px;
  color: #223D68;
}

.area_case-study ul li h3 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 450;
  font-size: 35px;
  text-align: center;
  border-bottom: 2px solid #223D68;
  padding-bottom: 10px;
}

.area_case-study ul li p {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 20px;
  height: 210px;
  color: #404040;
}

@media screen and (max-width: 768px) {
  .area_blended_mobility {
    padding-top: 50px;
    padding-bottom: 50px;
  }  
  .area_blended_mobility .wrap_flex {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  .area_blended_mobility .wrap_flex div {
    width: 100%;
  }
  .area_blended_mobility .wrap_flex div:first-child {
    width: 60%;
    margin: 0 auto;
  }
  .area_blended_mobility .wrap_flex div h3 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 30px 0 10px;
  }
  .area_blended_mobility .wrap_flex div p {
    font-size: 12px;
  }
  .area_blended_mobility .sp_wrap {
    width: 90%;
    margin: 0 auto;
  }
  .area_blended_mobility .sp_wrap h2 {
    line-height: 1.5;
  }
  .area_blended_mobility .sp_wrap h2.sp_contents {
    height: 60px;
  }
  .area_blended_mobility .sp_wrap h2.sp_contents::before {
    border-left: 30px solid transparent;
    border-right: none;
    border-bottom: 60px solid #dc0016;
  }
  .area_blended_mobility .box h3 {
    width: 100%;
    font-size: 30px;
    padding: 20px 0;
  }
  .area_blended_mobility .box .on_site h3 {
    padding: 40px 0 20px;
  }
  .area_blended_mobility .box ul,
  .area_blended_mobility .box2 ul {
    display: block;
  }
  .area_blended_mobility .box ul li {
    width: 90%;
    height: 80px;
    margin: 0 auto 10px;
    font-size: 14px;
  }
  .area_blended_mobility .box ul li span {
    font-size: 12px;
  }
  .area_blended_mobility .wrap p.text {
    font-size: 18px;
  }
  .area_blended_mobility h2 span.txt {
    font-size: 36px;
  }
  .area_blended_mobility .box2 .image {
    width: 50%;
    margin: 30px auto 0;
  }
  .area_blended_mobility .box2 h3 {
    font-size: 17px;
    margin: 20px auto 0;
  }
  .area_blended_mobility .box2 p.text2 {
    margin: 40px auto 20px;
    line-height: 2;
  }
  .area_blended_mobility .box2 p.text2 .icon:last-child {
    padding-left: 10px;
  }
  .area_blended_mobility .box2 p.text2 .icon::before {
    content: '●';
    color: #81B9DB;
    font-size: 10px;
    vertical-align: middle;
    padding-right: 3px;
  }
  .area_blended_mobility .box2 p.text2 .icon2 {
    display: none;
  }
  .area_blended_mobility .box2 ul li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .area_blended_mobility .box2 ul li p:first-child {
    padding: 10px 0;
    font-size: 16px;
  }
  .area_blended_mobility .box2 ul li p:last-child {
    height: 60px;
    font-size: 14px;
  }
  .area_blended_mobility .box4 {
    margin-bottom: 40px;
  }
  .area_blended_mobility .box3 h3,
  .area_blended_mobility .box4 h3 {
    font-size: 18px;
  }
  .area_blended_mobility .box3 h4,
  .area_blended_mobility .box4 h4 {
    padding: 20px 0;
    font-size: 16px;
  }
  .area_blended_mobility .box3 div {
    margin: 0 20px;
  }
  .area_blended_mobility .box4 div p {
    font-size: 12px;
    margin-top: 20px;
  }  
  .area_blended_mobility .box4 div p a {
    text-decoration: underline;
  }
  .area_blended_mobility .border {
    width: 60%;
    margin: 40px auto;
  }
  .area_case-study {
    width: 90%;
    margin: 0 auto;
  }
  .area_case-study ul {
    display: block;
  }
  .area_case-study ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .area_case-study ul li h3 {
    font-size: 40px;
    width: 90%;
    margin: 20px auto;
  }
  .area_case-study ul li p {
    height: auto;
    width: 90%;
    margin: 30px auto;
    padding-top: 0;
  }
  .area_case-study ul li img {
    width: 90%;
    margin: 0 auto 20px;
    display: block;
  }
}


/*
JIGE組織体制（JIGE運営委員会）
---------------------------------------- */
.area_jige-organization {
  margin-top: 200px;
  position: relative;
}

.area_jige-organization h2 {
  letter-spacing: 5px;
}

.area_jige-organization .figure {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0;
  background-color: #F0F4F8;
  background-size: 90%;
}

.area_jige-organization .figure img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.area_jige-organization .figure img.sp {
  display: none;
}

.area_faculty-staff {
  max-width: 1060px;
  margin: 100px auto 200px;
}

.area_faculty-staff h3 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: #223D68;
  margin-bottom: 50px;
}

.area_faculty-staff ul {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  flex-wrap: wrap;
}

.area_faculty-staff ul li {
  width: 17%;
  margin: 0 20px 50px;
  cursor: pointer;
}
.area_faculty-staff ul li:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.area_faculty-staff ul li p {
  font-size: 12px;
  padding-top: 15px;
}
.area_faculty-staff ul li p:last-child {
  font-size: 14px;
  font-weight: bold;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .area_jige-organization {
    width: 90%;
    margin: 100px auto 0;
  }
  .area_jige-organization h2 {
    letter-spacing: 2px;
  }
  .area_jige-organization .figure img.pc {
    display: none;
  }
  .area_jige-organization .figure img.sp {
    display: block;
  }
  .area_faculty-staff {
    margin: 50px auto 100px;
  }
  .area_faculty-staff h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .area_faculty-staff ul li {
    width: 40%;
    margin: 0 10px 50px;
  }
}

/*
	popup-container
------------------------------ */
/* fixed */
body.fixed {
	overflow: hidden;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* padding: 30px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(120, 123, 131, 0.8);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  background-color: #fff;
  width: 80%;
  max-width: 900px;
  /* padding: 20px 70px; */
  padding: 70px;
}

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  z-index: 10;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 40px;
  height: 40px;
  margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  background-image: url(../img/arrow_left.png);
  background-repeat: no-repeat;
  background-size: 100%;
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  background-image: url(../img/arrow_right.png);
  background-repeat: no-repeat;
  background-size: 100%;
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: '';
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: '';
}

.modal__close-btn {
  width: 90px;
  height: 40px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* close */
.modal__close-btn {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 101;
  color: #98A6B5;
}

.modal__close-btn span {
  width: 100%;
  border-radius: 32px;
  display: block;
  position: relative;
  cursor: pointer;
  text-align: left;
}

.modal__close-btn span::before,
.modal__close-btn span::after {
  background: #98A6B5;
  width: 20px;
  height: 1.5px;
  position: absolute;
  top: 45%;
  right: 0;
  content: "";
}

.modal__close-btn span::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close-btn span::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* Swiperの矢印部分 */
@media (max-width: 768px) {
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    display: none;
  }
}

.swiper-wrapper {
  height: auto;
  align-items: center;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 0px 0px;
  grid-auto-flow: row;
}

.swiper-slide .image {
  width: 100%;
  grid-area: 1 / 1 / 2 / 2;
}

.swiper-slide h3 {
  color: #3B4043;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  color: #3B4043;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 20px;
  grid-area: 1 / 2 / 2 / 3;
}

.swiper-slide h3 span {
  display: inline-block;
  font-size: 16px;
  padding-bottom: 10px;
}

.swiper-slide p {
  color: #3B4043;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 15%;
  margin-left: 20px;
  grid-area: 1 / 2 / 2 / 3;
  overflow-y: scroll;
  height: 290px;
}
.swiper-slide p::-webkit-scrollbar {
  width: 4px;
}
.swiper-slide p::-webkit-scrollbar-thumb {
  background-color: #A9A9A9;
  border-radius: 2px;
}

.swiper-slide p span {
  font-weight: 500;
}


@media screen and (max-width: 768px) {
  .modal.is-active {
    z-index: 5000;
  }  
  .modal__overlay {
    height: auto;
  }
  .swiper-wrapper {
    align-items: flex-start;
  }
  .modal__content {
    width: 70%;
    padding: 50px 30px 0;
    height: auto;
  }
  .swiper-slide {
    width: 90%;
    height: auto;
    margin: 0 auto;
    grid-template-columns: 1fr 1.5fr;
  }
  .swiper-slide .image {
    width: 100%;
    grid-area: 1 / 1 / 2 / 2;
  }
  .swiper-slide h3 {
    font-size: 18px;
  }
  .swiper-slide h3 span {
    display: inline-block;
    font-size: 13px;
    padding-bottom: 10px;
  }
  .swiper-slide p {
    font-size: 13px;
    margin: 20px 0;
    margin-left: 0;
    padding: 0 5px;
    grid-area: 2 / 4 / 2 / 1;
    overflow-y: scroll;
    height: 450px;
    text-align: justify;
  }
  .modal__close-btn span::before,
  .modal__close-btn span::after {
    width: 15px;
  }  
}





















