@charset "UTF-8";
/* CSS Document */

/* reset
----------------------------------------------------------------------------------------------------*/
a,article,body,dd,div,dl,dt,em,form,footer,header,h1,h2,h3,h4,h5,h6,html,i,iframe,img,label,legend,li,nav,ol,p,section,main,span,table,tbody,tfoot,thead,time,tr,th,td,ul,video{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;white-space:normal;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.7;text-align:left;}textarea{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.4;text-align:left}article,footer,header,nav,section,main{display:block}table{border-collapse:collapse;border-spacing:0}


html{
	background-color: #666;
}

body {
background-color: #fff;
margin: 0;
padding: 0;
font: 20px/1.5 "Noto Sans JP", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;;
font-weight: 100;	
overflow-wrap: break-word;
    text-align: justify!important;
}

b, strong{
    font-weight: bold;
}

/* common
----------------------------------------------------------------------------------------------------*/
/*　/Top page 戻るボタン */
.top-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  padding-top: 2px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  z-index: 9999;
  pointer-events: none;
}

.top-button.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/*　/Top page 戻るボタン */

:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

.font30{
    font-size: 28px;
    line-height: 1.4em;
    margin-bottom: 30px;
}

/* •·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•· */


.reveal-text,
.reveal-text::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  font-size: 10vw;
  animation-name: clip-text;
  color: #FFF;
  white-space: nowrap;
  cursor: default;
  
  &::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2f5e7f;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: text-revealer;
  }
  
}


@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}


@keyframes text-revealer {
  
  0%, 50% {
    transform-origin: 0 50%;
  }
  
  60%, 100% {
    transform-origin: 100% 50%;   
  }

  
  60% {
    transform: scaleX(1);
  }
  
  100% {
    transform: scaleX(0);
  }
}

.action{
    opacity:  0;
    transform: translate(10px,0);
    transition: all 700ms;
}

.action.scrollin{
    opacity: 1;
    transform: translate(0,0);
}


h1{
    color: #471933;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    padding-top: 25px;
}

h2{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #000;
    margin-top: 50px;
    border-radius: 8px;
}

h2 span{
    border-bottom: 3px solid #000;
    padding: 14px 18px 8px 0;
}


h2.h2top{
    margin-top: 20px;
}

h2 span:before{
    content: '-';
    margin-right: 10px;
    margin-left: 10px;
}


h2.group-name{
    font-size: 28px;
    background-color: #29656e;
    color: #fff;
}

h2.group-name span{
    border-bottom: none;
}

h3{
	font-size: 24px;
}

.c-heading3{
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
}

.group-leader{
    font-weight: 100;
    font-size: 22px;
    text-align: right;
    padding-right: 20px;
}

.ant{
    font-size: 0.7em;
}

a{
    color: #008b9d;
}

a:hover{
    opacity: 0.6;
}

.content-inner{
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 40px 10px;
}


.c-section__vertical--slim{
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px 10px;
}


.home .c-section__vertical--slim{

}

.c-section__vertical--medium{
    max-width: 1040px;
    margin: 0 auto;
    padding: 10px 20px 10px;
}

.primary-page{
    max-width: 1000px;
    display: inline-block;
    margin-right: 30px;
    margin-left: 10px;
}

.tagpage .main .content-inner{
    width: 1000px;
}

.tagpage .main{
    padding-top: 20px;
}

.page .main{
    padding-top: 140px;
}


.btn a{
    text-decoration: none;
    color: #fff;
    background-color: #2f5e7f;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 0;
}

.btn a:before{
    font-family: FontAwesome;
    content: '\f0da';
    margin-right: 10px;
}

.c-year-nav__item a:before{
    font-family: FontAwesome;
    content: '\f0da';
    margin-right: 10px;
}

h3.btn.single.a-none{
    color: #fff;
    height: 54px;
    text-indent: -0.5em;
    padding-left: 2em;
    padding-top: 26px;
    text-align: left;
	font-size: 18px;
	font-weight: bold;
}

ul, li{
list-style-type: none;
}

.pdt40{

}

