@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap");
/*----------------------------------------------------------------------------
******************************************************************************PC******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Layout
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Base === */
  html {
    scroll-behavior: smooth;
  }
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
    font-size: 14px;
  }
  .layout {
    max-width: 960px;
    margin: 0 auto;
  }
  /* ==== Backgraund === */
  #wrap {
    background: #fff;
    border-top: 3px solid #222;
  }
  /* ==== Header === */
  #hd {
    height: auto;
    position: relative;
  }
  #hd header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
  }
  /* ==== Navigation === */
  #nav {
    height: 50px;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  #nav li {
    float: left;
    width: 16.6666666667%;
    line-height: 50px;
  }
  #nav li.has_child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 4;
    width: 20%;
    margin-top: -6px;
    /*形状を指定*/
    background: rgba(198, 195, 250, 0.7960784314);
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all 0.3s;
  }
  #nav li.has_child ul li {
    width: auto;
    line-height: 50px;
  }
  #nav li.has_child ul li:last-child a {
    border-bottom: none;
  }
  #nav li.has_child ul li.child_current {
    border-top: none !important;
    letter-spacing: 0.2em;
    background: rgba(53, 119, 202, 0.5);
  }
  #nav li.has_child ul li a {
    color: #222;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  }
  #nav li.has_child ul li a:hover, #nav li.has_child ul li a:active {
    border-top: none;
    background: rgba(53, 119, 202, 0.5);
  }
  #nav li.has_child ul li a::before {
    content: none;
  }
  #nav li.has_child:hover > ul,
  #nav li.has_child li:hover > ul, #nav li.has_child:active > ul,
  #nav li.has_child li:active > ul {
    visibility: visible;
    opacity: 1;
  }
  #nav li a {
    color: #222;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-top: 1px solid #222;
    transition: All 0.5s ease;
  }
  #nav li a:hover {
    border-top: 6px solid #2d287f;
    letter-spacing: 0.2em;
  }
  .current {
    border-top: 6px solid #2d287f !important;
    letter-spacing: 0.2em;
  }
  #menu {
    display: none;
  }
  /* ==== Content === */
  #con {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #sidenav {
    width: 23%;
    max-width: 220px;
    margin-top: 20px;
    border: 1px solid #222;
    position: sticky;
    top: 20px;
    left: 0;
  }
  #sidenav ul {
    padding: 0px;
  }
  #sidenav li a {
    width: 100%;
    box-sizing: border-box;
    height: auto;
    padding: 12px 5px 5px 23px;
    display: block;
    text-decoration: none;
    background: url(../images/common/sidenav_icon.png) no-repeat 6px 16px;
    font-size: 12px;
    color: #222333;
    border-bottom: dotted 1px #CCC;
  }
  #main {
    width: 75%;
    max-width: 720px;
    margin-top: 20px;
    min-height: 660px;
  }
  #main ol {
    padding: 5px 0px 5px 25px;
  }
  #main ul {
    padding: 5px 0px 5px 25px;
    list-style-type: disc;
  }
  #main ol li,
  #main ul li {
    padding: 5px 0px;
  }
  #main ol li {
    padding-left: 5px;
  }
  #main table {
    margin: 10px 0px;
  }
  #main table th,
  #main table td {
    padding: 5px;
  }
  #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);
  }
  /* ol,ul */
  /* table */
  /* img */
  .shrink:focus, .shrink:active {
    transform: scale(0.9);
  }
  /* ==== Footer === */
  #ft {
    margin-top: auto;
    padding-top: 35px;
    padding-bottom: 35px;
    text-align: center;
    color: #fff;
    background: #666;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Head
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  h1 {
    line-height: 1em;
    margin: 8px;
  }
  h1 a {
    color: #222 !important;
    text-decoration: none;
  }
  h1 span {
    display: block;
    font-size: 0.65em;
  }
  h2 {
    color: #333;
    border-bottom: 4px solid #222;
    border-top: 4px solid #222;
    font-size: 28px;
    font-weight: bold;
    height: 80px;
    padding: 0.75em 0em 0em 0.5em;
    margin-bottom: 20px;
  }
  h2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 25px;
    margin-right: 0.5em;
    background-image: url(../images/h2_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  #sidenav h4 {
    color: #fff;
    border: 1px solid #222;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 10px;
    height: 50px;
    text-shadow: 1px 2px 0px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    background: top center #222;
  }
  h3 {
    font-size: 1.4em;
    font-weight: bold;
    padding: 0.6em 0 0.6em 0em;
    color: #222;
    display: flex;
    align-items: baseline;
  }
  h3::before {
    position: relative;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.5em;
    background-image: url(../images/h3_icon.png);
    background-size: contain;
  }
  h3::after {
    position: relative;
    content: "";
    height: 5px;
    flex-grow: 1;
    background: linear-gradient(to right, #2d287f calc(100% - 10px), #fdd000 calc(100% - 10px), #fdd000 calc(100% - 5px), #000 calc(100% - 5px));
    margin-left: 0.5em;
  }
  h3.pseudo_none {
    margin-left: 1em;
    padding-bottom: 0.1em;
  }
  h3.pseudo_none::before {
    content: none;
  }
  h3.pseudo_none::after {
    content: none;
  }
  h4 {
    font-size: 1.2em;
    font-weight: normal;
    padding: 0em 0 0em 0.4em;
    border-left: 5px double #222;
    margin: 0.6em 0 0.4em 0;
  }
  h1.img,
  h2.img,
  h3.img,
  h4.img,
  h5.img,
  h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Original
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Index === */
  #i_img img {
    width: 100%;
  }
  #i_main {
    width: 75%;
    max-width: 720px;
    float: left;
    margin-top: 20px;
  }
  #i_news {
    height: 300px;
    margin-bottom: 40px;
    overflow: auto;
    border: none;
  }
  #i_news table td {
    vertical-align: top;
    font-size: 0.8em;
    padding: 10px;
  }
  #i_news table tr {
    border-bottom: 1px dotted #CCC;
  }
  #i_news table td.date {
    width: 125px;
    background: url(../images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
  }
  #i_bnr {
    margin-top: 20px;
    width: 23%;
    max-width: 220px;
    float: right;
  }
  #i_bnr .contact {
    margin-bottom: 40px;
  }
  #i_bnr .contact h3 {
    margin: 0;
    font-size: 1.2em;
  }
  #i_bnr .contact p {
    padding: 5px 10px;
  }
  #i_bnr .banner_con {
    margin-bottom: 40px;
  }
  #i_bnr .banner_con li {
    float: left;
    margin-bottom: 4px;
    width: 100%;
  }
  #i_bnr .banner_con li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    padding: 15px 0 15px 60px;
    border-bottom: 1px solid #222;
    background: url(../images/common/bnr_bg.png) 8px center no-repeat;
    transition: All 0.5s ease;
  }
  #i_bnr .banner_con li a.univ_banner {
    background: url(../images/univ_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a.univ_banner:hover {
    color: #222;
    transform: translateY(-3px);
    background: url(../images/univ_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a.med_banner {
    background: url(../images/med_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a.med_banner:hover {
    color: #222;
    transform: translateY(-3px);
    background: url(../images/med_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a:hover {
    color: #fff;
    background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat;
  }
  .member_wrapper {
    margin: 50px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .member_wrapper .member_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: calc((100% - 20px) / 3);
    padding: 10px;
  }
  .member_wrapper .member_item img {
    width: 140px;
    padding: 10px;
  }
  .member_wrapper .member_item p {
    text-align: center;
  }
  .member_wrapper .member_item p span {
    font-size: 14px;
    font-weight: bold;
  }
  .member_wrapper .member_item a {
    color: #000;
    text-decoration: none;
  }
  .member_wrapper .member_item a:hover {
    text-decoration: underline;
  }
  .member_list {
    margin-bottom: 40px;
  }
  .member_list .member_item {
    margin-left: 1em;
  }
  .member_list .member_item p {
    margin-left: 1em;
  }
  .section {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .info_con {
    margin-bottom: 40px;
    overflow: auto;
  }
  .info_con .info_item {
    padding: 5px;
    border-bottom: 1px dashed #CCC;
  }
  .info_con .info_item div {
    vertical-align: top;
    padding: 5px;
  }
  .info_con .info_item .date {
    background: url(../images/common/news_icon.gif) 4px 8px no-repeat;
    padding: 0px 0px 10px 20px;
  }
  .paper_con ul li,
  .member_text_con ul li {
    list-style-type: none;
    border-bottom: 1px dashed #ccc;
  }
  .paper_con ul li:last-child,
  .member_text_con ul li:last-child {
    border-bottom: none;
  }
  .paper_con ul li table,
  .member_text_con ul li table {
    margin: 0 !important;
  }
  .paper_con ul li table tr th,
  .member_text_con ul li table tr th {
    position: relative;
    min-width: 8em;
    vertical-align: top;
    text-align: center;
  }
  .paper_con ul li table tr th::after,
  .member_text_con ul li table tr th::after {
    position: absolute;
    right: 0;
    content: "： ";
  }
  .paper_con ul li table tr th,
  .paper_con ul li table tr td,
  .member_text_con ul li table tr th,
  .member_text_con ul li table tr td {
    padding: 5px 0px 0px !important;
  }
  .paper_con dd,
  .paper_con dt,
  .paper_con dl,
  .member_text_con dd,
  .member_text_con dt,
  .member_text_con dl {
    margin: 0px;
    min-width: 260px;
    display: inline-block;
    vertical-align: middle;
  }
  .paper_con a,
  .member_text_con a {
    color: #000;
    text-decoration: none;
  }
  .paper_con a:hover,
  .member_text_con a:hover {
    text-decoration: underline;
  }
  .border_ccc {
    border: 1px solid #ccc;
  }
  /*----pagetop----*/
  #page-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    font-size: 77%;
  }
  #page-top a {
    background: #222;
    border: #fff 1px solid;
    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;
  }
  .br_sp {
    display: none;
  }
}
/*----------------------------------------------------------------------------******************************************************************************スマートフォン******************************************************************************----------------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Layout
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Base === */
  html {
    scroll-behavior: smooth;
  }
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
    font-size: 14px;
    width: 100%;
  }
  .layout {
    width: 100%;
    overflow: hidden;
  }
  /* ==== Backgraund === */
  #wrap {
    background: #fff;
    border-top: 3px solid #222;
  }
  /* ==== Header === */
  #hd {
    height: auto;
    position: relative;
  }
  #hd header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #hd .logo img {
    width: 50px;
  }
  /* ==== Navigation === */
  #nav {
    position: fixed;
    top: 0px;
    right: -200px;
    height: 100%;
    z-index: 100;
    width: 200px;
    overflow-x: none;
    overflow-y: auto;
    font-size: 16px;
    background: url(../images/common/nav_bg.png) top center #222;
    color: #fff;
    box-shadow: inset 0 0 5px 5px #222;
  }
  #nav ul {
    display: block;
    margin: 0 0 15px;
    padding: 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #4d4d4d;
  }
  #nav ul li {
    display: block;
    margin: 0;
    line-height: 48px;
    border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #1a1a1a;
  }
  #nav ul li.has_child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }
  #nav ul li.has_child ul li.child_current {
    border-top: none !important;
    letter-spacing: 0.2em;
    background: rgba(53, 119, 202, 0.5);
  }
  #nav ul li.has_child > a {
    position: relative;
  }
  #nav ul li.has_child > a.active::after {
    transform: rotate(-45deg);
  }
  #nav ul li.has_child > a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 20px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
  }
  #nav ul li img {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
  }
  #nav ul li:hover {
    border-top: none;
    line-height: 49px;
  }
  #nav ul li a {
    padding: 0 15px;
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: min(12px, 3vw);
    text-shadow: 2px 2px 0 rgb(0, 0, 0);
  }
  #nav ul li ul {
    border-bottom: none;
    margin: 0;
  }
  #nav ul li ul li {
    line-height: 40px;
    font-size: 13px;
    background: rgba(40, 190, 231, 0.5);
    background: rgba(85, 85, 85, 0.9019607843);
    padding-left: 20px;
  }
  #nav ul li ul li:last-child {
    border-bottom: none;
  }
  #menu {
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
  }
  /* ==== Content === */
  #con_bg,
  #con {
    margin-top: -10px;
  }
  #sidenav {
    width: 220px;
    float: left;
    margin-top: 20px;
    border: 1px solid #222;
    display: none;
  }
  #main {
    width: 97%;
    margin: 10px auto 40px;
    min-height: 630px;
  }
  #main ol {
    padding: 5px 0px 5px 25px;
  }
  #main ol li,
  #main ul li {
    padding: 5px 0px;
  }
  #main table {
    margin: 10px 0px;
  }
  #main table th,
  #main table td {
    padding: 5px;
  }
  #main img {
    max-width: 100%;
    display: block;
    margin: 5px auto;
    float: none;
  }
  #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);
  }
  /* ol,ul */
  /* table */
  /* img */
  .shrink:focus, .shrink:active {
    transform: scale(0.9);
  }
  /* ==== Footer === */
  #ft {
    margin-top: auto;
    padding-top: 35px;
    padding-bottom: 35px;
    text-align: center;
    color: #fff;
    background: #222;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Head
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  h1 {
    line-height: 1em;
  }
  h1 a {
    color: #222 !important;
    text-decoration: none;
  }
  h1 a img {
    margin-left: 10px;
    width: calc(100% - 80px);
  }
  h1 span {
    display: block;
    font-size: 0.65em;
  }
  h1 span:last-child {
    font-size: 0.48em;
    font-weight: bold;
    line-height: 1.2em;
    padding-top: 0.3em;
  }
  h2 {
    color: #333;
    border-bottom: 4px solid #222;
    border-top: 4px solid #222;
    font-size: min(34px, 7vw);
    font-weight: bold;
    height: 80px;
    padding: 0.75em 0em 0em 0.5em;
    margin-bottom: 20px;
  }
  h2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 25px;
    margin-right: 0.5em;
    background-image: url(../images/h2_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  #sidenav h2 {
    color: #fff;
    border: 1px solid #222;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    height: 50px;
    text-shadow: 1px 2px 0px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    background: top center #222;
  }
  h3 {
    font-size: 1.4em;
    font-weight: bold;
    padding: 0.6em 0 0.6em 0em;
    color: #222;
    display: flex;
    align-items: baseline;
  }
  h3::before {
    position: relative;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    padding: 0px 5px;
    background-image: url(../images/h3_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  h3::after {
    position: relative;
    content: "";
    height: 5px;
    flex-grow: 1;
    background: linear-gradient(to right, #2d287f calc(100% - 10px), #fdd000 calc(100% - 10px), #fdd000 calc(100% - 5px), #000 calc(100% - 5px));
    margin-left: 0.5em;
  }
  h3.pseudo_none {
    margin-left: 5px;
    padding-bottom: 0.1em;
  }
  h3.pseudo_none::before {
    content: none;
  }
  h3.pseudo_none::after {
    content: none;
  }
  h4 {
    font-size: 1.2em;
    font-weight: normal;
    padding: 0em 0 0em 0.4em;
    border-left: 5px double #222;
    margin: 0.6em 0 0.4em 0;
  }
  h1.img,
  h2.img,
  h3.img,
  h4.img,
  h5.img,
  h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Original
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Index === */
  #i_img img {
    width: 100%;
  }
  #i_main {
    width: 97%;
    margin-top: 20px;
    margin-inline: auto;
  }
  #i_news {
    height: 300px;
    overflow: auto;
    border: none;
  }
  #i_news table td {
    vertical-align: top;
    font-size: 0.9em;
    padding: 10px;
    display: block;
  }
  #i_news table tr {
    border-bottom: 1px dotted #CCC;
  }
  #i_news table td.date {
    background: url(../images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
  }
  #i_bnr {
    width: 97%;
    margin-top: 20px;
    margin-inline: auto;
  }
  #i_bnr .banner_con {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 40px;
  }
  #i_bnr .banner_con li {
    width: min(100%, 340px);
    margin-bottom: 4px;
  }
  #i_bnr .banner_con li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    padding: 15px 0 15px 80px;
    border: 1px solid #222;
    border-radius: 0px;
    background: url(../images/common/bnr_bg.png) 8px center no-repeat;
    transition: All 0.5s ease;
  }
  #i_bnr .banner_con li a.univ_banner {
    background: url(../images/univ_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a.univ_banner:hover {
    color: #222;
    transform: translateY(-3px);
    background: url(../images/univ_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a.med_banner {
    background: url(../images/med_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a.med_banner:hover {
    color: #222;
    transform: translateY(-3px);
    background: url(../images/med_logo.png) 8px center no-repeat;
  }
  #i_bnr .banner_con li a:hover {
    color: #fff;
    background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat;
  }
  /*----pagetop----*/
  #page-top {
    width: 100%;
  }
  #page-top a {
    background: #666;
    border: none;
    text-decoration: none;
    color: #fff;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    display: block;
  }
  #page-top a:hover {
    text-decoration: none;
  }
  .member_wrapper {
    width: 98%;
    margin: 0 0 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  .member_wrapper .member_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: min(160px, (100% - 30px) / 2);
    padding: 10px;
  }
  .member_wrapper .member_item img {
    width: 160px;
  }
  .member_wrapper .member_item p {
    text-align: center;
  }
  .member_wrapper .member_item p span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }
  .member_wrapper .member_item a {
    display: block;
    font-size: 14px;
    width: 140px;
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: 0.3s;
  }
  .member_wrapper .member_item a:hover {
    opacity: 0.7;
  }
  .section {
    margin-bottom: 40px;
  }
  .info_con {
    margin-bottom: 40px;
    overflow: auto;
  }
  .info_con .info_item {
    padding: 10px 5px;
    border-bottom: 1px dashed #CCC;
  }
  .info_con .info_item div {
    vertical-align: top;
    padding: 5px;
  }
  .info_con .info_item p {
    padding: 0px;
  }
  .info_con .info_item .date {
    background: url(../images/common/news_icon.gif) 4px 8px no-repeat;
    padding: 0px 0px 10px 20px;
  }
  .paper_con ul li,
  .member_text_con ul li {
    border-bottom: 1px dashed #ccc;
  }
  .paper_con ul li:last-child,
  .member_text_con ul li:last-child {
    border-bottom: none;
  }
  .paper_con ul li table,
  .member_text_con ul li table {
    margin: 0 0 0 -20px !important;
  }
  .paper_con ul li table tr th,
  .member_text_con ul li table tr th {
    position: relative;
    min-width: 7em;
    vertical-align: top;
    text-align: center;
  }
  .paper_con ul li table tr th::after,
  .member_text_con ul li table tr th::after {
    position: absolute;
    right: 0;
    content: "： ";
  }
  .paper_con ul li table tr th,
  .paper_con ul li table tr td,
  .member_text_con ul li table tr th,
  .member_text_con ul li table tr td {
    padding: 5px 0px 0px !important;
  }
  .paper_con dt:first-child,
  .member_text_con dt:first-child {
    width: 160px;
  }
  .paper_con dd,
  .paper_con dt,
  .paper_con dl,
  .member_text_con dd,
  .member_text_con dt,
  .member_text_con dl {
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
    min-width: 130px;
  }
  .paper_con a,
  .member_text_con a {
    color: #000;
    text-decoration: none;
  }
  .paper_con a:hover,
  .member_text_con a:hover {
    text-decoration: underline;
  }
  .border_ccc {
    border: 1px solid #ccc;
  }
}/*# sourceMappingURL=style.css.map */