@charset "UTF-8";

/*リセットcss*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    list-style-type: none;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}

/*共通css*/
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/* 
font設定 
--------------------- */
/*CONDENSE*/

@font-face {
    font-family: 'CONDENSEicon';
    src: 
         url('../fonts/condense/CONDENSEicon.ttf') format('truetype'),
         url('../fonts/condense/CONDENSEicon.eot') format('eot'),
         url('../fonts/condense/CONDENSEicon.woff') format('woff'),
         url('../fonts/condense/CONDENSEicon.otf') format('opentype');
}

/*SF-Webicon*/
@font-face {
     font-family: 'SF-Webicon';
     src:url('../fonts/SF-Webicon/SF-Webicon.ttf') format('truetype'),
         url('../fonts/SF-Webicon/SF-Webicon.eot') format('eot'),
         url('../fonts/SF-Webicon/SF-Webicon.woff') format('woff'),
         url('../fonts/SF-Webicon/SF-Webicon.otf') format('opentype');
}

body {
  font-family: "メイリオ","游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;  
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: #404040;
}
em {
  font-style: normal;
}
#cboxCurrent,#cboxTitle {
  display: none!important;
}

/*Pagenation*/
.pagenation {
    margin: 1em 0;
}
.pagenation:after, .pagenation ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.pagenation ul {
    margin: 0;
}
.pagenation li {
    float: left;
    list-style: none outside none;
    margin-left: 3px;
    font-weight: bold;
    border: 1px solid #48b4ff;
    border-radius: 3px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
    background: none repeat scroll 0 0 #fff;
    
}
.pagenation li:first-child {
    margin-left: 0;
}
.pagenation li.active {
    background-color: #48b4ff;
    border-radius: 3px;
    color: #FFFFFF;
    cursor: not-allowed;
    padding: 10px 20px;
}
.pagenation li a {
    font-weight: bold;
    color: #48b4ff;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.pagenation li a:hover {
    background-color: #48b4ff;
    color: #FFFFFF;
    opacity: 0.8;
    transition-duration: 500ms;
    transition-property: all;
    transition-timing-function: ease;
}
.pagenation .prev a,
.pagenation .next a{
  font-weight: normal;
  font-family: 'CONDENSEicon';
  padding: 10px 25px;
}