em{
    font-style: italic;
}

/* page common
----------------------------------------------------------------------------------------------------*/

.breadcrumb{
    max-width: 1100px;
    min-width: 730px;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 16px;
}

.breadcrumb ul li{
    display: inline-block;
    margin-right: 10px;
    text-indent: -1em;
    padding-left: 1em;
}

.breadcrumb ul li:before{
    font-family: FontAwesome;
    content: '\f105';
    margin-right: 10px;
}

.breadcrumb ul li:nth-child(1):before{
    content: none;
}

/*
#page-visual{
    background-color: #eee;
    background-image: url("../images/main_page.png");
    background-size: 100%;
    background-position: center;
    height: 100px;
    position: relative;
}

#page-visual::before{
	content: "";
	position: absolute;
    	width: 100%;
	height: 100%;
    background-color: #fff;
   mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
*/

h1{
    position: relative;
    z-index: 1;
}

.page #header ul.year .btn a{
    min-height: 40px;
}

.page .btn a{
    background-color: #305e7f;
    color: #fff;
    font-size: 18px;
    padding: 0;
    border: 1px solid #ccc;
    margin-bottom: 0;
    min-height: 80px;
    display: table-cell;
    vertical-align: middle;
}

.year .btn a{
    display: inline-block;
    width: auto;
    height: auto;
    margin-top: 13px;
    margin-bottom: 10px;
    font-size: 22px;
    background-color: transparent;
    border: none;
    padding: 0;
    color: #000;
    font-weight: 400;
}

.secondary .year .btn a{
    background-color: #2c5572;
}

ul.year{
    width: 100%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    padding-top: 0;
}

#header ul.year{
    width: 100%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    padding-top: 0;
    border-top: 1px solid #ccc;
	padding-left: 15px;
}

.year li.btn{
    display: inline-block;
    width: 1000px;
}

h3.btn{
    padding-right: 10px;
}

/* header
----------------------------------------------------------------------------------------------------*/


#header{
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index:999;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.mana-logo{
    max-width: 300px;
    height: auto;
    margin-top: 5px;
    margin-left: 15px;
}

.wpi-logo{
    margin-right: 30px;
}
    
.nims-logo, .wpi-logo{
    float: right;
    width: 70px;
    margin-top: 10px;
    padding-left: 10px;    
}


/* top main
----------------------------------------------------------------------------------------------------*/

#main-visual{
    background-color: #fff;
    background-position: center;
    background-size: 100%;
    background-position: top right;
}

#main-visual2{
    background-color: #fff;
    background-image: url("../images/top_back2.png");
    background-position: center;
    background-size: 140%;
    background-position: top right;
}


.top-visual {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 2400 / 1240;
  position: relative;  
  opacity: 0;
  animation: fadeInBg 2.5s ease-out forwards;
  overflow: hidden;
}

@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.top-title {
  position: absolute;
  top: 36%;
  left: 0;
  /*transform: translateX(-50%);*/
  z-index: 2;
    
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}


