@charset "UTF-8";

/*
第30回日本医療情報学会春季学術大会 シンポジウム2026宇都宮 CSS
Author: Kazuya Tahara(Hdj)
Version: 202508
*/


/*-----------------------------------------------
 __ResetCss
-----------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-style:normal;
font-weight: normal;
font-size: 100%;
vertical-align: baseline;
box-sizing:border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}

html{
font-size: 62.5%;
overflow-y: scroll;
scroll-behavior: smooth;
}

blockquote, q {
quotes: none;
}

strong,
strong *{
	font-weight:bold;
}

blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}

input, textarea{
margin: 0;
padding: 0;
}

ol, ul{
list-style:none;
}

table{
border-collapse: collapse; 
border-spacing:0;
}
table td{
vertical-align:middle;
}
caption, th{
text-align: left;
}

a:focus {
outline:none;
}

/*ClearFix*/
.clearfix:after {
content: "."; 
display: block;
clear: both;
height: 0;
visibility: hidden;
}

.clearfix {
min-height: 1px;
}

* html .clearfix {
height: 1px;
/*¥*//*/
height: auto;
overflow: hidden;
/**/
}
/*-----------------------------------------------
 __BassSetting
-----------------------------------------------*/
body{
	font-family:"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height:1.6;
    background-color: #063b56;
}
a{
	color:#00a0b0;
}
a:hover{
	color:#F90;
}
.Wrapper {
	display:flex;
	flex-direction:row-reverse;
	width:1000px;
	margin:0 auto;
}
.Content {
	width:760px;
    background:#FFF url("refer/bg_visual.jpg") no-repeat 0 0;
}

/*-----------------------------------------------
 __#HEADER
-----------------------------------------------*/
#HEADER{
	height:280px;
	position:relative;
    border:1px solid rgba(255,255,255,0);
}
#HEADER h1{
	width:366px;
	height:193px;
    font-size: 1px;
    text-indent: -9999px;
    margin: 40px auto auto 180px;
    background: url("refer/title_main.png") no-repeat 0 0;
    background-size: contain;
}
#HEADER .LogoUtsunomiya{
    width: 104px;
    height: 104px;
    font-size: 1px;
    text-indent: -9999px;
    background: url("refer/logo_utsunomiya.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
    left: 40px;
    top: 80px;
}
#HEADER .LogoUtsunomiya a{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 52px;
}
#HEADER .LogoJAMI{
    width: 139px;
    height: 77px;
    font-size: 1px;
    text-indent: -9999px;
    background: url("refer/logo_jami.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
    right: 40px;
    top: 90px;
}
#HEADER .LogoJAMI a{
    display: block;
    width: 100%;
    height: 100%;
}
/*-----------------------------------------------
 __Nav
-----------------------------------------------*/
nav{
	width:240px;
    display: flex;
	flex-direction:column;
    padding-top: 38px;
    background-color: #a6c8e2;
    position: relative;
}
nav ul{
	width:240px;
	display:flex;
	flex-direction:column;
    padding-bottom: 260px;
}
nav ul li{
    width: 220px;
	color:rgba(0,0,0,0.20);
	font-weight:bold;
    font-size: 1.6rem;
	padding:5px 10px;
	margin:0 auto 4px;
    background-color: rgba(255,255,255,0.5);
}
nav ul li a{
	box-sizing: content-box;
	display:block;
	width:100%;
	height:100%;
	font-weight:bold;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
	padding:5px 10px;
	margin:-5px -10px;
	position: relative;
	overflow: hidden;
}
nav ul li a:hover{
	color:rgba(0,0,0,1.00);
}
nav ul li a::before,
nav ul li a::after {
	background: rgba(255,255,255,0.3);
	content: '';
	position: absolute;
	z-index: 100;
	/*background-color: #f00;*/
	height: 100%;
	left: -180%;
	top: 0;
	transform: skew(80deg);
	transition-duration: 0.5s;
	transform-origin: top left;
	transition-timing-function: ease-in-out;
	width: 0;
}
nav ul li a:hover:after {
	height: 100%;
	width: 300%;
}

