/*
-moz-[プロパティ名]:Firefox向け, -webkit-[プロパティ名]:Google Chrome、Safari向け
*/

/* メニュー部、データ部の表示離れ解消 */
header.fixed .logoArea{
    padding-bottom: 0px;
}

/* ↓ [論文一覧] スタイル全般(参照元よりclass名変更、一部設定変更) ↓ */

.scroll{
display:inline-block;
max-width:100%;
height:500px;
overflow-y: scroll;
}

.sticky_table tbody th {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
  background-color:#ffffff;
}
.sticky_table thead {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  /* tbody内のセルより手前に表示する */
  z-index: 2;
}
thead th.blank {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 3;
}

/* NC選択ボタン */
.thesisSelectArea {
  display        : inline-block;
  width: 100%;
  margin: 0 auto;
  /*margin-bottom  : 5px;*/
}

.thesisSelectArea input[type="radio"] {
  display        : none;            /* チェックボックス非表示 */
}
.thesisSelectArea label{
        display        : block;
	text-align     : center;              /* 文字位置は中央     */
	vertical-align : middle;
        table-layout   : fixed;
	width: 158px;
	height:60px;
	padding: 5px 2px 5px 2px;
        margin:10px 5px 0px 0px;
        border:1px solid black;
        border-radius: 5px;
        font-size: 20px;
        font-weight: bold;
}

.thesisSelectArea input[type="radio"]:checked +label {
  border:0px ;            /* border:0px分の高さ調整 */
  height:60px;
  /*margin-bottom: 6px;   /* border:0px分の位置調整 */
  color:white;
  border-radius: 0.5em 0.5em 0.5em 0.5em;
  background-color:#00bdd8;
  border-radius: 5px;
}

/* 検索条件(操作) */
.thesisSearchArea{
	width:100%;
	margin: 0 auto;
	/*background-color:#f0f6fa;*/
}

.thesisSearchArea table{
	border:none;
}
.thesisSearchArea td{
	border:none;
	text-align:left;
}

.thesisSearchArea td:first-child{
	width:60px;
}

/*.thesisSearchArea tr:nth-child(2) td{
	padding-top:0px;
	vertical-align:top;
}*/

.thesisSearchArea td div{
        display: inline-block;
	padding-left:10px;
	/*float:left;*/
}

.thesisSearchArea td div img{
	margin-right:5px;
	width:15px; 
	vertical-align:top;
}

/* 検索条件(条件) */
.thesisSearchArea2{
	width:100%;
        margin-bottom: -10px;
	/*margin: 0 auto;
	/*background-color:#f0f6fa;*/
}

.thesisSearchArea2 table{
	border:none;
}
.thesisSearchArea2 div{
	border:none;
	text-align:left;
}

.thesisSearchArea2 div:first-child{
	width:85px;
}

/*.thesisSearchArea2 tr:nth-child(2) td{
	padding-top:0px;
	vertical-align:top;
}*/

.thesisSearchArea2 div{
        display: inline-block;
	padding-left:10px;
	/*float:left;*/
}

.thesisSearchArea2 div img{
	margin-right:5px;
	width:15px; 
	vertical-align:top;
}

/* ↑ [論文一覧] スタイル全般 ↑ */


.ListArea {
/*font-family: "ＭＳ ゴシック",sans-serif;*/
  display: table;
  table-layout: fixed;
  text-align: center;
  /*border-collapse:separate;
  /*border-collapse:collapse;*/
  border-spacing:0px;
  border:1px solid black;
  /*word-break:break-all;
  width:100%;*/

}
.ListArea th{
	padding:2px 5px;
	border-right:1px solid #659AD2;
	border-bottom:1px solid #659AD2;
        background-color: #b2cbe4;
        color: black;
}
.ListArea th:last-child{
	border-right:none;
}
.ListArea td{
  padding:2px 5px;
  border-bottom:solid 1px #D8D8D8;
}
.ListArea tr:last-child td{
    border-bottom:none;
}
.ListArea td{
  border-right:solid 1px #D8D8D8;
}
.ListArea td:last-child{
  border-right:none;
}

/* 一覧の偶数行 */
.ListArea tr:nth-child(odd) td {
  background-color: #ffffff;
}
/* 一覧の偶数行(マウスオーバー) */
.ListArea tr:hover:nth-child(odd) td {
  background-color: #fcfae0;
}
/* 一覧の奇数行 */
.ListArea tr:nth-child(even) td {
  background-color: #faf9f9;
}
/* 一覧の奇数行(マウスオーバー) */
.ListArea tr:hover:nth-child(even) td {
  background-color: #fcfae0;
}

/* 追加 */
.textLeft{                               /* [共通] 入力/表示項目左上表示 */
    text-align: left;
    vertical-align: top;
}

.textRight{                              /* [共通] 入力/表示項目右上表示 */
    text-align: right;
    vertical-align: top;
}

.textCenter{                              /* [共通] 入力/表示項目中央上表示 */
    text-align: center;
    vertical-align: top;
}

.fontSz14{                               /* [論文一覧] 表示項目フォントサイズ */
    font-size: 14px;
}

.btnType{                                /* [論文一覧] NC選択(ラジオ)ボタンスタイル */
    display: inline-block;
    margin: 5px 0px 0px 5px;
}

