@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100vh;
}

.wrap {
  border-top: 10px solid #0892af;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 20px auto;
  padding-right: 10px;
  padding-left: 10px;
}
header .head {
  display: flex;
  align-items: center;
}
header .head img {
  width: 80px;
}
header .title {
  margin-left: 10px;
}
header .title h1 {
  font-size: 0.9em;
}
header .title h1 a {
  display: flex;
  color: #0892af;
  text-decoration: none;
  flex-direction: column;
  line-height: 1.2;
}
header .title h1 a span {
  font-size: 1.8rem;
  margin-top: 5px;
}
header .title p {
  font-size: 1.3em;
  margin-top: -8px;
}
header .contact {
  font-size: 1.3em;
  font-weight: bold;
  text-align: right;
}
header .contact p {
  margin-bottom: 5px;
}
header .contact .contact_info a {
  display: block;
  margin-top: -7px;
}
header .contact .contact_info a:visited, header .contact .contact_info a:link {
  text-decoration: none;
  color: #000;
}
header .contact .contact_info .tel::before,
header .contact .contact_info .mail::before {
  font-family: FontAwesome;
  margin-right: 5px;
  vertical-align: middle;
  font-size: 0.7em;
}
header .contact .contact_info .tel::before {
  content: "\f095";
}
header .contact .contact_info .mail::before {
  content: "\f0e0";
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  background: #0689b3;
}
nav ul.nav_list {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
}
nav ul.nav_list > li {
  position: relative;
  width: 100%;
  border-left: 1px solid #fff;
  display: flex;
  min-height: 80px;
  /* li全体がhover領域 */
  /* ===== hover時のみ表示 ===== */
  /* ===== sub menu ===== */
}
nav ul.nav_list > li:last-child {
  border-right: 1px solid #fff;
}
nav ul.nav_list > li:hover {
  background: rgba(255, 255, 255, 0.2);
}
nav ul.nav_list > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 20px 0;
  font-size: 1.3em;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  position: relative;
}
nav ul.nav_list > li > a::after {
  content: attr(data-text);
  font-size: 0.65em;
  color: #fff;
  white-space: nowrap;
  position: static;
  transform: none;
}
nav ul.nav_list > li:hover > .sub-menu {
  display: flex;
  flex-direction: column;
}
nav ul.nav_list > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  flex-direction: row;
  width: 150%;
  background: #487f8f;
}
nav ul.nav_list > li .sub-menu > li {
  width: 100%;
}
nav ul.nav_list > li .sub-menu > li:last-child {
  border-right: none;
}
nav ul.nav_list > li .sub-menu > li > a {
  display: block;
  padding: 10px 15px;
  text-align: left;
  font-size: 1.1em;
  color: #fff;
  text-decoration: none;
}
nav ul.nav_list > li .sub-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sp_nav {
  display: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index slider スライダー
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider img {
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  display: flex;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
.main .main_area {
  width: 70%;
  margin-bottom: 70px;
  padding-right: 15px;
}
.main .main_area .about_area .about {
  position: relative;
}
.main .main_area .about_area .about h2 {
  position: absolute;
  width: 150px;
  height: 160px;
  text-align: center;
  background: #0689b3;
  top: -120px;
  color: #fff;
  padding-top: 110px;
  font-size: 1.4em;
  letter-spacing: 1px;
}
.main .main_area .about_area .about .waku {
  border: 10px solid #dddddd;
  padding: 40px 20px 20px 20px;
  font-size: 1.3em;
  margin: 60px 0 50px 40px;
}
.main .main_area .about_area .about p {
  padding: 5px 0;
}
.main .main_area .link_list {
  display: block;
  text-align: center;
}
.main .main_area .link_list ul {
  display: flex;
  gap: 10px;
}
.main .main_area .link_list ul li {
  width: calc(50% - 5px);
}
.main .news_area {
  width: 30%;
  padding-left: 15px;
}
.main .news_area h2 {
  margin-top: 50px;
  font-size: 1.6em;
  color: #0892af;
  border-bottom: 6px solid #0689b3;
}
.main .news_area .news_list {
  margin-bottom: 30px;
}
.main .news_area .news_list .news_box {
  border-bottom: 1px dotted #0689b3;
  padding: 5px 0px;
  font-size: 1.1em;
}
.main .news_area .news_list .news_box time::before {
  font-family: FontAwesome;
  content: "\f017";
  font-size: 0.8em;
  margin-right: 2px;
}
.main .news_area .news_list .news_box .news_title {
  padding: 5px 10px;
}
.main .news_area .news_more {
  width: 80%;
  margin: 0 auto 20px;
}
.main .news_area .news_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #0689b3;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.5s ease;
}
.main .news_area .news_more a:hover {
  background-color: #ddf7ff;
  border: 1px solid #0689b3;
  color: #0689b3;
  opacity: 0.8;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page .main_area {
  width: 100%;
  padding: 0 0 15px;
  margin-bottom: 30px;
  /* 共通設定 */
  /* 日本語ラベル */
  /* Englishラベル */
  /* ===== メンバー一覧：PC/SPで列数切り替え ===== */
  /* ===== 論文・学会の各年ボタン ===== */
  /* ===== 論文の区切り ===== */
  /* ===== 学会テーブル ===== */
}
.page .main_area h1 {
  padding: 40px 0;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  background-color: #4aaccb;
  color: #fff;
  margin-bottom: 60px;
  text-shadow: 1px 1px 5px #0f566d;
}
.page .main_area .con {
  padding: 0 20px;
}
.page .main_area h2 {
  margin: 20px 0 10px;
  padding-left: 8px;
  font-size: 1.4em;
  border-bottom: 1px dotted #4aaccb;
  border-left: 4px solid #4aaccb;
  letter-spacing: 1px;
  color: #0892af;
}
.page .main_area h3 {
  margin: 20px 0 10px;
  padding-left: 8px;
  font-size: 1.3em;
  border-left: 3px solid #4aaccb;
  letter-spacing: 1px;
}
.page .main_area h4 {
  position: relative;
  margin: 20px 0 10px;
  padding-left: 25px;
  font-size: 1.2em;
  letter-spacing: 1px;
}
.page .main_area h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background: #4aaccb;
}
.page .main_area p {
  padding-top: 5px;
  font-size: 1.1em;
  line-height: 2;
}
.page .main_area ul {
  list-style-type: disc;
  margin-left: 20px;
}
.page .main_area ul li {
  margin: 5px 0;
}
.page .main_area ul li p,
.page .main_area ul li a,
.page .main_area ul li strong,
.page .main_area ul li span {
  font-size: 16px;
}
.page .main_area .research-con-list {
  background: url(../images/common/research_list_icon.gif) no-repeat 5px 11px;
  margin: 10px 0;
  padding: 0 0 0px 22px;
}
.page .main_area .research-con-list a {
  text-decoration: none;
}
.page .main_area .research-con-list a:hover {
  outline: 0;
  color: #16AAC9;
}
.page .main_area .research-con-list_ja,
.page .main_area .research-con-list_en {
  position: relative;
  padding: 0 0 0 65px;
  margin: 10px 0;
}
.page .main_area .research-con-list_ja a,
.page .main_area .research-con-list_en a {
  text-decoration: none;
}
.page .main_area .research-con-list_ja a:hover,
.page .main_area .research-con-list_en a:hover {
  outline: 0;
  color: #16AAC9;
}
.page .main_area .research-con-list_ja::before {
  content: "日本語";
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 8px;
  line-height: 1;
  background-color: #16AAC9;
  color: #fff;
  border-radius: 3px;
  white-space: nowrap;
}
.page .main_area .research-con-list_en::before {
  content: "English";
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 1;
  background-color: #ff6e57;
  color: #fff;
  border-radius: 3px;
  white-space: nowrap;
}
.page .main_area .member-table {
  /* tbodyをグリッド化 */
  /* tr, td をブロック化 */
}
.page .main_area .member-table table {
  width: 100%;
  border-collapse: collapse;
}
.page .main_area .member-table tbody {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* PC：5列 */
  gap: 0.5em;
}
.page .main_area .member-table tr {
  display: contents;
}
.page .main_area .member-table td {
  border: none;
  padding: 0.5em;
  text-align: center;
  font-size: 0.95rem;
}
.page .main_area .years-btn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  text-align: center;
}
.page .main_area .years-btn-grid .wp-block-button__link {
  background: none;
  color: #fff;
  font-weight: bold;
  padding: 4px 0;
  background-color: #3f6b89;
}
.page .main_area .years-btn-grid .wp-block-button__link:hover {
  background-color: #16AAC9;
}
.page .main_area .wp-block-separator {
  border: none;
  border-top: 2px dotted;
}
.page .main_area .publication-table table td {
  border: 1px solid #bdbdbd;
  padding: 10px 5px;
}
.page .main_area .publication-table table td:first-child {
  width: 70%;
  padding: 10px;
  background-color: #ebebeb;
}

/*----------------------------------------------------------------------------
******************************************************************************
** news archive
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_box {
  border-bottom: 1px dotted #000;
  padding: 20px 5px 20px 5px;
  font-size: 1.1em;
}
.news_list .news_box time::before {
  font-family: FontAwesome;
  content: "\f017";
  font-size: 0.8em;
  margin-right: 2px;
}
.news_list .news_box .news_title {
  padding: 5px 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 54px;
  background: #2381c0;
  border: 1px solid #2381c0;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 8px;
  cursor: pointer;
  display: block;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 2px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 2px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 3px;
  color: #fff;
  font-family: #2381c0;
  font-size: 11px;
  font-weight: 700;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #2381c0;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #2381c0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #000;
  border-radius: 5px;
  color: #000 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #000;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
footer {
  height: 60px;
  margin-top: auto;
  background: #14495b;
}
footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=style.css.map */