@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Secular+One&display=swap');

/* 基本css */
html,body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #3C3C3C;
  line-height: 1.4;
  text-align: left;
}
main {
  display: block;
}
p,table,form {
  margin: 0;
}
ul,ol {
  margin: 0;padding: 0;list-style: none;
}
h1,h2, h3, h4, h5, p, a{
  padding: 0;
  margin: 0;
}
a {
  color: #C70019;
  text-decoration: none;
  cursor: pointer;
}
* {
  box-sizing: border-box;
}
img{
  width: 100%;
  height: auto;
  display: block;
}
::before,::after {
  box-sizing: inherit;
}

/*=== 全体共通 ===*/
/* 全体 */
.bg_color{
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #FCF9F4;
  z-index: -999;
}
.container {
  overflow: hidden;
}
.inner{
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
.in_inner{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner{
    padding: 0 10px;
  }
}
.center{
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sp_center{
    text-align: center;
    margin: 0 auto;
  }
}

/* text */
.co_ttl,
.co_jp_ttl{
  font-family: 'Secular One','Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #00749F;
  position: relative;
  line-height: 1;
  display: table;
  overflow-wrap: break-word;
  word-break: break-word;
}
.co_jp_ttl{
  font-size: 40px;
}
.co_ttl::after,
.co_jp_ttl::after{
  position: absolute;
  content: '';
  background: url(../img/parts02.svg) no-repeat;
  width: 50px;
  height: 35px;
  background-size: contain;
  bottom: 0;
  left: -30px;
}
.sub_ttl{
  font-size: 25px;
  font-weight: bold;
}
.sub_ttl::first-letter{
  color: #C70019;
}
.n_txt{
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .co_ttl{
    font-size: 38px;
  }
  .co_jp_ttl{
    font-size: 30px;
  }
  .co_ttl::after,
  .co_jp_ttl::after{
    width: 30px;
    height: 22px;
    left: -18px;
  }
  .sub_ttl{
    font-size: 20px;
  }
  .n_txt{
    font-size: 14px;
  }
}

/* margin */
.mt_130{margin-top: 130px!important;}
.mt_100{margin-top: 100px!important;}
.mt_70{margin-top: 70px!important;}
.mt_50{margin-top: 50px!important;}
.mt_30{margin-top: 30px!important;}
.mt_20{margin-top: 20px!important;}
.mt_10{margin-top: 10px!important;}
@media screen and (max-width: 767px) {
  .mt_130{margin-top: 70px!important;}
  .mt_100{margin-top: 50px!important;}
  .mt_70{margin-top: 40px!important;}
  .mt_50{margin-top: 30px!important;}
  .mt_30{margin-top: 20px!important;}
  .mt_20{margin-top: 15px!important;}
  .mt_10{margin-top: 5px!important;}
}

/* header */
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header{
  background: #fff;
  position: relative;
  display: block;
  height: 60px;
  width: 100vw;
}
.header::before{
  position: absolute;
  content: '';
  background: url(../img/parts01.svg) repeat-x;
  background-size: 200px 20px;
  width: 100vw;
  height: 20px;
  bottom: -12px;
  left: 0;
  filter: drop-shadow(0 1px 3px #00000015);
  z-index: -1;
}
.head_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.head_box a{
  color: #3C3C3C;
}
.head_box .logo{
  max-width: 200px;
}
.head_box .menu-btn {
  display: none;
}
.head_box .menu_list{
  display: flex;
  justify-content: space-between;
  width: 55%;
  font-size: 16px;
  font-weight: 700;
}
.head_box .menu_list li:hover a{
  color: #2897BF;
  position: relative;
}
.head_box .menu_list li:hover a::after{
  position: absolute;
  content: '';
  background: url(../img/parts02.svg) no-repeat;
  width: 27px;
  height: 18px;
  background-size: contain;
  bottom: 0;
  left: -18px;
}
.head_box .lang{
  font-size: 14px;
}
.head_box .lang a:hover{
  color: #C70019;
  position: relative;
}
.head_box .lang a:hover::after{
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  background: #C70019;
  opacity: .1;
  border-radius: 30px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .head_box .logo{
    max-width: 180px;
  }
  .head_box .menu_list{
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header{
    height: 40px;
  }
  .header::before{
    background-size: 120px 12px;
    height: 13px;
  }
  .head_box {
    padding: 5px 10px;
  }
  .head_box .logo{
    max-width: 150px;
    order: 1;
  }
  .head_box .menu_list {
    position: absolute;
    width: 100vw;
    top: 42px;
    padding: 30px 0;
    transition: 0.3s;
    transform: scale(1, 0);
    transform-origin: top;
    background: #fff;
    width: 100vw;
    max-height: calc(100vh - 42px);
    right: 0;
    overflow: scroll;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 4px #00000015;
  }
  .head_box .menu_list li {
    padding: 15px 0;
  }
  .head_box .menu_list a {
    font-size: 16px;
  }
  .head_box .lang{
    font-size: 12px;
    order: 2;
    margin: 0 15px 0 auto;
  }

  /* hamburger */
  .menu-btn:checked ~ .menu_list {
    transform: scale(1, 1);
  }
  .menu-icon {
    display: flex;
    position: relative;
    cursor: pointer;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    order: 3;
  }
  .navicon {
    background: #00749F;
    display: block;
    height: 2px;
    width: 30px;
    position: relative;
    transition: 0.3s;
  }
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #00749F;
    transition: 0.3s;
  }
  .navicon:before {
    top: 9px;
  }
  .navicon:after {
    bottom: 9px;
  }
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
    transition: 0.2s;
  }
}
@media screen and (max-width: 350px) {
  .head_box .logo{
    max-width: 120px;
  }
  .head_box .lang{
    font-size: x-small;
    order: 2;
    margin: 0 15px 0 auto;
  }
}

/* footer */
.footer{
  background: #2897BF;
  color: #fff;
}
.footer_co{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}
.footer_co img{
  height: 45px;
  width: auto;
  margin: 0 30px 0 0;
}
.footer_co .contact{
  font-size: 18px;
  margin: 0 0 0 auto;
  text-align: center;
}
.footer_co .contact a{
  display: inline-block;
  border-radius: 7px;
  border: 1px solid #fff;
  padding: 7px 10px;
  width: 300px;
  box-sizing: border-box;
  color: #fff;
  margin: 10px 0 0;
  font-size: 14px;
}
.footer_co .contact a:hover{
  background: #ffffff20;
}
.footer small{
  background: #00749F;
  text-align: center;
  display: block;
  padding: 10px;
}
@media screen and (max-width: 900px) {
  .footer_co img{
    margin: 10px 10px 20px;
  }
  .footer_co .contact{
    width: 100%;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_co{
    padding: 40px 10px;
  }
  .footer_co img{
    width: 90%;
    max-width: 300px;
    height: auto;
  }
  .footer_co .contact{
    font-size: 16px;
  }
  .footer_co .contact a{
    width: 100%;
    max-width: 300px;
  }
  .footer small{
    font-size: 12px;
  }
}

/* btn */
.link_btn{
  min-width: 250px;
  box-sizing: border-box;
  padding: 10px 40px;
  background: #2897BF;
  border-radius: 7px;
  color: #fff;
  display: table;
  position: relative;
  transition: .3s;
  font-size: 20px;
  font-weight: 500;
}
.link_btn::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #A3D9ED;
  border: 1px solid #5BB8D9;
  border-radius: 7px;
  top: 4px;
  left: 10px;
  z-index: -1;
  transition: .3s;
}
.link_btn:hover{
  background: #5BB8D9;
  transition: .3s;
}
.link_btn:hover::after{
  top: 0;
  left: 0;
  transition: .3s;
}
@media screen and (max-width: 767px) {
  .link_btn{
    font-size: 17px;
    padding: 7px 15px;
  }
}
@media screen and (max-width: 350px) {
  .link_btn{
    min-width: auto;
    width: 100%;
    padding: 10px 20px;
  }
  .link_btn::after{
    left: 5px;
  }
}
/*=== 全体共通-END ===*/

/*=== TOP ===*/
/* mv */
.mv_box{
  background: #00749F;
  padding: 60px 0 0;
  position: relative;
}
.mv_box video{
  max-width: 1300px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.mv_box p{
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 0;
  margin: auto;
  font-family: 'Secular One', sans-serif;
  font-size: 20px;
  color: #fff;
  display: table;
  animation: scroll-move 1s infinite alternate ease-in-out;
}
.mv_box span{
  position: relative;
}
.mv_box span::after{
  position: absolute;
  content: '';
  display: table;
  border-top: 13px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -10px;
  right: 0;
  left: 0;
  margin: auto;
  animation: scroll-move 1s infinite alternate ease-in-out;
}
@keyframes scroll-move {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
@media screen and (max-width: 767px) {
  .mv_box{
    padding: 40px 0 0;
  }
  .mv_box p{
    bottom: 30px;
    font-size: 14px;
  }
  .mv_box span::after{
    border-top: 8px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    bottom: -5px;
  }
}

/* news */
.news_box{
  background: #3C3C3C;
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
}
.news_box span{
  font-weight: 500;
  border: 1px solid #fff;
  padding: 3px 10px;
  margin: 5px 10px 5px 0;
  display: inline-block;
}
.news_box a{
  color: #fff;
}
.news_box a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .news_box{
    font-size: 13px;
    padding: 7px 0;
  }
  .news_box span{
    padding: 2px 7px;
  }
}

/* Outline */
.outline_box{
  display: flex;
  justify-content: center;
  align-items: center;
}
.outline_con{
  padding: 0 30px 0 0;
  box-sizing: border-box;
}
.outline_img{
  float: right;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .outline_box{
    flex-direction: column-reverse;
  }
  .outline_con{
    padding: 0;
  }
  .outline_img{
    width: 100%;
    max-width: 450px;
    margin: 20px auto 0;
  }
}

/* Future */
@media screen and (min-width: 1200px) {
  .future_con{
    padding: 50px 70px;
  }
}
.future_con{
  display: flex;
  align-items: center;
  background: #00749F;
  padding: 50px 5%;
  border-radius: 30px;
}
.future_txt{
  color: #fff;
}
.future_txt .check{
  border: 1px solid #fff;
  background: #ffffff10;
  padding: 15px 30px;
  margin: 0 0 0 30px;
  position: relative;
}
.future_txt .check::before{
  position: absolute;
  content: '✔︎';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #00749F;
  top: 0;
  left: -40px;
}
.future_img{
  width: 40%;
  min-width: 350px;
  margin: 0 0 0 30px;
}
@media screen and (max-width: 800px) {
  .future_con{
    flex-direction: column-reverse;
    padding: 30px 20px;
  }
  .future_txt .check{
    padding: 10px 15px;
    margin: 0 0 0 30px;
  }
  .future_txt .check::before{
    width: 22px;
    height: 22px;
    font-size: 18px;
    left: -30px;
  }
  .future_img{
    min-width: auto;
    max-width: 100%;
    width: auto;
    max-height: 50vh;
    height: 100%;
    margin: 0 0 20px;
  }
}

/* Project members */
.partnerships{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.partnerships li{
  width: 31%;
  margin: 0 0 20px;
  background: #fff;
  height: 130px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-shadow: 0 1px 6px #00000015;
}
.partnerships li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.members_list{
  height: max-content;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  padding: 0 0 40px;
}
.members_list::-webkit-scrollbar{
  height: 8px;
}
.members_list::-webkit-scrollbar-track{
  background-color: #E4EFF5;
}
.members_list::-webkit-scrollbar-thumb{
  background-color: #00749F;
  width: 100px;
}
.members_list li{
  min-width: 21%;
  margin: 0 2%;
}
.members_list img{
  width: 100%;
  display: block;
  border-radius: 50%;
}
.members_neme{
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 5px;
  letter-spacing: -1px;
}
.members_leader{
  color: #C70019;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .members_list{
    padding: 0 0 20px;
  }
  .members_list li{
    min-width: 31%;
    margin: 0 1.3%;
  }
  .members_neme{
    font-size: 16px;
    margin: 10px 0 0;
  }
  .members_leader{
    font-size: 14px;
  }
}
@media screen and (max-width: 530px) {
  .members_neme{
    font-size: 14px;
  }
  .members_leader{
    font-size: 12px;
  }
}
@media screen and (max-width: 440px) {
  .members_list li{
    min-width: 46%;
    margin: 0 2%;
  }
}

/* Interview */
.interview{
  display: flex;
  align-items: center;
}
.interview_con{
  width: 50%;
  margin: 0 4% 0 1%;
}
.interview_mv{
  width: 45%;
}
.interview_mv iframe{
  width: 100%;
  height: 250px;
}
.interview_mv p{
  font-size: 14px;
}
@media screen and (max-width: 980px) {
  .interview_mv iframe{
    height: 27vw;
  }
}
@media screen and (max-width: 800px) {
  .interview{
    flex-direction: column-reverse;
  }
  .interview_con{
    width: 100%;
    margin: 0;
  }
  .interview_mv{
    width: 100%;
    margin: 30px 0 0;
    text-align: center;
  }
  .interview_mv iframe{
    height: 40vw;
  }
  .interview_mv p{
    font-size: 12px;
  }
}

/* About */
.about_list{
  display: flex;
  justify-content: space-between;
}
.about_con{
  background: #fff;
  box-shadow: 0 1px 6px #00000015;
  width: 48%;
  border-radius: 30px;
  padding: 50px;
  box-sizing: border-box;
}
.about_con img{
  width: 100%;
  height: 70px;
  object-fit: contain;
}
.about_con span{
  font-weight: 700;
  color: #C70019;
}
@media screen and (max-width: 800px) {
  .about_list{
    flex-direction: column;
  }
  .about_con{
    width: 100%;
    padding: 20px;
    margin: 0 0 20px;
  }
}
/*=== TOP-END ===*/

/*=== 下層ページ共通 ===*/
/* title */
.page_ttl{
  min-height: 120px;
  background:linear-gradient(to bottom left,#00749F 50%,#2897BF 51%);
  color: #fff;
  font-weight: 700;
  margin: 60px 0 0;
}
.page_ttl .ttl_box{
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 30px;
  line-height: 1;
  font-size: 16px;
}
.page_ttl .ttl_box h1{
  font-size: 50px;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .page_ttl{
    min-height: 75px;
    margin: 40px 0 0;
  }
  .page_ttl .ttl_box{
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 14px;
  }
  .page_ttl .ttl_box h1{
    font-size: 38px;
    margin: 0 10px 8px 0;
  }
  .page_ttl .ttl_box p{
    margin: 0 0 8px 0;
  }
}

/* pankuzu */
.pankuzu{
  display: flex;
  font-size: 14px;
}
.pankuzu a{
  color: #3C3C3C;
  margin: 0 5px 0 0;
}
.pankuzu a:hover{
  color: #C70019;
  text-decoration: underline;
}
.pankuzu li{
  margin: 0 5px 0 0;
}
@media screen and (max-width: 767px) {
  .pankuzu{
    font-size: 12px;
  }
}
/*=== 下層ページ共通-END ===*/

/*=== NEWSページ ===*/
/* 記事一覧 */
.news_con{
  display: flex;
  justify-content: space-between;
}
.news_list{
  width: 73%;
}
.news_bnr{
  width: 24%;
}
.news_item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: .3s;
  border-bottom: 1px solid #3C3C3C;
  padding: 0 0 30px;
  margin: 0 0 30px;
}
.news_item:hover{
  opacity: .7;
  transition: .3s;
}
.news_item a{
  display: contents;
}
.news_img{
  width: 24%;
}
.news_txt{
  width: 73%;
}
.news_ttl{
  color: #00749F;
  font-size: 20px;
  font-weight: 700;
}
.news_date{
  font-size: 14px;
  margin: 15px 0 5px;
  color: #aaa;
}
.news_dsc{
  color: #3C3C3C;
}
.news_dsc span{
  color: #C70019;
  font-weight: 500;
}
.news_item:hover .news_dsc span{
  color: #00749F;
}
@media screen and (max-width: 767px) {
  .news_con{
    flex-direction: column;
    align-items: center;
  }
  .news_list{
    width: 100%;
  }
  .news_bnr{
    width: 100%;
    max-width: 450px;
    margin: 50px 0 0;
  }
  .news_item{
    padding: 0 0 20px;
    margin: 0 0 20px;
  }
  .news_img{
    width: 18%;
  }
  .news_txt{
    width: 80%;
  }
  .news_ttl{
    font-size: 17px;
  }
  .news_date{
    font-size: 12px;
    margin: 5px 0;
  }
  .news_dsc{
    line-height: 1.3;
  }
}
/* 記事 */
#news .ttl{
  color: #00749F;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 55px;
  font-size: 25px;
  margin: 0 0 20px;
}
#news .ttl::after{
  position: absolute;
  content: '';
  background: url(../img/parts02.svg) no-repeat;
  width: 48px;
  height: 35px;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#news .h3_ttl{
  color: #00749F;
  font-weight: 700;
  background: #EFE8DE;
  font-size: 22px;
  padding: 10px 20px;
  margin: 40px 0 20px;
}
#news .date{
  font-size: 14px;
  margin: 0 0 30px;
}
#news img{
  max-height: 400px;
  margin: 0 auto 50px;
  max-width: 100%;
  width: auto;
}
#news p{
  margin: 20px 0;
}
#news a{
  text-decoration: underline;
  overflow-wrap: break-word;
}
#news a:hover{
  color: #00749F;
}
#news ul li{
  list-style: decimal;
  margin: 0 0 0 40px;
}
#news table{
  margin: 30px auto;
}
#news table td{
  padding: 5px 5px 5px 20px;
}
#news .link_btn{
  text-decoration: none;
  line-height: 1.2;
  padding: 5px 15px;
  font-size: 16px;
  min-width: auto;
  margin: 10px 0 0;
  display: table;
}
#news .link_btn::after{
  display: none;
}
@media screen and (max-width: 767px) {
  #news .ttl{
    padding: 0 0 0 35px;
    font-size: 20px;
    margin: 0 0 10px;
  }
  #news .h3_ttl{
    font-size: 18px;
    padding: 5px 10px;
  }
  #news .ttl::after{
    width: 30px;
    height: 22px;
  }
  #news .date{
    font-size: 12px;
    margin: 0 0 20px;
  }
  #news img{
    max-height: 300px;
    margin: 0 auto 30px;
  }
  #news ul li{
    margin: 0 0 0 30px;
  }
  #news table tr{
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 400px) {
  #news .ttl{
    font-size: 18px;
  }
}
/*=== NEWSページ-END ===*/

