/* ------------------------------------------
 normalize
------------------------------------------ */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}

/* Corrects inline-block display not defined in IE8/9. */
audio, canvas, video {
  display: inline-block;
}

/* Prevents modern browsers from displaying 'audio' without controls */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Addresses styling for 'hidden' attribute not present in IE8/9. */
[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/* 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom. */
html {
  width: 100%;
  font-size: 80%;
}

/* Removes default margin. */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, table, pre, p {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 1em;
  font-family: "Hiragino Kaku Gothic Pro","Yu Gothic","Meiryo",sans-serif;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

ul {
  list-style: none;
}

/* =============================================================================
   Links
   ========================================================================== */
/* Addresses `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improves readability when focused and also mouse hovered in all browsers. */
a:hover, a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
/* Addresses `h1` font sizes within `section` and `article` in Firefox 4+, Safari 5, and Chrome. */
p, li, dt, dd, th, td, pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*Addresses styling not present in IE 8/9, Safari 5, and Chrome.*/
abbr[title] {
  border-bottom: 1px dotted;
}

/* Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.*/
b, strong {
  font-weight: bold;
}

/*Addresses styling not present in Safari 5 and Chrome.*/
dfn {
  font-style: italic;
}

/*Addresses styling not present in IE 8/9.*/
mark {
  background: #ff0;
  color: #000;
}

/* Corrects font family set oddly in Safari 5 and Chrome.*/
code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1rem;
}

/*Improves readability of pre-formatted text in all browsers.*/
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*Prevents `sub` and `sup` affecting `line-height` in all browsers.*/
sub, sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*=================================================================
   Embedded content
=================================================================*/
/*Removes border when inside `a` element in IE 8/9.*/
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

/* Corrects overflow displayed oddly in IE 9.*/
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
/*Addresses margin not present in IE6/7/8/9, S5, O11*/
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
/* Define consistent border, margin, and padding*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/* 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome */
button, input, select, textarea {
  font-family: inherit;
  /* 1 */
  margin: 0;
  /* 3 */
}

/*Addresses Firefox 4+ setting `line-height` on `input` using `!important` in  the UA stylesheet.*/
button, input {
  line-height: normal;
  /* 1 */
  /*-webkit-appearance: none;*/
}

/* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`  and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type `input` and others. */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  vertical-align: middle;
  margin: 0;
}

/*Re-set default cursor for disabled elements. */
button[disabled],
input[disabled] {
  cursor: default;
}

/* 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Removes inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers. */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.cf {
  zoom: 1;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cb {
  clear: both;
}

/* ------------------------------------------
 checkbox,radiobutton
------------------------------------------ */
input[type=radio].custom_parts,
input[type=checkbox].custom_parts {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio].custom_parts + label,
input[type=checkbox].custom_parts + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
}

