@charset "UTF-8";
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height:1.75;
	background-image: url(img/bg.jpg);
    /* background-size: cover;
    background-position: center center; */
	background-repeat: repeat-y, no-repeat;
	background-size:auto, cover cover;
	background-attachment:none, fixed;
	background-position: center top, center center;
}


a:link { color: #003399; text-decoration: none;}
a:visited { color: #660099; text-decoration: none;}
a:hover { color: #0099cc; text-decoration: underline;}
a:active { color: #ffcc00; text-decoration: underline;}

/* wrap
-------------------------------------------------- */
.wrap {
	width:920;
	background-color:#FFFFFF;
	margin:0 auto;
	padding:0 15px;
}

/* top
-------------------------------------------------- */
.bg {
	width:890px;
	height:350px;
	background:url(img/B.jpg) no-repeat;
}

.topics {
	margin:20px 15px;
}

.topics .title{
	font-size:18px;
	font-weight:bold;
	border-bottom:3px solid #175a8f;
	margin-bottom:5px;
}

.topics p{
	border-bottom:1px dotted #CCC;
	font-size:15px;
	line-height:1.25;
	margin:0;
	padding:10px 0;
}

.topics p a{
	list-style:none;
	color:#000;
}

/* saigai & yakuin-meibo
-------------------------------------------------- */
.list_area {
	width:530px;
	text-align:center;
}

.list_area table tr td {
	padding:5px;
}


.list_area .midashi {
	color:#FFFFFF;
	background:#607e8f;
	border-top: none;
	border-right: 1px solid #FFFFFF;
	border-bottom: none;
	border-left: none;
}

.list_area .komoku {
	background:#e8e8e8;
	border-top: none;
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	border-left: none;
}

/* sanjo
-------------------------------------------------- */
.list-sanjo_area {
	border:2px solid #607e8f;
	width:370px;
	margin-left:15px;
	padding:0;
	float:left;
}

.list-sanjo_area tr td {
	padding:5px 10px;
	border-bottom: 1px dotted #607e8f;
}

.list-sanjo_area tr td.last {
	border-bottom:none;
}
table td font span {
	font-size: 0.8em;
	display:block;
	line-height: 1.4em;
	padding-left:1em;
	text-indent:-1em;
}

/* login_kaiin & login_sanjo
-------------------------------------------------- */
.login-title {
	border-bottom: 3px solid #045C84;
	padding-bottom: 0.75em;
}
.login-title img {
	margin-top: 10px;
	width: 150px;
	height: 36.57px;
}
.kaiin {
    padding: 10px 25px;             /* 余白指定 */
    background-color: #045C84; /* 背景色指定 */
    border-radius:  1em;       /* 角丸指定 */
    color: #fff;                /* 文字色指定 */
}
.sanjo {
    padding: 10px 25px;             /* 余白指定 */
    background-color: #fff; /* 背景色指定 */
    border-radius:  1em;       /* 角丸指定 */
	border: 3px solid #045C84;
    color: #045C84;                /* 文字色指定 */
}
.login-nav ul {
    list-style: none;  /* デフォルトのアイコンを消す */
    margin: 0;         /* デフォルト指定上書き */
    padding: 0;         /* デフォルト指定上書き */
}
.login-nav li:before {
	color: #035C84;
    content: "▶︎";     /* 空の要素作成 */
    margin-right: 10px;          /* 余白指定 */
}
.login-nav li {
    padding: 10px 15px;             /* 余白指定 */
    background-color: #E8E8E8; /* 背景色指定 */
    margin-bottom: 2px;         /* 要素と要素の間指定 */
	line-height:1.5;
}
.login-nav a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
.login-nav-title {
	font-size: 2em;
	border-bottom: 3px solid #E8E8E8;
	margin-top: 0;
}

/* ----------------------------------
	accordion
---------------------------------- */
.acd-check{
    display: none;
}
.acd-label{
    background: #0068b7;
    color: #fff;
    display: block;
	font-size: 1.25em;
    margin-bottom: 1em;
    padding: 10px;
    position: relative;
    cursor: pointer;
}
.acd-label:after{
    background: #00479d;
    box-sizing: border-box;
    content: '＋';
    display: block;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}
.acd-label.katsudou{
    background: #FCDDD3;
    color: #000;
}
.acd-label.katsudou:after{
    background: #F47E59;
    color: #fff;
}
.acd-content{
    /* border: 1px solid #333; */
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-content p{
	margin: 0;
	padding-bottom: 1em;
}
.acd-content.sv p{
	margin: 0;
	padding-bottom: 0.25em;
}
.acd-content h3{
	font-size: 1.25em;
	margin: 0;
	padding-bottom: 0.15em;
}
.acd-content a{
	text-decoration:underline;
}
.acd-check:checked + .acd-label:after{
    content: 'ー';
}
.acd-check:checked + .acd-label + .acd-content{
    height: 100%;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}