/*=== プロジェクトメンバー ===*/
#member{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#member .info{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 47%;
  height: fit-content;
}
#member .info img{
  width: 38%;
  border-radius: 50%;
}
#member .profile{
  width: 55%;
}
#member .leader{
  color: #00749F;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -1px;
}
#member .leader span{
  color: #C70019;
}
#member .name{
  font-weight: 500;
  font-size: 30px;
  margin: 5px 0 0;
}
#member .name_tt{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
#member .link{
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  background: #00749F;
  display: inline-block;
  margin: 25px 0 0;
  text-align: center;
}
#member .link:hover{
  background: #2897BF;
  transition: .3s;
}
#member .comment{
  width: 100%;
  margin: 30px 0 0;
}
#member .line{
  width: calc(100% - 50px);
  height: 4px;
  padding: 0 25px;
  background: url(../img/border.svg) repeat-x;
  background-size: 17px 4px;
  position: relative;
  margin: 50px 0;
}
#member .line::before,
#member .line::after{
  position: absolute;
  content: '';
  background: url(../img/parts04.svg) no-repeat;
  width: 33px;
  height: 30px;
  background-size: contain;
  bottom: 0;
  top: 0;
  margin: auto;
}
#member .line::before{
  left: -35px;
}
#member .line::after{
  right: -35px;
  transform: scale(-1, 1);
}
#member .line.sp{
  display: none;
}
@media screen and (max-width: 900px) {
  #member .info img{
    width: 33%;
  }
  #member .profile{
    width: 63%;
  }
  #member .leader{
    font-size: 16px;
  }
  #member .name{
    font-size: 27px;
  }
  #member .link::after{
    right: 13px;
  }
}
@media screen and (max-width: 767px) {
  #member .leader{
    font-size: 14px;
  }
  #member .name{
    font-size: 20px;
  }
  #member .name_tt{
    font-size: 14px;
  }
  #member .link{
    font-size: 12px;
    padding: 5px 7px;
    margin: 10px 0 0;
  }
  #member .comment{
    margin: 10px 0 0;
    line-height: 1.6;
  }
  #member .line{
    width: calc(100% - 40px);
    margin: 30px 0;
  }
  #member .line::before,
  #member .line::after{
    width: 25px;
    height: 23px;
  }
  #member .line::before{
    left: -25px;
  }
  #member .line::after{
    right: -25px;
    transform: scale(-1, 1);
  }
}
@media screen and (max-width: 600px) {
  #member .info{
    width: 100%;
    justify-content: space-evenly;
  }
  #member .info img{
    max-height: 130px;
    max-width: 130px;
    height: 100%;
    object-fit: contain;
  }
  #member .name{
    font-size: 18px;
  }
  #member .name_tt{
    font-size: 12px;
  }
  #member .line.sp{
    display: block;
  }
}
/*=== プロジェクトメンバーページ-END ===*/