@media (min-width: 1px) {
  input[type=radio].custom_parts,
  input[type=checkbox].custom_parts {
    display: none;
    margin: 0;
  }

  input[type=radio].custom_parts + label,
  input[type=checkbox].custom_parts + label {
    padding: 0 0 0 24px;
  }

  input[type=radio].custom_parts + label::before,
  input[type=checkbox].custom_parts + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 30px;
    height: 30px;
    margin-top: -20px;
    /*width: 18px;*/
    /*height: 18px;*/
    /*margin-top: -9px;*/
    background: #f5f7f9;
  }

  input[type=radio].custom_parts + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
  }

  input[type=checkbox].custom_parts + label::before {
    border: 1px solid #999999;
    border-radius: 3px;
  }

  input[type=radio].custom_parts:checked + label::after,
  input[type=checkbox].custom_parts:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }

  input[type=radio].custom_parts:checked + label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #e60012;
    border-radius: 8px;
  }

  input[type=checkbox].custom_parts:checked + label::after {
    left: 5px;
    width: 20px;
    height: 10px;
    margin-top: -12px;
    border-radius: 4px;
    border-left: 4px solid #e60012;
    border-bottom: 4px solid #e60012;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
/* -------------------------------------
  Sports Event News
------------------------------------- */
.tab_sen-all {
  color: #fff !important;
  background-color: #ff4477 !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_sen-all:hover {
  background-color: #ff91af !important;
}

/* taikai */
.cc_sen-cycle > a {
  background-color: #0367B5;
  color: #fff;
  border: 1px #0367B5 solid;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cc_sen-cycle > a:hover {
  color: #fff !important;
  background-color: #0a91fb;
}
.cc_sen-cycle > div {
  background-color: #0367B5;
  color: #fff;
  border: 1px #0367B5 solid;
}

.tab_sen-cycle {
  background-color: #0367B5 !important;
  color: #fff !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_sen-cycle:hover {
  background-color: #0a91fb !important;
}

/* Event */
.cc_sen-event > a {
  background-color: #00C200;
  color: #fff;
  border: 1px #00C200 solid;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cc_sen-event > a:hover {
  color: #fff !important;
  background-color: #10ff10;
}
.cc_sen-event > div {
  background-color: #00C200;
  color: #fff;
  border: 1px #00C200 solid;
}

.tab_sen-event {
  background-color: #00C200 !important;
  color: #fff !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_sen-event:hover {
  background-color: #10ff10 !important;
}

/* School */
.cc_sen-school > a {
  background-color: #FFAE00;
  color: #fff;
  border: 1px #FFAE00 solid;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cc_sen-school > a:hover {
  color: #fff !important;
  background-color: #ffc64d;
}
.cc_sen-school > div {
  background-color: #FFAE00;
  color: #fff;
  border: 1px #FFAE00 solid;
}

.tab_sen-school {
  background-color: #FFAE00 !important;
  color: #fff !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_sen-school:hover {
  background-color: #ffc64d !important;
}

/* -------------------------------------
  NEWS
------------------------------------- */
/* Event */
.cc_news-event > a {
  background-color: #ff4477;
  color: #fff;
  border: 1px #ff4477 solid;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cc_news-event > a:hover {
  color: #fff !important;
  background-color: #ff91af;
}
.cc_news-event > div {
  background-color: #ff4477;
  color: #fff;
  border: 1px #ff4477 solid;
}

.tab_news-event {
  background-color: #ff4477 !important;
  color: #fff !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_news-event:hover {
  background-color: #ff91af !important;
}

/* Information */
.cc_news-info > a {
  background-color: #bbb;
  color: #fff;
  border: 1px #bbb solid;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cc_news-info > a:hover {
  color: #fff !important;
  background-color: #e1e1e1;
}
.cc_news-info > div {
  background-color: #bbb;
  color: #fff;
  border: 1px #bbb solid;
}

.tab_news-info {
  background-color: #bbb !important;
  color: #fff !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_news-info:hover {
  background-color: #e1e1e1 !important;
}

.cc_news-open > a {
  background-color: #00C200;
  color: #fff;
  border: 1px #00C200 solid;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cc_news-open > a:hover {
  color: #fff !important;
  background-color: #10ff10;
}
.cc_news-open > div {
  background-color: #00C200;
  color: #fff;
  border: 1px #00C200 solid;
}

.tab_news-open {
  background-color: #00C200 !important;
  color: #fff !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_news-open:hover {
  background-color: #10ff10 !important;
}

.cc_news-reserved > a {
  background-color: #FFAE00;
  color: #fff;
  border: 1px #FFAE00 solid;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.cc_news-reserved > a:hover {
  color: #fff !important;
  background-color: #ffc64d;
}
.cc_news-reserved > div {
  background-color: #FFAE00;
  color: #fff;
  border: 1px #FFAE00 solid;
}

.tab_news-reserved {
  background-color: #FFAE00 !important;
  color: #fff !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tab_news-reserved:hover {
  background-color: #ffc64d !important;
}

/* -------------------------------------
NEWS
------------------------------------- */
.csc_news {
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.csc_news > .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.csc_news > .inner > .tab_wrap > .tab {
  border-bottom: 3px #0367B5 solid;
  padding-left: 0;
}
.csc_news > .inner > .tab_wrap > .tab > li {
  display: inline-block;
  margin-right: 2px;
}
.csc_news > .inner > .tab_wrap > .tab > li > span {
  display: block;
  border-radius: 5px 5px 0 0;
  text-decoration: none;
  padding: 7px 15px;
  line-height: 1;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
  color: #fff;
  background-color: #0367B5;
}
.csc_news > .inner > .tab_wrap > .tab > li > span:hover {
  background-color: #0a91fb;
}
.csc_news > .inner > .tab_wrap > .tab > li > span > i {
  display: inline-block;
  margin-right: 7px;
}
.csc_news > .inner > .tab_wrap .tab_box_common {
  padding: 10px 0;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line {
  display: table;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > div {
  display: table-cell;
  vertical-align: middle;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > .category {
  width: 10em;
  max-width: 10em !important;
  box-sizing: border-box;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > .category > a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 8px 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > .category:hover {
  background-color: #fff;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > .category:hover a {
  color: #E56782;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > .date {
  width: 9em;
  max-width: 9em;
  box-sizing: border-box;
  font-size: 14px;
  color: #999;
  padding-left: 20px;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > .text > a {
  color: #333;
  text-decoration: none;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .news_line > .text > a:hover {
  text-decoration: underline;
}
.csc_news > .inner > .tab_wrap .tab_box_common > .line {
  padding-top: 10px;
  border-bottom: 1px #ccc dotted;
  margin-bottom: 10px;
}
.csc_news > .inner > .tab_wrap .tab_box_2 {
  display: none;
}
.csc_news > .inner > .tab_wrap .tab_box_3 {
  display: none;
}
.csc_news > .inner > .tab_wrap .tab_box_4 {
  display: none;
}
.csc_news > .inner > .tab_wrap .tab_box_5 {
  display: none;
}
.csc_news > .inner > .tab_wrap .view_list {
  text-align: right;
}
.csc_news > .inner > .tab_wrap .view_list > a {
  display: inline-block;
  background-color: #0367B5;
  color: #fff;
  line-height: 1;
  padding: 5px 15px;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all .5s;
  transition: all .5s;
  border: 1px #0367B5 solid;
}
.csc_news > .inner > .tab_wrap .view_list > a:hover {
  background-color: #fff;
  color: #0367B5;
}
.csc_news > .inner > .tab_wrap .view_list > a > i {
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
}

/* -------------------------------------
  Single
------------------------------------- */
.news_single {
  padding-bottom: 20px;
}
.news_single > .section {
  border: 1px #ccc solid;
  padding: 20px;
  box-sizing: border-box;
  background-color: #ffe;
}
.news_single > .section > h2 {
  font-size: 1.5em;
  border-left: 5px #0367B5 solid;
  padding-left: 10px;
  margin-bottom: 1em;
  line-height: 1.3;
}
.news_single > .section > .news_category {
  display: table;
  margin-bottom: 1em;
}
.news_single > .section > .news_category > div {
  display: table-cell;
  vertical-align: middle;
}
.news_single > .section > .news_category > .date {
  display: inline-block;
  margin-right: 1em;
  font-size: 16px;
}
.news_single > .section > .news_category > .category {
  display: inline-block;
}
.news_single > .section > .news_category > .category > a,
.news_single > .section > .news_category > .category > div {
  display: block;
  padding: 5px 20px;
  color: #fff !important;
  text-decoration: none;
}

.new_prev_next {
  padding-top: 2em;
  overflow: hidden;
}
.new_prev_next .postPrevious {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-right: 2em;
}
.new_prev_next .postNext {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-left: 2em;
  border-left: 1px #ccc dotted;
}

/* -------------------------------------
  Page-Navi
------------------------------------- */
#page_navi_wrapper {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

#page_navi_wrapper_top {
  width: 100%;
  text-align: center;
}

.wp-pagenavi {
  margin: 0 auto;
  padding-top: 0.5em;
}

.wp-pagenavi > .pages {
  display: block;
  margin-bottom: 1em;
  color: #000;
  font-weight: bold;
}

.wp-pagenavi > .extend {
  border: none;
}

.wp-pagenavi a,
.current {
  font-size: 1.2em;
  margin: 0 0.2em !important;
  padding: 3px 6px;
  border: 1px solid #0367B5;
  color: #0367B5;
  background: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

.wp-pagenavi a:hover,
.current {
  color: #fff;
  background: #0367B5;
}

/* -------------------------------------
  subTitle
------------------------------------- */
.h1_subtitle {
  font-size: 0.7em;
}

@media screen and (min-width: 240px) and (max-width: 640px) {
  .tab_wrap > .tab {
    display: none;
  }

  .news_line {
    display: block !important;
  }
  .news_line > div {
    display: block !important;
  }
  .news_line > .category {
    width: 50% !important;
    float: left;
  }
  .news_line > .date {
    width: 50% !important;
    float: left;
    line-height: 30px;
  }
  .news_line > .text {
    clear: both;
    padding-top: 10px;
  }
}