.button_body {                           /* [論文一覧] ボタンスタイル(common,cssよりコピー) */
    background:-moz-linear-gradient(
    top center,
    #c0c0c0 0%,
    #f1f1f1 100%);
 
    background:-webkit-gradient(
    linear,
    left top,left bottom,
    from(#c0c0c0),
    to(#f1f1f1));

	/* IE用 */
    background:-ms-linear-gradient(
    top,
    #c0c0c0 0%,
    #f1f1f1 100%);
    
    width:120px;
    height:35px;
    border-radius:10px;
}

.ListAreaTS th{                      /* [論文一覧] ヘッダスタイル */
        background-color: #659AD2;
        height: 48px;
        padding: 2px;
        font-size: 15px;
        font-weight: bold;
        color: white;
        text-align: left;
        
}

.ListAreaTS td{                      /* [論文一覧] 明細行スタイル */
        background-color: white;
        height: 20px;
        font-size: 15px;
        /*word-break: keep-all;      /* 2021/11/22 中止 */
        /*overflow-wrap: break-word;*/
}

select[name="s_nendo"]{
    background-color: white;
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    width:  80px;
    height: 30px;
    font-size: 15px;
    text-align: center;
}

input[name="s_key_word"]{
    width:  330px;
    padding: 5px;
    font-size: 15px;
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    border-width: thin;
}

/* ページャー機能用 */
select[name="disp_row"],
div[name="PageDisp"],
p[name="PageDisp"]{
    display: inline-block;
    /*margin-top: 5px;*/
}

select[name="disp_row"]{
    background-color: white;
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    width:  65px;
    height: 34px;
    font-size: 15px;
    text-align: center;
}

P[id="PageNo"]{
    /*border-style: solid;
    border-width: 1px;
    width: 20px;
    padding-right: 1px;
    text-align: center;
    border-radius: 5px;
    background: #eee;*/
}

.SelectRowsArea{
    text-align: right;
    width: 100%;
    margin-top: 10px;
}

.PageArea{
    /*display: inline-block;*/
    text-align: center;
    width: 100%;
    margin-top: -5px;
}


/* [論文詳細画面用] */

.ListAreaTD {
    width: 100%;
}

.ListAreaTD th{                      /* [論文詳細] ヘッダスタイル */
    /*border-color: #659AD2;*/ 
    background-color: #659AD2;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    /*vertical-align: center*/;
    vertical-align: top;
    padding-top: 5px;
    width: 20%;
    height: 20px;
}

.ListAreaTD th:last-child{
	border-bottom:none;
}

.ListAreaTD td{                      /* [論文詳細] 明細列スタイル */
    /*border-color: #D8D8D8;*/
    font-size: 15px;
    text-align: left;
    word-break:keep-all;
    width: 80%;
    /*vertical-align: center;*/
}

input[id="pmid"]{                    /* [論文詳細] 明細列：[pmid]スタイル調整 */
    width:  450px;
    height: 26px;
    padding-left: 5px;
    font-size: 15px;
}   

input[id="year_from_nc"]{            /* [論文詳細] 明細列：[年]スタイル調整 */
    width:  38px;
    height: 26px;
    padding-left: 5px;
    font-size: 15px;
}   
    
textarea{                            /* [論文詳細] 明細列：テキストエリア調整 */
    display:block;                   /* 2021/11/18 追加 */
    box-sizing:border-box;           /* 2021/11/18 追加 */
    width: 100%;                     /* 2021/11/18 変更(99→100%) */
    height: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 15px;
}

/* ボタンマウスオーバー(リンク風) */
.link_btn:hover {
    opacity: 0.5;
    cursor: pointer;
}

/* ボタンマウスオーバー(通常/ラベル) */
.lavel_btn,
button:hover,
input[type="button"]:hover{
    cursor: pointer;
}

/* チェックボックサイズ変更 */
input[type=checkbox] {
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

/********************************************
* ダウンロード中の画面表示対応
********************************************/
#overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 80px;
    height: 80px;
    border: 4px #ddd solid;
    border-top: 4px #999 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
.is-hide{
    display:none;
}

/* 点灯表示 */
.blink{
    -webkit-animation: blink 1s ease-in-out infinite alternate;
    -moz-animation: blink 1s ease-in-out infinite alternate;
    animation: blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes blink{
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes blink{
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/* NC新旧名併記に伴う対応 2025/03/05(A.M) */
/* -- ガイダンス -- */
.guidance{
    background-color: #f1f1f1; /* 背景色を設定 */
    /*text-align: center;       /* テキストを中央揃え */
    padding: 2px 10px;           /* パディングを設定 */
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1); /* 上に軽いシャドウを設定 */
    color: dimgrey;
    font-size: 14px;
    /*letter-spacing: -0.5px; /* 文字の間隔を少しだけ縮める */
    white-space: nowrap;
}

/* -- フッター -- 
/* -- コピーライト -- */
footer p.copyRight{
    margin: 30px 0 0 0 !important;
}

.containerHd {
    display: flex;
    flex-wrap: nowrap;
    /*align-items: center;*/
    min-width: 1800px; /* 適当な幅を指定 */
}

.containerTS {
    /*display: flex;*/
    flex-wrap: nowrap;
    /*align-items: center;*/
    min-width: 1800px; /* 適当な幅を指定 */
}

.container{
    display: flex;
    flex-wrap: nowrap;
    min-width: 1250px; /* 適当な幅を指定 */
}

/* 下線及びスクロール上部はみ出し対策 */
.ListAreaTS {
  position: relative;
}

.ListAreaTS::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: black;
}

thead {
  display: table-header-group;
}