@keyframes slideInLeft {
  0% {
    transform: translate(-150%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(-0%, 0);
    opacity: 1;
  }
}

.top-title img {
  max-width: 38vw;
  height: auto;
  display: block;
  padding-bottom: 5px;
}



.title{
    color: #254962;
    font-size: 54px;
    font-weight: bold;
    margin-top: 140px;
    margin-bottom: 30px;
}

.title-txt{
    font-size: 22px;
    display: inline-block;
    border-radius: 10px;
	position: relative;
	top: -90px;
}

.home .main-contents h1{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.4em;
}

.home .primary{
    width: 64%;
    margin-right: 2%;
    vertical-align: top;
    display: inline-block;
    background: #e2eef2;
    padding: 0 2% 2% 2%;
    border-radius: 10px;
}

.home .secondary{
    width: 29%;
    vertical-align: top;
    display: inline-block;
}

.home .secondary .btn a{
    width: 200px;
    text-align: center;
    padding: 20px 30px;
    color: #fff;
    font-size: 16px;
}

.about-mana{
    background-image: url("../images/main_page.png");
    background-size: 100%;
	background-position: center;
}

.c-year-btn{
    font-size: 55px;
    font-weight: bold;
    position: relative;
    top: -130px;
}

.c-year-btn a{
    text-decoration: none;
}

.more a{
    margin-top: 20px;
}

.search{
    text-align: center;
    margin-top: 20px;
}

.search form{
    text-align: center;
}

.search .formtxt{
    padding-block: 9px;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #2f5e7f;
}

.tag{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;    
}

.tag .wrapper{
    display: inline-block;
}

.tag .wrapper a{
    color: #391947;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #391947;
    border-radius: 10px;
}

.tag.group-keyword .wrapper a{
    color: #000;
    border-color: #000;
    font-size: 14px;
    padding:  8px 14px
}

.tag.group-keyword{
    margin: 0 0 20px 0;
}



/* greeting
----------------------------------------------------------------------------------------------------*/

.greeting-left{
    width: 28%;
    vertical-align: top;
    display: inline-block;
}

.greeting-left img{
    width: 100%;
    height: auto;
}

.greeting-right{
    width: 65%;
    padding: 0 2%;
    vertical-align: top;
    display: inline-block;
}

.factandfigures{
    font-size: 50px;
}

.factandfigures ul{
    font-size: 0;
}


.factandfigures ul{
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.factandfigures ul li{
    display: inline-block;
}

.factandfigures ul li:nth-child(1){
    font-size: 20px;
    vertical-align: top;
    margin-top: 8px;
}

.factandfigures ul li:nth-child(2){
    font-size: 30px;
    font-weight: bold;
    color: #471933;
}

.factandfigures ul li:nth-child(2):before{
    font-family: FontAwesome;
    content: '\f178';
    margin-left: 10px;
    margin-right: 10px;
    color: #9C6B87;
}


.factandfigures ul li:nth-child(3){
    font-size: 20px;
    margin-left: 5px;
}

/*消す予定*/
.researchresults .wrapper{
    width: 30%;
    margin-right: 2.6%;
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: top;
}

.researchresults .wrapper a{
  text-indent: -1em;
  padding-left: 1em;
text-align: center;
}

.researchresults .wrapper p{
    padding: 4px;
}

/*消す予定 ここまで*/

.research-results .wrapper{
    margin-bottom: 10px;
}

.research-results .col-l{
    display: inline-block;
    width: 35%;
}

.research-results .col-r{
    display: inline-block;
    width: 52%;
    padding-left: 2%;
    vertical-align: top;
}


.research-results .btn a{
    width: 50%;
    padding: 15px 30px;
}





/* field
----------------------------------------------------------------------------------------------------*/
.field-left{
    width: 100%;
	height: auto;
    vertical-align: top;
    display: inline-block;
}

.field-left img{
    width: 100%;
    height: auto;
}

.field-right{
    width: 100%;
    padding: 10px 0 0;
    vertical-align: top;
    display: block;
}



.groups-and-teams .wrapper{
    width: 49%;
    margin-right: 0.6%;
    display: inline-block;
    margin-bottom: 7px;
    background-color: #d24d4a;
    vertical-align: top;
}

.groups-and-teams.blue .wrapper{
    background-color: #2b99cd;
}

.groups-and-teams.yellow .wrapper{
    background-color: #d7a500;
}

.groups-and-teams.orange .wrapper{
    background-color: #ea7203;
    vertical-align: top;
}


.groups-and-teams .wrapper a{
    text-indent: 0;
    padding-left: 1.1em;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    text-align: left;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    line-height: 1.3em;
	font-weight: bold;
}

.groups-and-teams .wrapper:nth-of-type(4n){
    margin-right: 0;
}


.groups-and-teams.irohenkou .wrapper a{
    background-color: #2f5e7f;
}

.groups-and-teams.irohenkou{
    margin-bottom: 20px;
}




/* Groups
----------------------------------------------------------------------------------------------------*/

.groups h3{
    font-size: 24px;
    font-weight: bold;
    margin-top: 50px;
    border: 1px solid #ccc;

}

.group-overview{
    font-size: 22px;
}

.group-title{
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
}

.groups-left{
    width: 100%;
    vertical-align: top;
    display: inline-block;
    text-align: justify;
    margin-bottom: 30px;
}

.groups-left img{
    width: 100%;
    height: auto;
}


.groups-right{
    width: 100%;
    padding: 0 2%;
    vertical-align: top;
    display: inline-block;
}

.groups-right img{
    padding-top: 20px;
    padding-bottom: 10px;
}


ol.c-reference-list {
  list-style: none;
  counter-reset: ref-counter;
}

ol.c-reference-list li {
text-indent: -2em;
    padding-left:2.6em; 
}

ol.c-reference-list li::before {
  counter-increment: ref-counter; 
  content: "[" counter(ref-counter) "] ";
  font-weight: bold;
  margin-right: 0.2em;
  color: #333;
}

    .references {
      list-style: none;
      counter-reset: ref-counter;
    }

    .references li::before {
      counter-increment: ref-counter;
      content: "[" counter(ref-counter) "] ";
      font-weight: bold;
      margin-right: 0.2em;
      color: #333;
    }


ol.references li{
    padding: 10px;
    border-bottom: 1px dashed #666;
text-indent: -2em;
    padding-left:2.6em; 
}


ul.activities li{
    padding: 10px;
    border-bottom: 1px dashed #666;
}

ul.activities li .date{
    width: 15%;
    display: inline-block;
    vertical-align: top;
}

ul.activities li .caption{
    width: 84%;
    display: inline-block;
}

.member-wrap{
    width: 45%;
    display: inline-block;
    margin-right: 2%;
    margin-bottom: 24px;
}


.member-left{
    width: 30%;
    height: auto;
    display: inline-block;
    vertical-align: top;
}

.member-left-img{
    max-height: 146px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-left img{
    min-height: 146px;
	max-width: 134px;
    width: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.member-right{
    width: 64%;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    margin-left: 3%;
}

.name{
    font-size: 20px;
    font-weight: bold;
}


.groups .groups-and-teams h3{
    margin-top: 0;
    border: none;
}


ul.links li{
   margin-bottom: 10px; 
}

.fig-txt{
    width: 80%;
    margin: 0 auto;
}

/* 追加 */

.l-visual {
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-family: sans-serif;
  margin-top: 20px;
}

.l-visual.red {
  background: #eafcfd url("../images/groups_back.jpg") no-repeat right center;
  background-size: cover;
    border-left: 6px solid #d85350;
}

.l-visual.yellow {
  background: #eafcfd url("../images/groups_back_yellow.jpg") no-repeat right center;
  background-size: cover;
  border-left: 6px solid #f0b800;
}

.l-visual.blue {
  background: #eafcfd url("../images/groups_back_blue.jpg") no-repeat right center;
  background-size: cover;
  border-left: 6px solid #2b99cd;
}

.l-visual.orange {
  background: #eafcfd url("../images/groups_back_orange.jpg") no-repeat right center;
  background-size: cover;
  border-left: 6px solid #d26500;
}

.l-visual__text {
  font-size: 30px;
  font-weight: normal;
  color: #000;
  margin-left: 20px;
  font-weight: bold;
}


.c-groupHeader {
  padding: 20px;
  background: #efefef;
  font-family: sans-serif;
    margin-top: 20px 30px;
}

.c-groupHeader__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.c-groupHeader__desc {
  font-size: 22px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.c-groupHeader__leader {
  text-align: right;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  margin: 0;
}

.c-groupHeader.red{
  background-color: #f4edef;
}

.c-groupHeader.blue{
  background-color: #e6fafa;
}

.c-groupHeader.orange{
  background-color: #faede6;
}

.c-groupHeader.yellow{
  background-color: #fff7e0;
}

.c-flexbox {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.c-flexbox__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border: 1px solid #888;
  padding: 1.5rem;
  width: 49%;
  height: 100px;
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  font-family: sans-serif;
  transition: box-shadow 0.2s ease;
  box-sizing: border-box;
  background-color: #fff;
  margin-top: 10px;
  font-weight: bold;
}

.c-flexbox__item:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.c-flexbox__text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}

.c-flexbox__arrow {
  margin-left: 1rem;
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* 色別矢印 */
.c-flexbox__arrow.is-red {
  color: #e60013;
}

.c-flexbox__arrow.is-blue {
  color: #004b9b;
}

.c-flexbox__arrow.is-orange {
  color: #d26500;
}

.c-flexbox__arrow.is-yellow {
  color: #f0b800;
}


/* Fact&Figures
----------------------------------------------------------------------------------------------------*/

.fact-and-figures .main img{
	width: 80%;
}

.figure-img{
	text-align: center;
}


.fact-and-figures h3{
	font-weight: bold;
}

/* ここから　*/
.result-title {
  position: relative;
  background-image: url("../2024/images/fact-and-figures/title-1.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 70%;
  height: 120px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 30px;
  font-family: 'Arial', sans-serif;
}


.result-title.bg2 {
  background-image: url("../2024/images/fact-and-figures/title-2.png");
}
.result-title.bg3 {
  background-image: url("../2024/images/fact-and-figures/title-3.png");
}

.result-title.bg4 {
  background-image: url("../2024/images/fact-and-figures/title-4.png");
}
.result-title.bg5 {
  background-image: url("../2024/images/fact-and-figures/title-5.png");
}

.result-title .label {
  width: 52%;
  font-size: 1.15em;
  font-weight: 400;
  color: #c44d46;
	padding-left: 130px;
	line-height: 1.2em;
    padding-bottom: 20px;
}

.result-title .count {
  font-size: 1.5em;
  font-weight: bold;
  color: #c44d46;
  margin-left: 1.4em;
  padding-right: 20px;
  white-space: nowrap;
    position: relative;
    top: 33px;
	line-height: 0px;
}

.result-title .unit {
  font-size: 0.8em;
  padding-left: 5px;
}

.result-title .note {
  font-size: 0.5em;
  color: #333;
  font-weight: normal;
  padding-left: 5px;
	position: relative;
    top: -3px;
	display: inline-block;
}


@media screen and (max-width: 768px) {
  .result-title {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    background-size: 100%;
    padding: 20px 15px;
  }

  .result-title .label {
    width: 80%;
    font-size: 0.9em;
	padding-left: 20%;
    margin-bottom: -40px;	
	word-break: break-word;
        line-height: 1.1em;
        padding-bottom: 30px;
  }

  .result-title .count {
    font-size: 1em;
    margin-left: 0;
    padding-right: 0;
    top: 8vw;
	  margin: 0 auto;
  }

  .result-title .unit {
    font-size: 0.7em;
  }

  .result-title .note {
    font-size: 0.5em;
  }
	
	.fact-and-figures .main img{
		width: 100%;
	}
}



/* Greeting fact&Figures */

.stat-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-item {
  display: block;
  width: calc(30% - 20px);
  min-width: 160px;
  text-align: center;
	margin: 2%;
}

.stat-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
padding: 10px;
}

.stat-item:hover img {
  transform: scale(1.03);
}

[id^="rt"] {
  scroll-margin-top: 160px; /* ← ヘッダーの高さに応じて調整（例: 100px） */
}

@media screen and (max-width: 768px) {
  .stat-item {
    width: 43%;
    max-width: 400px;
	  min-width: auto;
  }
	
	.stat-item img{
		padding: 0;
	}
}




/* ここまで */


/* footer
----------------------------------------------------------------------------------------------------*/

#footer{
    position: relative;
    background-color: #666;
    padding: 30px 0;
    color: #fff;
    font-size: 16px;
}

#footer .content-inner{
    max-width: 1200px;
}

.page #footer{
    margin-top: 40px;
}

.footer-logo{
    width: 14%;
    display: inline-block;
    vertical-align: top;
}

.mana-logo-footer{
    width: 120px;
    height: auto;
}

.footer-txt{
    width: 67%;
    display: inline-block;
}

.footer-txt p{
    font-weight: bold;
    font-size: 18px;
}

.footer-txt .nims{
    margin-bottom: 10px;
}

.footer-sns{
    width: 17%;
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

.footer-sns .x{
    width: 20%;
}

.footer-sns .facebook{
    width: 23%;
    margin-left: 10px;
}

.footer-sns .instagram{
    width: 24%;
    text-align: right;
    margin-left: 10px;
}


@charset "UTF-8";
/* CSS Document */

/*SP horizontal compatible*/
@media screen and (orientation: landscape) {
	.menu li span.pc_n{
		display: none!important;
	}
}


@media (max-width: 767px) {
 

.content-inner{
        max-width: 94%;
        min-width: 94%;
        margin-left: 3%;
        margin-right: 3%;
    padding: 0;
}
    
    
.primary-page, .secondary-page{
    width: auto;
    display: inline;
}

    
    #header .content-inner{
        padding-bottom: 5px;
    }
    
.mana-logo{
    width: 52%;
}
    
    .year .btn a{
        font-size: 18px;
    }
    
    ul.year{
        padding-top: 0px;
    }
    
    .nims-logo, .wpi-logo{
        display: none;
    }

    
.nims-logo, .wpi-logo{
    width: 13%;
    margin-top: 0;
}

.title{
    font-size: 24px;
    margin-top: 40px;
}  
   
    .title-txt{
        font-size: 16px;
        padding: 10px;
        width: 96%;
    }
    
    h2{
        margin-top: 30px;
    }
    
    h2.h2top{
        margin-top: 10px;
    }
    
    .home .main-contents{
        padding-top: 0;
    }
    
    .home .primary{
        width: 100%;
        margin-right: 0;
    }
    
    
    .home .main-contents .content-inner{
        max-width: 100%;
        min-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    #main-visual{
        height: auto;
        background-repeat: no-repeat;
    }
    
    .btn{
        text-align: center;
    }
    
    .home .secondary{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 30px;
    }
    
    
    .breadcrumb{
        max-width: 94%;
        min-width: 94%;
        padding-left: 3%;
        padding-right: 3%;
    }
    
    
    #page-visual{
        height: 90px;
    }
    
    .home .main-contents h1{
        font-size: 22px;
    }
    
    
    .tag .wrapper a{
        display: block;
        margin-top: 10px;
    }
    
    h1{
        font-size: 20px;
        padding-top: 20px;
    }
    
    h2{
        font-size: 24px;
        text-indent: -1.6em;
        padding-left: 1.5em;
    }
    
    h2 span{
        line-height: 2em;
    }
    
    h2.group-name span{
        line-height: 1.4em;
        font-size: 20px;
        text-indent: 1.2em;
    }
    
    h2.group-name{
        padding-top: 0;
        text-indent: -1.1em;
    }
    
    
    .greeting-left{
        width: 50%;
        margin-left: 25%;
    }
    
    .greeting-right{
        width: 100%;
    }
    
    
    .factandfigures ul{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .factandfigures ul li:nth-child(1){
        font-size: 22px;
        display: block;
    }
    
    .factandfigures ul li:nth-child(2){
        font-size: 30px;
    }
    
    
    .researchresults .wrapper {
        width: 100%;
        margin-bottom: 30px;
    }
    
    
    
    .field-left{
        width: 100%;
    }
    
    .field-right{
        width: 100%;
    }
    
    .groups-and-teams .wrapper {
        width: 100%;
    }
    
    .groups-and-teams .wrapper a{
        height: 50px;
    }
    
    .groups-left{
        width: 100%;
    }
    
    .groups-right{
        width: 100%;
        margin-top: 30px;
    }
    
    .groups-right img{
        width: 96%;
    }
    
    .member-wrap{
        width :100%;
        margin-bottom: 20px;
    }
    
    
    .member-right{
        width: 65%;
        margin-left: 3%;
    }
    
    
    .footer-logo{
        width: 100%;
        text-align: center;
    }
    
    .footer-txt{
        width: 100%;
        margin-top: 20px;
        font-size: 16px;
    }
    
    .footer-txt p{
        font-size: 16px;
    }
    
    .footer-sns{
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
    
    .footer-sns .x{
        width: 10%;
    }
    
    .footer-sns .facebook{
        width: 13%;
        margin-left: 20px;
    }
    
    .footer-sns .instagram{
        width: 13%;
        margin-left: 20px;
    }
    
    .img-txt{
        width: 100%!important;
    }
    
    .group ul.year{
        text-align: left;
    }
    
    .group #page-visual {
    height: auto;
    }

    .research-results .col-l{
    width: 100%;
    }
    
    .research-results .col-r{
        width: 100%;
    }
    
    .research-results .wrapper{
        margin-bottom: 30px;
    }
    
    .group .year .btn a{
        margin-top: 0;
    }
    
    .tag{
        margin-bottom: 20px;
    }
    
     .l-visual__img {
    width: 20%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
    
    .l-visual__text {
    font-size: 20px;
    margin-left: 20px;
    }
        
    .c-groupHeader__main{
        max-width: 100%;
    }
    
    .c-groupHeader__title{
        text-indent: 0;
        padding-left: 0;
        font-size: 20px;
        padding: 0;
    }
    
    .c-groupHeader{
        padding: 10px 20px;
    }
    
    .year .btn a{
        padding: 0 16px 0 0;
    }
    
    .main{
        padding-top: 104px;
    }
    
    .c-flexbox__item{
        width: 100%;
    }
    
    .c-flexbox__item{
        margin-top: 0;
    }
    
    .fig-txt{
        width: 100%;
    }
    
    .fig-img{
        width: 90%!important;
    }
    
    ul.activities li .date{
        width: 100%;
    }
    
    ul.activities li .caption{
        width: 100%;
    }
    
    .page .main{
        padding-top: 110px;
    }
    
    .c-year-btn{
    font-size: 35px;
    top: -20px;

    }
    
    .year li.btn{
    width: auto;
    }
    
    #header ul.year{
        text-align: left;
    }
    
    .font30{
    font-size: 24px;
    }
    
    .title-txt{
        top: 0;
    }

}

/* 新たにHTMLで使用したクラスに対応するスタイルを追加 */

.c-year-nav {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ccc;
}
.c-year-nav__item {
    display: inline-block;
    margin: 0 10px;
}
.c-year-nav__link {
    font-size: 22px;
    text-decoration: none;
    color: #000;
    margin-top: 13px;
    margin-bottom: 10px;
}

.c-year-nav__link a:before{
    font-family: FontAwesome;
    content: '\f0da';
    margin-right: 10px;
    }

.c-member-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.c-member-list__item {
    flex: 1 1 45%;
}

.c-reference-list {
    list-style: none;
    padding: 0;
}
.c-reference-item {
    padding: 10px;
    border-bottom: 1px dashed #666;
}

.c-activity-list {
    list-style: none;
    padding: 0;
}
.c-activity-item {
    padding: 10px;
    border-bottom: 1px dashed #666;
}

.c-link-list {
    list-style: none;
    padding: 0;
}
.c-link-list__item {
    margin-bottom: 10px;
}

.u-center {
    text-align: center;
}


/* ===== Responsive Layouts ===== */

/* PC (769px〜) */
@media screen and (min-width: 769px) {
  .c-member-list {
    flex-direction: row;
    gap: 30px;
  }
  .c-member-list__item {
    max-width: 49%;
  }

  .c-member-list .position{
    text-indent: -1.1em;
    padding-left: 1em;
    font-size: 18px;
  }
    
}

/* タブレットPC（768〜391px） */
@media screen and (max-width: 768px) and (min-width: 391px) {
  .c-member-list {
    flex-direction: column;
    gap: 30px;
  }
  .c-member-list__item {
    max-width: 100%;
  }
    
    .c-flexbox__item{
        width: 100%;
    }
}

/* スマートフォン（〜390px） */
@media screen and (max-width: 390px) {
  .c-member-list {
    flex-direction: column;
    gap: 20px;
  }
  .c-member-list__item {
    max-width: 100%;
  }
  
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

    width: 100%;
    height: auto;
  }

}
