@charset "utf-8";
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),  /* Mediumを明示的に指定 */
       local('Yu Gothic Medium'), /* Chrome用 */
       local('YuGothic-Regular'); /* Windows8.1ではMediumがないのでRegularを指定 */
}
body{
    margin: 0;
    padding: 0;
    font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',       /* Windowsの欧文 */
               YuGothicM,        /* Windows8.1以上は游ゴシック */
               YuGothic,         /* Macの游ゴシック */
               Meiryo,           /* 游ゴシックが入っていないWindows */
               sans-serif;
}
h1,h2,h3,h4,h5,h6{
    margin-top: 0;
    line-height: 1.6;
}
h1{
    color: #0A122A;
}
a img{
    border-style: none;
}
#main_title{
    text-align: center;
    margin: 0;
}
header{
    width: 960px;
    margin: 0 auto;
}
header p{
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 5px;
}
#global_navi{
    width: 960px;
    margin: 0 auto;
}
#global_navi ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#global_navi ul li{
    width: 95px;
    float: left;
    margin-right: 1px;
    margin-bottom: 1px;
    text-align: center;
    font-size: 0.6em;
}
#global_navi ul li a{
    background-color:darkgoldenrod;
    color: cornsilk;
    display: block;
    padding: 8px;
    text-decoration: none;
}
#global_navi ul li a:visited{
    color: cornsilk;
}
#global_navi ul li a:hover{
    background-color: crimson;
    font-weight: bold;
    transition-property: background-color;
    transition-timing-function:ease-in;
    transition-duration: 0.3s;
    transition-delay: 0.1s;
}
#main_visual{
    clear: both;
    width: 960px;
    margin: 0 auto;
}
#main_visual p{
    text-align: center;
    margin: 0;
}
#wrapper{
    clear: both;
    overflow: hidden;
    width: 960px;
    margin: auto;
}
#main{
    width: 960px;
}
#breadcrumb ol{
    clear: both;
    display: block;
    width: 960px;
    margin: auto;
    padding: 0;
    list-style: none;
    font-size: smaller;
}
#breadcrumb ol li{
    display: inline;
    margin: 0;
    padding: 0;
}
#breadcrumb ol li a{text-decoration: none;}
#breadcrumb ol li::after{content: ">"}
#breadcrumb ol li:last-child::after{content: none;}

article h2{
    text-align: center;
    background-color: cadetblue;
}
article div.op_button{
    display: inline-block;
    margin-left: 825px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1em;
    font-family: fantasy;
    background-color: burlywood;
    border: 1px solid crimson;
    padding: 2px;
    border-radius: 5px;
}
article div.op_button a{
    text-decoration: none;
    color: #333333;
}
article div.op_button a:visited{
    color: #333333;
}
article div.op_button:hover{
    background-color: crimson;
    color: white;
    transition-property: background-color,color;
    transition-timing-function:ease-in;
    transition-duration: 0.3s;
    transition-delay: 0.1s;
}
p.attention{
    font-size: 10px;
    line-height: 0.5;
    margin-left: 30px;
}
table{
    width: 900px;
    margin: auto;
}
table th{
    padding: 5px;
    font-size: 1em;
    background-color: #8181f7;
    text-align: center;
}
table td{
    padding: 5px;
    font-size: 0.8em;
    background-color: #cecef6;
    text-align: center;
}
h2{
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    color: #333333;
}
footer{
    display: block;
    width: 960px;
    color: azure;
    background-color: chocolate;
    margin: auto;
    text-align: center;
}
@media screen and (max-width : 960px){
    img{
        max-width: 100%;
    }
    header,#global_navi,#sidebar,#wrapper,#main_visual{
        width: 100%;
    }
    header p{
        width: 30%;
    }
    #main_title{
        max-width: 100%;
    }
    #global_navi ul li{
        width: 50%;
        padding: 0.5px;
        margin: 0;
        box-sizing: border-box;
    }
    #global_navi ul li a{
        margin: 0;
    }
    #main{
        width: 100%;
        padding: 0.5px;
        box-sizing: border-box;
        float: none;
    }
    #main_visual{
        width: 100%;
        height: auto;
    }
    footer{
        width: 100%;
    }
    table{
        width: 100%;
    }
    table th,table td{
        font-size: 8px;
    }
    article div.op_button{
    margin: 0 auto;
    font-size: 8px;
    }
    article h2{
        font-size: 12px;
    }
    article h3{
        font-size: 8px;
    }
    #breadcrumb ol{
    font-size: 50%;
    }
    p.attention{
    font-size: 50%;
    line-height: 1;
    margin: 5px auto;
    }
}