/*-----------------------------------------------
 __Footer
-----------------------------------------------*/
footer{
	width:1000px;
	padding-top:10px;
	padding-bottom:10px;
	margin:-40px auto 0;
    position: relative;
}
footer .Copyright{
	font-size:1.2rem;
	text-align: right;
    padding-right: 10px;
}
footer .PageTop{
	width:40px;
	height:40px;
	font-size:1px;
	text-indent:-9999px;
	background:#a6c8e2 url(refer/ic_pagetop.png) no-repeat 50% 45%;
	background-size:15px;
    position: fixed;
	bottom:50px;
	right:20px;
	/*非表示*/
	opacity: 0;
	visibility: hidden;
	transition: all 1s;
	transform: translateY(150px);
}
footer .PageTop.Active{
  /*表示*/
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
footer .PageTop a{
	display:block;
	width:100%;
	height:100%;
}
footer .PageTop a:hover{
    background-color: rgba(255,255,255,0.2);
}
/*-----------------------------------------------
 __Article
-----------------------------------------------*/
.Article {
	width:760px;
	min-height:1000px;
	padding-top:40px;
	padding-bottom:60px;
    background-color: rgba(255,255,255,1.0);
    position: relative;
}
.Article h2{
	box-sizing:border-box;
	width:720px;
	font-size:3.2rem;
	font-weight:bold;
	line-height:50px;
	margin:0 0 40px auto;
}
.Article h3{
	font-size:2.0rem;
	margin:2em 40px 0.5em;
    border-bottom: 1px solid #004699;
}
.Article h2 + h3{
	margin-top:30px;
}
.Article h3:first-child{
	margin-top:30px;
}
.Article h4{
	font-size:1.8rem;
	color: rgba(0,169,137,1.00);
	margin:1em 40px 10px;
	font-weight:bold;
}
.Article h3 + h4{
    margin-top: 0;
}
.Article h5{
    font-size: 1.6rem;
	font-weight:bold;
	color:#333;
	margin:1em 40px 10px;
}
.Article p{
    font-size: 1.6rem;
	margin:0 40px 1em;
}
.Article figure{
    font-size: 1.6rem;
	margin:0 40px 1em;
}
.Article ul{
    font-size: 1.6rem;
	margin:0 40px 1em;
}
.Article ol{
    font-size: 1.6rem;
	margin:0 40px 1em;
}
.Article dl{
    font-size: 1.6rem;
	margin:0 40px 1em;
}
.Article sup{
	font-size:1.2rem;
	vertical-align:top;
}
.Article sub{
	font-size:1.2rem;
	vertical-align:bottom;
}
.Article .Red{
	color:#F00;
}
.Article .UL{
	text-decoration:underline;
}
.Article strong{
	font-weight:bold;
}
.Article table{
	width:auto;
    font-size: 1.6rem;
	margin:0 40px 1em 40px;
	border-top:1px solid #CCC;
	border-left:1px solid #CCC;
}
.Article table th{
	padding:0.5em 1em;
	background:#EEE;
	vertical-align:middle;
	border-bottom:1px solid #CCC;
	border-right:1px solid #CCC;
}
.Article table td{
	padding:0.5em 1em;
	border-bottom:1px solid #CCC;
	border-right:1px solid #CCC;
}
.Article .Flex{
	display:flex;
	justify-content:space-between;
}
.Article .AlignRight{
	text-align:right;
}
.Article .AlignCenter{
	text-align: center;
}
.Article .ListIc li{
	padding-left:14px;
	padding-bottom:10px;
	position:relative;
}
.Article .ListIc li::before{
	display:inline-block;
	width:1em;
	height:1em;
	text-align:center;
	content:"●";
	color:rgba(60,91,154,0.5);
	font-size:10px;
	position: absolute;
	left:0;
	top:0.4em;
}
.Article .ListIc li .ListNote{
	margin-top:0.5em;
	margin-left:0;
	margin-right:0;
}
.Article .ListIc li .ListIc{
    margin-top: 0.5em;
	margin-left:0;
	margin-right:0;
    margin-bottom: 0;
}
.Article .ListIc li .ListNote li{
    margin-bottom: 0;
}
.Article .ListIc li .ListNote li::before{
	font-size:100%;
}
.Article .ListNote li{
	padding-left:1em;
	margin-bottom:10px;
	position:relative;
}
.Article .ListNote li::before{
	display:inline-block;
	width:1em;
	height:1em;
	text-align:center;
	content:"※";
	color: rgba(255,0,0,1);
	position: absolute;
	left:0;
	top:0em;
}
.Article .ListNote li .ListNum{
	margin-left:0;
	margin-right:0;
}
.Article .ListNote li .ListNum li{
	padding-left:0;
	margin-bottom:0;
}
.Article .ListNote li .ListNum li::before{
	display:none;
	content:"";
}

.Article .ListNum li{
	margin-left:30px;
	margin-bottom:1em;
	list-style-type:decimal;
}
.Article .ListNum li .ListNote{
    margin: 0;
}
.Article .ListNum li .ListNote li{
    list-style-type: none;
    margin: 0;
}
.Article .RevNote{
	margin:1em 10px 1em auto;
	padding:1em 0;
	border-top:1px solid #CCC;
}
.Article .FootInfo{
	padding-top:1em;
	margin:2em 40px 16px;
	border-top:2px solid rgba(63,86,153,1.00);
}
.Article .FootInfo *{
	margin-left:0;
	margin-right:0;
}
.Article .Bt{
	width:70%;
	line-height:1.6;
	text-align:center;
	font-weight:bold;
	color:#FFF;
	margin:0 auto 40px;
	border-radius:3px;
	background-color: rgba(0,87,175,1.00);
}
.Article .BtNoLink{
	padding-top:12px;
	padding-bottom:12px;
}
.Article .Bt a{
	display:block;
	width:100%;
	height:100%;
	color:#FFF;
	text-decoration:none;
	font-weight:bold;
	padding-top:12px;
	padding-bottom:12px;
	background-color:rgba(255,255,255,0.00);
}
.Article .Bt a:hover{
	display:block;
	background-color:rgba(255,255,255,0.2);
}
.Article .BtCoi{
	width:60%;
	background-image:url(refer/ic_guide.png);
	background-repeat:no-repeat;
	background-position:20px 50%;
}
.Article .BtSSL{
	width:60%;
	background-image:url(refer/ic_key.png);
	background-repeat:no-repeat;
	background-position:20px 50%;
	background-size:25px;
}
.Article .BtPdf{
	background-image:url(refer/ic_pdf.png);
	background-repeat:no-repeat;
	background-position:20px 50%;
	background-color:#C80F13;
	background-size:40px;
}
.Article .BtXls{
	background-image:url(refer/ic_xls.png);
	background-repeat:no-repeat;
	background-position:20px 50%;
	background-color: #3CA503;
	background-size:30px;
}
.Article .BtWord{
	background-image:url(refer/ic_word.png);
	background-repeat:no-repeat;
	background-position:20px 50%;
	background-color: rgba(0,147,187,1.00);
	background-size:30px;
}
.Article .BtPpt{
	background-image:url(refer/ic_ppt.png);
	background-repeat:no-repeat;
	background-position:20px 50%;
	background-color: rgba(255,112,0,1.00);
	background-size:30px;
}
.Article .BtLink{
	width:60%;
	background-image:
		url(refer/ic_link_l.png),
		url(refer/ic_link_r.png);
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		10% 50%,
		90% 50%;
	background-size:
		14px,
		14px;
}
.Article .IcPDF{
	padding-left:26px;
	padding-top:4px;
	min-height:28px;
	background: url(refer/ic_pdf_link.png) no-repeat 0 100%;
	background-size:20px;
}
.Article .IcPPT{
	padding-left:26px;
	padding-top:4px;
	min-height:28px;
	background: url(refer/ic_ppt_link.png) no-repeat 0 100%;
	background-size:20px;
}
.Article .IcBlankLink{
    display: inline-block;
    padding-right: 1em;
    background: url("refer/ic_link_blank.png") no-repeat 100% 0.4em;
    background-size: 12px;
}

/*-----------------------------------------------
 __ArticleTop
-----------------------------------------------*/
.ArticleTop{
	padding-bottom:0;
    position: relative;
}
.ArticleTop .MainVisual{
    height: 590px;
    position: relative;
    background: url("refer/outline.png") no-repeat 40px 340px;
    background-size: 679px;
    position: relative;
}
.ArticleTop .MainVisual .Theme{
    width: 641px;
    height: 304px;
    font-size: 1px;
    text-indent: -9999px;
    background: url("refer/theme.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
    left: 110px;
    top: 0;
}
.ArticleTop .MainVisual h2{
   font-size: 1px;
    text-indent: -9999px;
}
.ArticleTop .MainVisual dt{
	font-size:1px;
	text-indent:-9999px;
}
.ArticleTop .MainVisual dd{
	font-size:1px;
	text-indent:-9999px;
}
.ArticleTop .InfoBox {
	padding:1em 1em 0;
	margin:0 0 40px 50px;
	border:2px solid rgba(255,0,4,1.00);
}
.ArticleTop .InfoBox h2{
	font-size:1.8rem;
	font-weight:bold;
	text-align:center;
	margin-bottom:0.7em;
}
.ArticleTop .InfoBox p{
	margin-bottom:1em;
}
.ArticleTop .WhatsNew{
	margin-left:50px;
    margin-right: 50px;
	position:relative;
}
.ArticleTop .WhatsNew h2{
	font-size:2.0rem;
    font-weight: bold;
    padding-bottom: 5px;
	margin-bottom:10px;
	border-bottom:2px solid #004699;
}
.ArticleTop .WhatsNew .NoteBox{
    padding: 1em 1em 0 1em;
    margin-bottom: 1em;
    border: 2px solid rgba(255,0,4,1.00);
}
.ArticleTop .WhatsNew .NoteBox h3{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.ArticleTop .WhatsNew .NoteBox > *{
    margin-bottom: 1em;
}
.ArticleTop .WhatsNew .NoteBox .ListNote li{
    padding-left: 1em;
    position: relative;
}
.ArticleTop .WhatsNew .NoteBox .ListNote li::before{
    content: "※";
    color: #F00;
    position: absolute;
    left: 0;
    top: 0;
}
.ArticleTop .WhatsNew .WnList{
	max-height:160px;
	overflow: auto;
	margin-bottom:40px;
}
.ArticleTop .WhatsNew .WnList li{
    font-size: 1.6rem;
	position:relative;
	padding:0 0 8px 6em;
	margin-bottom:8px;
	border-bottom:#063B56 1px solid;
}
.ArticleTop .WhatsNew .WnList li .Date{
	position:absolute;
	top:0;
	left:0;
	font-family:Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
}
.ArticleTop .OfficeBox{
	display:flex;
	width:660px;
	justify-content:space-between;
	margin:0  auto 0 50px;
    padding-bottom: 70px;
}
.ArticleTop .OfficeBox h2{
    display: inline-block;
    font-size: 1.6rem;
    color: #FFF;
    padding: 0 1em;
	margin:0 0 5px;
    background-color: #063b56;
}
.ArticleTop .OfficeBox p{
    font-size: 1.4rem;
}
.ArticleTop .Red{
	color:#F00;
}
.ArticleTop .AlignRight{
	text-align:right
}
