@charset "UTF-8";
/*----------------------------------------------------------------------------
PC
----------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  /* ==== Base === */
  body {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .layout {
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
  }
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
  .ja_only {
    display: none;
  }
  .e-only {
    display: none;
  }
  /* ==== Background === */
  #wrap {
    background: #fff url(../images/common/wrap_bg.jpg) top center;
    border-top: 3px solid #003166;
    border-bottom: 1px solid #aaa;
    box-shadow: inset 0 -4px 6px rgba(0, 0, 0, 0.2);
  }
  /* ==== Header === */
  #hd {
    height: 90px;
  }
  #hd header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #hd header a {
    color: #222;
    transition: all 0.5s ease;
    text-decoration: none;
  }
  #hd header a .hd_item {
    display: flex;
    justify-content: flex-start;
  }
  #hd header a .hd_item .hd_ttl_text {
    display: inline-block;
    line-height: 2.3em;
    color: #222 !important;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    padding-left: 10px;
  }
  #hd header a .hd_item .hd_ttl_text span {
    white-space: nowrap;
    font-size: 2.7em;
    color: #222;
  }
  #hd header a .hd_item img {
    max-width: 90px;
    width: 100%;
    transition: all 0.5s ease;
  }
  #hd header .hd_lang {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #003166;
    transition: 0.3s;
  }
  #hd header .hd_lang:hover {
    color: #fff !important;
    background: #003166;
  }
  /* ==== Navigation === */
  #nav {
    width: 100%;
    overflow: visible; /* サブメニューが親からはみ出しても表示 */
  }
  #nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #nav ul li {
    position: relative; /* サブメニュー表示用に必須 */
    border: 1px solid #e0e0e0;
    /* 2階層目サブメニュー */
    /* ホバー時にサブメニュー表示 */
  }
  #nav ul li a {
    display: block;
    padding: 10px 20px;
    color: #003166;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(#f2f2f2, #d3d3d3);
    transition: all 0.3s;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  }
  #nav ul li a:hover {
    background: linear-gradient(#004ea3, #003166);
    color: #fff;
  }
  #nav ul li ul.sub-menu {
    display: none; /* 初期非表示 */
    position: absolute;
    top: 0; /* 親メニューのトップに揃える */
    left: 100%; /* 親メニューの右側に表示 */
    width: 200px; /* サブメニュー幅 */
    background: #f2f2f2;
    border: 1px solid #c3c3c3;
    z-index: 1000;
  }
  #nav ul li ul.sub-menu li {
    border: none;
  }
  #nav ul li ul.sub-menu li:first-child {
    border-bottom: 1px solid #b9b9b9;
  }
  #nav ul li ul.sub-menu li a {
    font-weight: normal;
    padding: 10px 15px;
    background: none;
    box-shadow: none;
  }
  #nav ul li ul.sub-menu li a:hover {
    background: #004ea3;
    color: #fff;
  }
  #nav ul li:hover > ul.sub-menu {
    display: block;
  }
  /* ==== side-bnr === */
  #side-research-nav {
    margin-top: 20px;
    border: 1px solid #8f8f8f;
    border-radius: 3px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  }
  #side-research-nav h4 {
    padding: 7px 10px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    background-color: #205895;
    border-left: none;
    margin: 5px;
  }
  #side-research-nav > ul {
    padding: 8px 14px 12px 5px;
  }
  #side-research-nav > ul > li {
    margin-top: 12px;
  }
  #side-research-nav > ul > li a {
    display: block;
    padding: 2px 0 2px 22px;
    background: url(../images/common/icon_arrow_right_circle_blue.png) 0 center no-repeat;
    font-size: 0.875rem;
    line-height: 17px;
    color: #404040;
    text-decoration: none;
  }
  #side-research-nav > ul > li:first-child {
    margin-top: 0;
  }
  #i_bnr {
    margin-top: 20px;
    width: 100%;
    max-width: 220px;
    order: 1;
  }
  #i_bnr .i_bnr_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #i_bnr .i_bnr_list ul li {
    width: 100%;
    margin-top: 5px;
  }
  #i_bnr .i_bnr_list ul li:first-child {
    margin-top: 20px;
  }
  #i_bnr .i_bnr_list ul li a {
    display: block;
    width: 100%;
    line-height: 20px;
    text-decoration: none;
    text-shadow: none;
    color: #000;
    font-weight: normal;
    padding: 15px 0 15px 30px;
    border: 1px solid #8f8f8f;
    border-radius: 3px;
    background: url("../images/common/bnr_bg.png") 8px center no-repeat #fff;
    transition: all 0.5s ease;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  }
  #i_bnr .i_bnr_list ul li a:hover {
    color: #fff;
    background: url("../images/common/bnr_bg_hover.png") 8px center no-repeat #003166;
  }
  #menu {
    display: none;
  }
  /* ==== Content === */
  #wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  #con_bg, #main {
    flex: 1;
  }
  #con_bg {
    background: url(../images/common/con_bg.jpg) repeat-x top center;
  }
  #con {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
  }
  #side {
    width: 25%;
    margin-top: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
  }
  #main {
    width: 75%;
    max-width: 720px;
    margin-top: 20px;
  }
  #main ol,
  #main ul {
    padding: 5px 0 5px 25px;
  }
  #main ul {
    list-style-type: disc;
  }
  #main ol li,
  #main ul li {
    padding: 5px 0;
  }
  #main table {
    margin: 10px 0 0;
  }
  #main table th,
  #main table td {
    padding: 5px;
    border: 1px solid #bdbdbd;
  }
  #main img {
    max-width: 100%;
  }
  #main a img {
    display: inline-block;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  #main a img:hover,
  #main a img .shrink:focus,
  #main a img .shrink:active {
    transform: scale(0.9);
  }
  /* ==== Footer === */
  #ft {
    margin-top: 0;
    padding: 25px 0;
    text-align: center;
    color: #fff;
    background: #003166;
  }
  /* ==== Headings === */
  h1 {
    position: absolute;
    top: 15px;
    left: 0;
    line-height: 1em;
  }
  h1 a {
    color: #000 !important;
    text-decoration: none;
  }
  h1 span {
    display: none;
    font-size: 0.65em;
  }
  h2 {
    color: #fff;
    border: 1px solid #003166;
    font-size: 34px;
    font-weight: normal;
    text-shadow: 0 0 5px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    height: 80px;
    padding: 0.9em 0 0 0.5em;
    background: url(../images/i_img.jpg);
  }
  h2.long-ttl_t01 {
    color: #fff;
    border: 1px solid #003166;
    font-size: 33px;
    font-weight: normal;
    text-shadow: 0 0 5px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    height: auto;
    padding: 0.5em 0 0.4em 0.3em;
    line-height: 1.2;
    background: url(../images/i_img.jpg);
  }
  h2.long-ttl_t02 {
    color: #fff;
    border: 1px solid #003166;
    font-size: 33px;
    font-weight: normal;
    text-shadow: 0 0 5px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    height: auto;
    padding: 0.5em 0 0.4em 0.3em;
    line-height: 1;
    background: url(../images/i_img.jpg);
  }
  h3 {
    margin: 0.8em 0 0.4em;
    font-size: 1.4em;
    font-weight: normal;
    height: 40px;
    padding: 0.6em 0 0 0.4em;
    border: 1px solid #e0e0e0;
    background: linear-gradient(#f2f2f2, #d3d3d3);
  }
  h3:before {
    content: "■";
    color: #003166;
    margin-right: 10px;
  }
  h3.long-ttl {
    position: relative;
    margin: 0.8em 0 0.4em;
    font-size: 1.4em;
    font-weight: normal;
    height: auto;
    padding: 0.6em 0 0.4em 1.8em;
    border: 1px solid #e0e0e0;
    background: linear-gradient(#f2f2f2, #d3d3d3);
  }
  h3.long-ttl:before {
    content: "■";
    color: #003166;
    margin-right: 10px;
    position: absolute;
    left: 0.4em; /* padding-left の内側に配置 */
    top: 50%;
    transform: translateY(-50%);
  }
  h4 {
    font-size: 1.2em;
    font-weight: normal;
    padding-left: 0.4em;
    border-left: 5px double #003166;
    margin: 0.6em 0 0.4em;
  }
  h1.img,
  h2.img,
  h3.img,
  h4.img,
  h5.img,
  h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  /* ==== Index === */
  p.index-research a {
    text-decoration: none;
  }
  p.index-research a:hover {
    outline: 0;
    color: #16AAC9;
  }
  #i_img_bg {
    background: #003166;
    padding: 20px 0;
  }
  #i_img img {
    width: 960px;
    display: block;
    margin: 0 auto;
  }
  #i_main {
    width: 75%;
    max-width: 720px;
    float: right;
    margin-top: 20px;
  }
  #i_news {
    height: 300px;
    overflow: auto;
    border: none;
  }
  #i_news table td {
    vertical-align: top;
    font-size: 1em;
    padding: 7px;
    border: none;
  }
  #i_news table td a {
    text-decoration: none;
  }
  #i_news table tr {
    border-bottom: 1px dotted #ccc;
  }
  #i_news table td.date {
    width: 22%;
    background: url(../images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
  }
  #i_news table td.date time {
    font-size: 0.9em;
  }
  #i_news .archive-link {
    display: block;
    text-align: right;
    margin-top: 10px;
  }
  #i_news .archive-link a {
    position: relative;
    font-size: 1em;
    color: #202020;
    text-decoration: none;
  }
  #i_news .archive-link a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #202020;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s;
  }
  #i_news .archive-link a::after {
    content: "→";
    margin-left: 6px;
    font-size: 0.9em;
    color: inherit;
  }
  #i_news .archive-link a:hover {
    color: #6e6e6e;
  }
  #i_news .archive-link a:hover::before {
    transform: scaleX(1);
  }
  #archive_news {
    height: 300px;
    overflow: auto;
    border: none;
  }
  #archive_news table {
    width: 100%;
    border-collapse: collapse;
  }
  #archive_news table tr {
    border-bottom: 1px dotted #ccc;
  }
  #archive_news table td {
    vertical-align: top;
    font-size: 0.9em;
    padding: 8px 5px;
    border: none;
  }
  #archive_news table td a {
    text-decoration: none;
  }
  #archive_news table td a:hover {
    text-decoration: underline;
  }
  #archive_news table td.date {
    width: 22%;
    background: url(../images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
    color: #222;
  }
  h3.single_title {
    font-size: 1.5em;
    font-weight: normal;
    height: 45px;
    padding: 0.5em 0.3em;
  }
  h3.single_title:before {
    margin-right: 3px;
  }
  .single_meta {
    font-size: 0.9em;
    margin: 20px 0 10px;
  }
  .single_meta .single_date {
    margin-right: 10px;
    font-size: 16px;
  }
  .single_meta .single_category {
    background: #eee;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .single_content {
    font-size: 1em;
    line-height: 1.8;
  }
  #bnr {
    margin-top: 20px;
    width: 100%;
    max-width: 220px;
    float: right;
  }
  #bnr li {
    float: left;
    margin-bottom: 4px;
    width: 100%;
  }
  #bnr li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #000;
    padding: 15px 0 15px 30px;
    border: 1px solid #003166;
    border-radius: 3px;
    background: url(../images/common/bnr_bg.png) 8px center no-repeat;
    transition: all 0.5s ease;
  }
  #bnr li a:hover {
    color: #fff;
    background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat #003166;
  }
  /* ---- pagetop ---- */
  #page-top {
    position: fixed;
    bottom: 5px;
    right: 20px;
    font-size: 77%;
  }
  #page-top a {
    background: #003166;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    width: 120px;
    padding: 20px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
  }
  #page-top a:hover {
    text-decoration: none;
  }
}
/*-----------------------------------------------------------------------------
  ******************************************************************************
  ** 追加CSS
  ******************************************************************************
-----------------------------------------------------------------------------*/
.member-flexitable table,
.member-flexitable td,
.member-flexitable th {
  border: 1px solid #bdbdbd;
  border-collapse: collapse; /* 罫線を重ねないように */
}

.member-flexitable table td:first-child {
  width: 140px;
  white-space: nowrap;
  padding: 10px;
}

p {
  margin: 0;
  padding: 5px 0;
  text-align: justify;
}/*# sourceMappingURL=style.css.map */