@charset "UTF-8";
/* CSS Document */
/*============================================================
reset
============================================================*/
body {
    margin: 0;
    padding: 0;
    font-family:'ヒラギノ角ゴ Pro W6',Hiragino Kaku Gothic Pro,Osaka,'ＭＳ Ｐゴシック',sans-serif;
}
dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, input, p, blockquote,
fieldset, div {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-size: 100%;
}
ul li, ol li {
    list-style: none;
}
table {
    margin: 0;
    padding: 0;
    font-size: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
caption {
    text-align: left;
}
table, pre, code, select, input, textarea, kbd, var, ins, del, samp {
    font-size: 100%;
}
address, cite, dfn, em, strong, var, th, ins, del, samp {
    font-style: normal;
    font-weight: 400;
}
a img {
    border: 0;
}
fieldset {
    border: none;
}
/*============================================================
default
============================================================*/
body{
    background: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased;
}
#wrapper{
    width: 950px;
    margin: 0 auto;
}
a{
    color: #0263c6;
    text-decoration: none; 
}
/*============================================================
header
============================================================*/
/* globalHeader */
.globalHeader{
    margin: 10px auto 20px;
    width: 950px;
    background-color:#fff;
    overflow: hidden;
    color:#000;
    font-size:12px;
}
.globalHeader a{
    color: #0263c6;
    text-decoration: none;
}
.globalHeader .logo{
    float: left;
    margin-left: 5px;
}
.globalHeader .loginArea{
    text-align: right;
}
.globalHeader p,.globalHeader li{
    display: inline;
}
.globalHeader li:first-child{
    margin-right: 10px;
}
.globalHeader li:nth-child(2)::after{
    content: " ｜ ";
}
.globalHeader li:nth-child(3)::after{
    content: "　";
}
.globalHeader li:nth-child(4)::before{
    content: "[";
}
.globalHeader li:nth-child(4)::after{
    content: "]";
}
.globalHeader li span{
    font-weight: 400;
}
/* .errorText */
.errorText {
    color: #FF0000;
    text-align: center;
    margin: 20px 10px;
    padding: 5px;
    border: 1px solid #dc0000;
    background: #fff;
    color: #dc0000;
}
/*============================================================
.contents
============================================================*/
.contents{
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0;
}
/*============================================================
.side
============================================================*/
.side {
    width: 215px;
    margin: 0 20px 0 0; 
}
.side h1{
    margin: 0 0 20px;
}
.side p{
    font-size: 14px;
    line-height: 1.8;
}
/* dl */
.side dl{
    margin-top: 30px;
    border: 1px solid #dc0000;
    font-size: 14px;
}
.side dt{
    padding: 5px 10px ;
    background-color: #dc0000;
    color: #fff;
}
.side dd{
    padding: 5px 10px;
}
.side dd a{
    text-decoration: none;
    color: #0263c6;
}
/*============================================================
.main
============================================================*/
.main {
    width: 710px;
    margin: 0 0 40px;
}
.main h1 {
    position: relative;
    margin-bottom: 17px;
    padding:10px;
    background: #eb1514;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.main h1::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 34px;
    border: 6px solid transparent;
    border-top: 6px solid #eb1514;
    width: 0;
    height: 0;
}
.main .box{
    border-bottom: 2px dotted #999;
}
.main .box:first-child{
    padding-top: 0;
}
.main .box:last-child{
    border-bottom: none;
}
.main .box .inner{
    width: 300px;
    max-height: 80px;
    margin: 0 auto;
    display:table-cell;
    padding: 20px 25px 20px;
    border-right: 2px dotted #999;
    text-align: center;
}
.main .box .inner:last-child{
    border: none;
}
.main .box .inner a img{
    margin-bottom: 15px;
}
.main .box .inner p{
    font-size: 13px;
    text-align: left;
}
.main .box .inner a:link .arrow{
    color: #0263c6;
}
.main .box .inner .arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    vertical-align: middle;
    text-decoration: none;
    text-align: right;
    color: #0263c6;
    left: 97px;
    margin-top: 10px;
}
.main .box .inner .arrow::before{
    position: absolute;
    top:6px;
    right:0;
    margin: auto;
    content:"";
    vertical-align: middle;
    box-sizing: border-box;
    width: 12px;
    height: 12px;    
}
.main .box .inner .arrow::after{
    position:absolute;
    top:4px;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    left: -72px;
    box-sizing: border-box;
    width: 5px;
    height: 5px; 
    border: 5px solid transparent;
    border-left: 5px solid #f00;
}
/*============================================================
footer
============================================================*/
footer{
    margin: 0 auto;
    width: 950px;
    background-color:#fff;
    color:#000;
    font-size:12px;
    text-align: center;
}
footer ul li{
    display: inline-block;
}
footer li::after{
    content: " - ";
}
footer li:last-child::after{
    content: "";
}