@charset "UTF-8";
/* CSS Document */

/*-----------------
共通パーツ
-----------------*/
*{margin:0;padding:0;}
html{font-size:62.5%;}
body{font-size:16px;font-size:1.6rem;font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;}
a{color: #0062b0;text-decoration: none;transition: background-color .1s ease-out,color .1s ease-out;}
a:hover{opacity:0.7;}
img{vertical-align:middle;max-width:100%;height:auto;}
ul,li{list-style:none;}

.btn {
    background-color: #e50012;
    padding: 10px 30px;
    margin: 0 auto 10px;
    display: block;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    max-width: 28em;
}

/*-----------------
ヘッダー
-----------------*/
header {
    margin: 0 0 2em;
}
header #header_summary {
    max-width: 980px;
    margin: 0 auto;
    padding: 5px 14px;
}
header .title {
    padding: 6px 14px;
    color: #fff;
    background: #0062b0;
}
header .title h1 {
    max-width: 980px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: normal;
}
header h1 a {
    color: #fff;
    text-decoration: none;
}
header #pnkz {
    font-size: 12px;
    padding: 6px 14px;
}
header #pnkz p {
    max-width: 980px;
    margin: 0 auto;
}
header #header_image {
    text-align: center;
}

/*-----------------
ナビ
-----------------*/
nav {
    background-color: #e6f4ff;
    padding: 1em 2em;
}
nav h2 {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
}
nav ul {
    font-size: 0;
    text-align: center;
}
nav ul li {
    display: inline-block;
    margin: 0 5px 5px 0;
}
nav a {
    background: #0062b0;
    color: #fff;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 10px;
}
nav a.new {
    background: #e50012;
}

/*-----------------
記事
-----------------*/
article {
    margin: 0 auto 30px;
    text-align: center;
}
article .blog_contents,
article h2 p {
    max-width: 980px;
    margin: 0 auto;
}
article h2 {
    background-color: #0062b0;
    color: #fff;
    border-bottom: 5px solid #009ee7;
    text-align: left;
    padding: 10px 14px;
}
article h2.top {
    background-color: #009ee7;
    border-bottom: 5px solid #0062b0;
}
.blog_contents {
    padding: 14px;
    text-align: center;
}

/*-----------------
ヘッダー・フッターメニュー
-----------------*/
.footer_menu {
    text-align: center;
    padding: 0 2em;
}
.footer_menu p {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 0 30px;
}

/*-----------------
コピーライト
-----------------*/
/* page top */
#pagetop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
}
#pagetop a {
    background-color: #009ee7;
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
}
#pagetop a:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}
footer {
    background-color: #ededed;
    text-align: center;
    padding: 15px 2em;
}
footer div {
    font-size: 12px;
    font-size: 1.2rem;
}

/*-----------------
section
-----------------*/
section {
    background: #e6f4ff;
    padding: 0 2em;
}
section h3 {
    text-align: center;
}
.s_menu {
    padding: 2em 0;
    margin: 2em 0;
    font-weight: bold;
}
.s_menu .btn {
  margin: 0 auto;
}

@media screen and (max-width: 780px) {
    article {
        font-size: 14px;
        font-size: 1.4rem;
    }
    .blog_contents {
        text-align: left;
    }
    .blog_contents p>br {
        display: none;
    }
}