@charset "utf-8";
/*--===   共通   ===--*/
body {
  margin: 0px;
  padding: 0px;
  border: 0px;
  color: #3B4043;
  letter-spacing: 0.2em;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.section-margin {
  margin-top: 100px;
  margin-bottom: 50px;
}
.whole {
  margin-left: 10%;
  margin-right: 10%;
}

/*--タイトル--*/
.title  span{
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 35px;
  letter-spacing: 5px;
  padding-left:5px;
  background: linear-gradient(transparent 65%, #BCE900 65%);
}

/*--サブタイトル--*/
.sub-title {
  color: #333;
  padding: 0.2em 0em 0em 4em;
  position: relative;
  line-height: 1.3em;
  font-size: 20px;
}
.sub-title::before {
  position: absolute;
  content: '';
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  transform: rotate(25deg);
  background: #27acd9;
}
.sub-title::before,
.sub-title::after {
  content: "";
  display: block;
  position: absolute;
}
.sub-title::before {
  left: 50px;
  top: 0;
  width: 10px;
  height: 100%;
  background: #0272AA;
  transform: skewX(-15deg);
}
/*その他の設定*/
*,::before, ::after {
  box-sizing: border-box;
}
.sub-title span {
  font-size: 13px;
  color: #a2a2a2;
  letter-spacing: 5px;
}
/*数字の装飾*/
.sub-title b {
  position: absolute;
  display: block;
  top: 13px;
  left: 0px;
  z-index: 1;
  color: #0272AA;
  font-size: 25px;
  font-weight: bold;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*--pc,sp切り替え--*/
.pc { 
  display: block !important; 
}
.sp {
  display: none !important; 
}

/*--グレー、ブルーボタン--*/
.gray-button,.blue-button {
  text-align: center;
  padding: 10px 0px 10px 0px;
}
.blue-button a {
  display: block;
  width: 180px;
  padding: 5px 10px;
  background: #0272AA;
  color: #FFF;
  text-align: center;
  letter-spacing: .1rem;
  text-decoration: none;
  margin: 0px auto;
  border-radius: 30px;
}
.gray-button a {
  display: block;
  width: 180px;
  padding: 5px 10px;
  background: #747474;
  color: #FFF;
  text-align: center;
  letter-spacing: .1rem;
  text-decoration: none;
  margin: 0px auto;
  border-radius: 30px;
}



@media (hover: hover) {
  .gray-button a:hover {
    background-color: #5e5e5e;
  }
  .blue-button a:hover {
    background-color: #005a88;
}
}
.gray-button a:link,
.gray-button a:visited,
.gray-button a:active,
.blue-button a:link,
.blue-button a:visited,
.blue-button a:active {
  color: white;
}

/*--タイトル（業務一覧、記事一覧）--*/
.header-title {/*親div*/
  position: relative;/*相対配置*/
}
.header-title h1 {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  font-weight: bold; /*太字に*/
  font-size: 30px;/*サイズ2倍*/
  top: 60%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
}
.header-title img {
  width: 100%;
}

/*--背景グレー--*/
.backcolor-gray {
  background-color: #f1f1f1;
}


/*--==== TOPページ ====--*/
/*スライドショー*/
.img-frame {
  position: relative;
  width: 70%;
  height: 300px;
  overflow: hidden;
  margin: 0 auto;
}
.img-frame {
  width: 100%;
  height: 200px;
  height: 800px;
  z-index: -999;
}
.img-01, .img-02, .img-03 {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.img-01 {
  background-image: url('../img/slider01.png');
  animation: slide-animation-01 20s infinite;
  background-position: center;
}
.img-02 {
  background-image: url('../img/slider02.png');
  animation: slide-animation-02 20s infinite;
  background-position: center;
}
.img-03 {
  background-image: url('../img/slider03.jpg');
  animation: slide-animation-03 20s infinite;
  background-position: center;
}
@keyframes slide-animation-01 {
  0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
  100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
  0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
  100% {opacity: 0;}
}
@keyframes slide-animation-03 {
  0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0; transform: scale(1.1);}
}
/*カルーセル文字*/
.img-frame-text {
  position: absolute;
  width: calc(100% - 40px); /* ← 両端20pxずつ余白 */
  text-align: left;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.img-frame-text h1 {
  color: #ffffff;
  font-size: 35pt;
  line-height: 2em;
  letter-spacing: 13px;
}
#img-frame-text-left-space {
  margin-left: 120px;
}
#img-frame-text-small {
  font-size: 30px;
}
/*--==== NEWS ====--*/
.news-clients {
  background-color: white;
  margin: 0px 15%;
  padding: 40px;
}
.news-clients-box {
  padding: 20px 40px;
}
.news-clients-contents {
  display: flex;
  padding: 10px 0px;
  text-decoration: none;
  color: #3B4043;
}
.news-clients-contents-item-left {
  flex-basis: 200px;
}
.news-clients-contents-item-right {
  flex-basis: auto;
}
/*--=== 研究 ===--*/
.kenkyu {
  background-color: #F5F5F5;
  margin: 0px;
  padding: 50px 0px;
}
.kenkyu-section {
  margin: 50px 0px
}
.kenkyu-clients {
  margin: 0px 15%;
}
.kenkyu-clients-box {
  padding: 30px 80px;
}
.kenkyu-clients-contents {
  display: flex;
  padding: 5px 0px;
}
.kenkyu-clients-contents-item-left {
  flex-basis: 200px;
  font-weight: bold;
  font-size: 17px;
}
.kenkyu-clients-contents-item-right {
  flex-basis: auto;
}
.kenkyu-clients-contents-item-middle {
  flex-basis: 100%;
}
/*topics*/
.kenkyu-topics strong{
  color: #0272AA;
  margin-left: 20px;
}
.kenkyu-topics p{
  text-align: center;
  margin: 0px;
}
.kenkyu-topics{
  position: relative;
  padding: 20px;
  background-color: #ffffff;
  margin: 0px 50px;
  border-radius: 20px;
}
/* beforeで三角を表現 */
.kenkyu-topics::before{
  content: '';
  position: absolute;
  left: 20px;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid transparent;
}
/*--=== 教育指導指導 ===--*/
.shidou {
  text-align:center;
  margin-bottom: 50px;
}
.shidou-name ruby {
  font-size: 20px;
  letter-spacing: 10px;
}
.shidou-name rt {
  letter-spacing: 5px;
}
.shidou-name span{
  font-size: 13px;
}
.shidou-name-img {
  width: 5%;
  vertical-align: middle;
}
/*研究分野*/
.shidou-kenkyu {
  color: #BCE900;
  font-size: 20px;
}
.shidou-kenkyu-box {
  background-color: #faffaf;
  display: inline-block;
  padding: 50px;
  box-shadow: 2px 2px 4px gray;
  margin-bottom: 50px;
}
.shidou-kenkyu-row {
  line-height: 1.5em;
}





/*--=== 業務一覧ページ ===--*/
.performance {
  margin: 2em 0;
}
.performance-summary {
  background: #ffffff; /* アコーディオンの見出しの背景色 */
  font-weight: bold;
  position: relative;
  display: block;
  cursor: pointer;
  padding: 10px 38px 10px 10px;
}
.performance-summary::after {
  content: "+";
  font-size: 1.4em; /* 記号のサイズ */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.performance input:checked ~ .performance-summary::after {
  content: "−";
}
.performance input {
  display: none;
}
.performance-detail {
  display: none;
  background: #fff;
  padding: 4px 10px;
  margin: 10px 0;
}
.performance input:checked ~ .performance-detail {
  display: block;
  margin: 0px;
}
/*テーブル*/
.performance-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.performance-table table {
  width: 100%;
  border-spacing: 0;
  padding: 15px;
}
.performance-table th{
  padding: 10px;
  background: #0272AA;
  color: #ffffff;
}
.performance-table td{
  border-bottom: 1px solid#747474;
  padding: 5px;
  line-height: 1.5em;
  height: 70px;
}
.table-left {
  text-align: left;
}
.table-center {
  text-align: center;
}



/*--=== 記事一覧 ===--*/
.news-article {
  background-color: #ffffff;
  display: inline-block;
  padding: 50px;
  box-shadow: 2px 2px 4px gray;
  margin-bottom: 50px;
}
.news-article h2 {
  color: #0272AA;
  margin: 0px;
  line-height: 1.5em;
}
.news-article p {
  margin-top: 10px;
}



/*--=== 講義一覧 ===--*/
.seminar-first th {
  background: #BCE900;
}
.color-green {
  color: #BCE900;
  font-weight: bold;
}
.color-blue {
  color: #0272AA;
  font-weight: bold;

}




/*--=== 研究助成金一覧 ===--*/
.subsidy-buntansya {
  font-weight: bold;
}
.subsidy-text-blue {
  color: #0272AA;
}
.subsidy-daihyo {
  color: #BCE900;
  font-weight: bold;
}





/*--=== フッター ===--*/
.copyright {
  background-color: #747474;
  padding: 10px;
  text-align: center;
  color: #ffffff;
}


/*--=== スマホサイズ ===--*/
@media screen and (max-width: 767px) {
body {
  font-size: 14px;
}
.whole {
  margin-left: 5%;
  margin-right: 5%;
}
.section-margin {
  margin-top: 50px;
}

/*タイトル*/
.title h2 {
  font-size: 25px;
}

/*㍶、sp切り替え*/
.pc { display: none !important; }
.sp { display: block !important; }

/*左揃え*/
.left {
  text-align: left;
}

/*--タイトル（業務一覧、記事一覧）--*/
.header-title img {
  height: 230px;
  object-fit: cover;
}
.header-title h1 {
  width: 230px;
  text-align: center;
}



/*--==== topページ ====--*/
/*カルーセル文字*/
.img-frame-text {
  left: 50%;
}
.img-frame-text h1{
  font-size: 30px;
}
.img-frame-text p{
  font-size: 15px;
  line-height: 2.5em;
}
#img-frame-text-left-space {
  margin-left: 0px;
}

/*--==== NEWS ====--*/
.news-clients {
  margin: 0px 0%;
  padding: 0px;
}
.news-clients-box {
  padding: 20px 0px;
}
.news-clients-contents {
  flex-wrap: wrap;
}
.news-clients-contents-item-right {
  flex-basis: 100%;
}
.news-clients-contents-item-left {
  flex-basis: 100%;
}

/*--=== 研究 ===--*/
.kenkyu-clients {
  margin: 0px;
}
.kenkyu-clients-box {
  padding: 15px 0px;
}
.kenkyu-clients-contents {
  flex-wrap: wrap;
}
.kenkyu-clients-contents-item-left {
  flex-basis: 100%;
}
.kenkyu-clients-contents-item-right {
  flex-basis: 100%;
}
.kenkyu-topics {
  margin: 0px 0px;
}
.kenkyu-clients-contents {
  padding: 10px 0px;
}

/*--テーブル(横スクロールなし)--*/
.performance-table {
  display: block;
  /* overflow-x: scroll;
    white-space: nowrap; */
  overflow-x: auto;
  width: 100%;
}
.performance-table table {
  table-layout: fixed;
  padding: 0px;
  font-size: 10px;
  width: 100%;
  border-collapse: collapse;
  min-width: 300px; /* 必要に応じて調整 */
}
.performance-table th, .performance-table td {
    padding: 5px;
    border: 1px solid #ccc;
    text-align: left;
    word-wrap: break-word;
}
/*
.performance-detail {
  padding: 10px 10px;
}
*/



/*--=== 研究助成金一覧 ===--*/
.subsidy-th1-width {
  width: 50px;
}
.subsidy-th3-width {
  width: 60px;
}
/*--=== 業績一覧 ===--*/
.performance-th-width {
  width: 53px;
}

/*--=== 講義一覧 ===--*/
.seminar-th-width-period{
  width: 50px;
}
.seminar-th-width-credit{
  width: 40px;
}
.seminar-no {
  font-weight: bold;
}
.seminar-tanto {
  color: #0272AA;
}


}




@media screen and (max-width: 767px) {
  .top-3-kenkyu-table,
  .katop-3-kenkyu-tableisha tr,
  .top-3-kenkyu-table td,
  .top-3-kenkyu-table th {display:block;}
  .top-3-kenkyu-table th {width:auto;}

  .top-3-kenkyu-table {
    width: 100%;
}
}