/*=== 採用情報 ===*/
/* 求人 */
.careers{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.careers_item{
  width: 48.5%;
  background: #fff;
  border: 3px solid #A3D9ED;
  border-radius: 20px;
  padding: 20px 30px 20px 65px;
  margin-bottom: 20px;
}
.careers_name{
  font-weight: 500;
  font-size: 20px;
  position: relative;
  color: #00749F;
}
.careers_name::before{
  position: absolute;
  content: '';
  background: url(../img/parts03.svg) no-repeat;
  background-size: contain;
  width: 32px;
  height: 30px;
  left: -38px;
  top: 0;
}
.careers_con li{
  font-size: 16px;
  padding: 0 0 0 15px;
  position: relative;
  margin: 10px 0;
}
.careers_con li::before{
  position: absolute;
  content: '';
  background: #3C3C3C;
  width: 10px;
  height: 2px;
  left: 0;
  top: 11px;
}
@media screen and (max-width: 767px) {
  .careers{
    justify-content: center;
  }
  .careers_item{
    width: 100%;
    max-width: 600px;
    padding: 15px;
    margin-bottom: 15px;
  }
  .careers_name{
    font-size: 18px;
    padding: 0 0 0 30px;
  }
  .careers_name::before{
    width: 23px;
    height: 21px;
    left: 0;
    top: 2px;
  }
  .careers_con li{
    font-size: 14px;
    padding: 0 0 0 20px;
  }
  .careers_con li::before{
    width: 7px;
    top: 9px;
    left: 10px;
  }
}

/* 応募方法 */
.apply{
  background: #EFE8DE;
  border-radius: 20px;
  padding: 60px;
}
.apply_ttl{
  color: #00749F;
  font-weight: 500;
  font-size: 40px;
  position: relative;
  display: table;
  line-height: 1;
  margin: 0 auto;
}
.apply_ttl::before,
.apply_ttl::after{
  position: absolute;
  content: '';
  background: url(../img/parts02.svg) no-repeat;
  background-size: contain;
  width: 48px;
  height: 35px;
  bottom: -5px;
  margin: auto;
}
.apply_ttl::before{
  left: -60px;
}
.apply_ttl::after{
  right: -60px;
  transform: scale(-1, 1);
}
.apply_txt{
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .apply{
    padding: 30px 20px;
  }
  .apply_ttl{
    font-size: 35px;
  }
  .apply_ttl::before,
  .apply_ttl::after{
    width: 35px;
    height: 25px;
    bottom: 0;
  }
  .apply_ttl::before{
    left: -40px;
  }
  .apply_ttl::after{
    right: -40px;
  }
  .apply_txt{
    font-size: 16px;
    text-align: left;
  }
}
/*=== 採用情報-END ===*/

/*=== 研究内容 ===*/
.research{
  background: #EFE8DE;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 50px 4%;
}
.research_img{
  width: 30%;
}
.research_con{
  width: 65%;
}
.research_ttl{
  color: #2897BF;
  font-weight: 500;
  font-size: 25px;
  padding: 0 0 10px;
  border-bottom: 2px solid #2897BF;
}
.research_txt{
  margin: 20px 0 0;
}
.research_txt span{
  font-weight: 700;
  color: #C70019;
}
@media screen and (max-width: 767px) {
  .research{
    padding: 20px 15px;
  }
  .research_img{
    width: 100%;
    max-width: 450px;
    max-height: 400px;
    height: 100%;
    margin: 0 auto 20px;
    order: 1;
  }
  .research_con{
    width: 100%;
    order: 2;
  }
  .research_ttl{
    font-size: 18px;
    padding: 0 0 10px;
  }
  .research_txt{
    margin: 15px 0 0;
  }
}

/* 研究課題の紹介 */
.introduction{
  background: #fff;
  border: 3px solid #A3D9ED;
  border-radius: 20px;
  padding: 50px 4%;
}
.introduction_box{
  display: flex;
  margin: 20px 0 0;
}
.introduction img{
  width: 100%;
  max-width: 300px;
  margin: 0 0 0 2%;
}
.introduction_ttl{
  color: #00749F;
  font-size: 25px;
  font-weight: 500;
  padding: 0 10px;
}
.introduction_member{
  font-weight: 700;
  padding: 0 10px 10px;
  border-bottom: 3px solid #2897BF;
}
@media screen and (max-width: 767px) {
  .introduction{
    padding: 20px 15px;
  }
  .introduction_box {
    flex-direction: column;
    align-items: center;
  }
  .introduction_ttl{
    font-size: 20px;
  }
  .introduction_box{
    margin: 15px 0 0;
  }
}
/* 研究計画概略 */
/*=== 研究内容-END ===*/
