@charset "UTF-8";

/* ========================================
   共通レイアウト
======================================== */

/* ラッパー構造 */
.header-wrapper,
.title-wrapper,
.content-wrapper,
.footer-wrapper {
    width: 100%;
}

.header-wrapper {
    background: #023F64;
}

.title-wrapper {
    background: #336699;
    color: #fff;
}

#header,
#title,
#simpleCont,
#footer {
    width: 1024px;
    margin: 0 auto;
}

/* ========================================
   ヘッダー
======================================== */
#header {
    height: 87px;
}

#headerCont {
    width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#header #logo {
    padding: 10px 0 0 38px;
}

#header #logo a {
    display: inline-block;
}

#header #topCont {
    margin: 12px 16px 0 0;
    text-align: right;
}

#header #topnavi {
    list-style-type: none;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

#header #topnavi li {
    position: relative;
}

#header #topnavi a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    margin-right: 10px;
}

#header #topnavi a:hover {
    color: #70D0FF;
}

/* お役立ちリンクドロップダウン */
#header #topnavi .quickLink {
    position: absolute;
    background: #0c8db3;
    z-index: 10000;
    text-align: left;
    display: none;
    box-shadow: 3px 3px 8px #666;
    top: 100%;
    right: 0;
    min-width: 250px;
}

.quickLinkBody {
    padding: 10px;
}

.quickLinkList dt {
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 5px;
}

.quickLinkSub {
    list-style: none;
    margin-bottom: 10px;
}

.quickLinkSub li a {
    padding: 4px 10px;
    display: block;
    border: none !important;
    color: #fff;
    font-size: 11px;
    margin: 0;
}

.quickLinkSub li a:hover {
    background: #53cdec;
}

#header #nicksym {
    display: inline-block;
    margin-top: 13px;
    line-height: 24px;
    margin-right: 4px;
}

#header .welcome {
    color: #85B8CC;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}

#header #symbol {
    display: inline-block;
    vertical-align: middle;
}

/* ========================================
   タイトルバー
======================================== */
#title {
    color: #fff;
    clear: both;
    line-height: 27px;
    width: 1024px;
    margin: 0 auto;
    font-family: 'Noto Sans JP Medium', sans-serif;
    font-size: 14px;
}

#title span {
    display: inline-block;
    margin-left: 42px;
}

/* ========================================
   共通操作メニュー
======================================== */
#ope {
    margin-bottom: 16px;
    list-style-type: none;
    display: flex;
    border-radius: 5px;
    padding: 0 7px;
    height: 36px;
    line-height: 36px;
    background: linear-gradient(to bottom, #5484b8 0%, #004062 100%);
}

#ope li {
    margin: 0;
}

#ope a {
    color: #fff;
    padding-left: 25px;
    margin-right: 25px;
    font-size: 13.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

#ope a:hover {
    opacity: 0.8;
}

#ope #save {
    background: url(../../img/ico_save.png) no-repeat center left;
}

#ope #open {
    background: url(../../img/ico_open.png) no-repeat center left;
}

#ope #print {
    background: url(../../img/ico_print.png) no-repeat center left;
}

#ope #totalhelp {
    background: url(../../img/ico_help.png) no-repeat center left;
}

/* ========================================
   フッター
======================================== */
.footer-wrapper {
    background: #fff;
    margin-top: 10px;
}

#footer {
    clear: both;
    color: #999;
    background: #fff;
    padding-top: 15px;
    font-family: 'Noto Sans JP Light', sans-serif;
    width: 1024px;
    margin: 0 auto;
}

#footer menu {
    width: 984px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

#footer menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#footer menu ul li {
    display: inline;
}

#footer a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    clear: both;
    margin: 0 10px;
}

#footer a:hover {
    color: #0072ff;
    text-decoration: underline;
}

#footer #disclaimer {
    width: 981px;
    margin: 15px auto 0;
    font-size: 13px;
    list-style: none;
    padding: 0;
}

#footer #disclaimer li {
    margin-left: 20px;
}

#footer address {
    text-align: center;
    font-style: normal;
    margin: 10px 0;
    font-size: 12px;
}

/* ========================================
   コンテンツエリア
======================================== */
#simpleCont {
    width: 980px;
    margin: 0 auto;
    padding: 33px 22px 10px;
    min-height: 500px;
}