@charset "UTF-8";
/*font size*/
/* mixinCSS Document */
/*----------title----------*/
/*----------animation----------*/
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-2px, -3px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-4px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(0px, 3px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(2px, -2px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-2px, 3px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-4px, 2px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 2px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-2px, -2px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(2px, 4px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(2px, -3px) rotate(-1deg);
  }
}
@-moz-keyframes shake {
  0% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-2px, -3px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-4px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(0px, 3px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(2px, -2px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-2px, 3px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-4px, 2px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 2px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-2px, -2px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(2px, 4px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(2px, -3px) rotate(-1deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-2px, -3px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-4px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(0px, 3px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(2px, -2px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-2px, 3px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-4px, 2px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 2px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-2px, -2px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(2px, 4px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(2px, -3px) rotate(-1deg);
  }
}
/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.8.1
*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input, button, textarea, select {
  *font-size: 100%;
}

/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  /*font:12px/1.22 "MS PGothic","Osaka",Arial,sans-serif;*/
  /*font-size:12px;*/
  font: 13px/1.231 "MS PGothic",arial,helvetica,clean,sans-serif;
  /* for IE6/7 */
  *font-size: small;
  /* for IE Quirks Mode */
  *font: x-small;
}

/* for windows vista */
* + html body {
  font-family: "CI","Meiryo";
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea,
button {
  font: 99% arial,helvetica,clean,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

strong {
  font-weight: bold;
}

/* layoutCSS Document */
html, body {
  background-color: #fff;
}

body {
  min-width: 1000px;
}

/*----------wrapper----------*/
#wrapper {
  overflow: hidden;
  *zoom: 1;
}
#wrapper #contents {
  margin: 0 auto;
  width: 1000px;
  overflow: visible;
}
#wrapper #contents #nav {
  overflow: hidden;
  *zoom: 1;
  padding-left: 20px;
}
#wrapper #contents #nav li {
  padding-right: 5px;
  float: left;
}
#wrapper #contents #nav li:last-child {
  padding-right: 0px;
}
#wrapper #contents #pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

/*----------footer----------*/
/*----------is2nd----------*/
/*----------common----------*/
#contents #main {
  font-family: "メイリオ", Meiryo;
}
#contents #sub a {
  color: #006699;
  text-decoration: none;
}
#contents #sub a:hover {
  color: #000;
  text-decoration: none;
}
#contents #article a {
  color: #006699;
  text-decoration: none;
}
#contents #article a:hover {
  background-color: #ffff00;
  color: #000;
  text-decoration: none;
}

div#footer p.copy {
  color: #000;
  font: italic 93%/1em Arial, Helvetica, sans-serif;
}

/* partsCSS Document */
/*---------------
□□□layout□□□
---------------*/
#contents #main {
  /*btnOver*/
  /*pageLink*/
  /*pastResult*/
}
#contents #main a.btnOver img {
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#contents #main a.btnOver:hover {
  background-color: transparent;
}
#contents #main a.btnOver:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
#contents #main #pageLink {
  overflow: hidden;
  *zoom: 1;
}
#contents #main #pageLink li {
  padding: 5px 10px;
}
#contents #main #pageLink .backLink {
  float: left;
}
#contents #main #pageLink .nextLink {
  float: right;
}
#contents #main #pastResult {
  padding-bottom: 20px;
}
#contents #main #pastResult .btn {
  text-align: center;
  padding-bottom: 10px;
}
#contents #main #pastResult .list {
  margin: 0 auto;
  width: 300px;
  border: 3px solid #00acce;
}
#contents #main #pastResult .list li {
  padding: 5px 10px 5px 10px;
  border-bottom: 1px dotted #00acce;
}
#contents #main #pastResult .list li:last-child {
  border-bottom: none;
}
#contents #main #pastResult .list li a {
  display: block;
}

/*---------------
□□□font□□□
---------------*/
#contents #main {
  /*pageLink*/
  /*pastResult*/
}
#contents #main #pageLink li a {
  font-size: 153.9%;
  font-family: Impact, "Arial Black", Verdana;
  color: #000;
  text-decoration: none;
}
#contents #main #pageLink li a:hover {
  background-color: #ffff00;
}
#contents #main #pastResult .list li {
  font-size: 123.1%;
}
#contents #main #pastResult .list li a {
  color: #006699;
  text-decoration: none;
}
#contents #main #pastResult .list li a:hover {
  background-color: #ffff00;
  color: #000;
  text-decoration: none;
}

#wrapper #contents {
  width: 1000px;
}

/* #main */
#main {
  width: 675px;
  padding-bottom: 35px;
}

/* #side */
#side {
  padding: 10px 0px 0px;
}

#side .box {
  /* border-radius */
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

#wrapper #contents #side .box .title {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjhmOSIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZTVlYmVlIi8+PHN0b3Agb2Zmc2V0PSI1MSUiIHN0b3AtY29sb3I9IiNkYWUxZTUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZWYxZjQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f8f9), color-stop(50%, #e5ebee), color-stop(51%, #dae1e5), color-stop(100%, #eef1f4));
  background: -moz-linear-gradient(top, #f6f8f9 0%, #e5ebee 50%, #dae1e5 51%, #eef1f4 100%);
  background: -webkit-linear-gradient(top, #f6f8f9 0%, #e5ebee 50%, #dae1e5 51%, #eef1f4 100%);
  background: linear-gradient(to bottom, #f6f8f9 0%, #e5ebee 50%, #dae1e5 51%, #eef1f4 100%);
}

#wrapper #contents #side #oa .info a,
#wrapper #contents #side #blog .info a {
  background-color: rgba(153, 153, 153, 0.5);
  /* box-shadow */
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) inset;
}

#side div#banner_navimail {
  width: 100%;
  height: 105px;
}

#topad {
  padding-bottom: 5px;
}

/*----------btn-sbm----------*/
#btn-sbm {
  text-align: left;
  padding: 20px;
  overflow: hidden;
  *zoom: 1;
}

#btn-sbm li {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}

#btn-sbm .btnHatenaBookmark {
  margin-right: 10px;
}

#btn-sbm .btnGoogleCalendar {
  margin-right: 10px;
}

.global_NTV_snsArea .global_NTV_snsList {
  padding: 20px;
}

.global_NTV_snsArea .global_NTV_snsList li {
  margin-right: 15px;
  vertical-align: top;
  display: inline-block;
}

.global_NTV_snsArea .fb_iframe_widget,
.global_NTV_snsArea .fb_iframe_widget span {
  vertical-align: top;
}

/* topCSS Document */
/*---------------
□□□layout□□□
---------------*/
body.isTop {
  background: #000 url(../images/top/bg.jpg) fixed center 0px;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
body.isTop #wrapper {
  background: url(../images/top/bg_dot.gif) repeat left top;
}
body.isTop #wrapper #wrapperInner {
  background: url(../images/top/main.jpg) repeat-x center 0px;
}
body.isTop #wrapper #contents {
  overflow: hidden;
  *zoom: 1;
}
body.isTop #main #header {
  height: 432px;
}
body.isTop #main #header .h1_tit {
  padding: 10px;
  text-align: right;
}
body.isTop #main #header .h1_tit img {
  width: 250px;
}
body.isTop #main #header .oadate {
  position: absolute;
  top: -999px;
  left: -999px;
}
body.isTop #main #banners {
  margin: 0px auto;
  padding: 10px 0px 10px;
  width: 635px;
}
body.isTop #main #banners ul {
  overflow: hidden;
  *zoom: 1;
}
body.isTop #main #banners ul li {
  padding-bottom: 10px;
}
body.isTop #main #banners ul li.center {
  text-align: center;
}
body.isTop #main #banners ul li.left {
  float: left;
}
body.isTop #main #banners ul li.right {
  float: right;
}
body.isTop #main #banners .close {
  padding: 5px;
  text-align: center;
}
body.isTop #main .topBox {
  margin: 0px auto;
  padding: 30px 0px 30px;
  width: 635px;
}
body.isTop #main .topBox .h3_tit {
  padding-bottom: 5px;
}
body.isTop #main .topBox .entry {
  background: #00acce url(../images/common/bg_slash.png) repeat 0px 0px;
  padding: 15px;
}
body.isTop #main .topBox .entry .block {
  background-color: #fff;
  padding: 15px;
  overflow: hidden;
  *zoom: 1;
}
body.isTop #main #nextoa .h3_oadate {
  border-bottom: 3px solid #000;
}
body.isTop #main #nextoa .h3_oadate .year {
  display: block;
}
body.isTop #main #nextoa .h3_oadate .onair {
  margin-left: 10px;
}
body.isTop #main #nextoa .title {
  padding: 10px 0px;
}
body.isTop #main #nextoa p {
  padding: 10px 0px;
}
body.isTop #main #nextoa p img:nth-child(odd) {
  margin-right: 20px;
}
body.isTop #main #nextoa p img {
  margin-bottom: 10px;
}
body.isTop #main #onair .btn_oa {
  width: 632px;
}
body.isTop #main #onair .btn_oa a {
  background: #00acce url(../images/common/bg_blue.gif) repeat 0px 0px;
  display: block;
  -moz-box-shadow: 3px 3px 0 0 #0090b1;
  -webkit-box-shadow: 3px 3px 0 0 #0090b1;
  box-shadow: 3px 3px 0 0 #0090b1;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
body.isTop #main #onair .btn_oa a .inner {
  background: url(../images/top/icon_oa.gif) no-repeat 20px center;
  padding: 15px 15px 15px 80px;
  display: block;
}
body.isTop #main #onair .btn_oa a .inner .oadate {
  padding-left: 10px;
  display: block;
}
body.isTop #main #onair .btn_oa a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
body.isTop #main #twitter {
  position: relative;
}
body.isTop #main #twitter .btn_follow {
  position: absolute;
  top: 20px;
  left: 245px;
}
body.isTop #main #twitter .btn_follow a {
  display: block;
}
body.isTop #main #twitter .btn_follow a:hover {
  animation: shake 0.2s linear infinite;
  -webkit-animation: shake 0.2s linear infinite;
}
body.isTop #main #twitter #twitterTimeline {
  margin: 0 auto;
  width: 520px;
}
body.isTop #main #aside .btns {
  overflow: hidden;
  *zoom: 1;
  width: 100%;
}
body.isTop #main #aside .btns .btn_data {
  float: left;
}
body.isTop #main #aside .btns .btn_mobile {
  float: right;
}
body.isTop #main #megane .entry {
  background: #57dd00 url(../images/common/bg_slash.png) repeat 0px 0px;
}
body.isTop #main #megane .entry p {
  padding: 10px 0px;
}
body.isTop #main #megane .entry p img:nth-child(odd) {
  margin-right: 20px;
}
body.isTop #main #megane .entry p img {
  margin-bottom: 10px;
}
body.isTop #main .btn_more {
  padding-top: 20px;
  text-align: center;
}

/*---------------
□□□font□□□
---------------*/
body.isTop #banners .close {
  font-size: 24px;
  font-weight: bold;
  color: #f00;
}
body.isTop #nextoa .h3_oadate .year {
  font-size: 24px;
  font-family: Impact, "Arial Black", Verdana;
}
body.isTop #nextoa .h3_oadate .date {
  font-size: 48px;
  font-family: Impact, "Arial Black", Verdana;
}
body.isTop #nextoa .h3_oadate .onair {
  font-size: 36px;
  font-family: Impact, "Arial Black", Verdana;
}
body.isTop #nextoa .title {
  font-size: 182%;
  line-height: 1.4em;
}
body.isTop #nextoa p {
  font-size: 108%;
  line-height: 1.6em;
}
body.isTop #onair .btn_oa a {
  font-size: 182%;
  color: #fff;
  line-height: 1.4em;
  text-decoration: none;
}
body.isTop #onair .btn_oa a .oadate {
  font-family: Impact, "Arial Black", Verdana;
}
body.isTop #megane .entry p {
  font-size: 108%;
  line-height: 1.6em;
}
body.isTop #megane .entry p.intro {
  font-size: 123.1%;
}
body.isTop #megane .entry p.adress {
  font-size: 123.1%;
  font-weight: bold;
}
body.isTop #megane .entry strong {
  background-color: #ff0;
  font-weight: bold;
}

/* pageCSS Document */
/*---------------
□□□layout□□□
---------------*/
/*---------------
□□□font□□□
---------------*/
/* isBlogCSS Document */
/*---------------
□□□layout□□□
---------------*/
body.isBlog #main #header {
  position: relative;
}
body.isBlog #main #header .h1_tit {
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 211px;
  height: 115px;
}
body.isBlog #main #header .oadate {
  background-color: #00acce;
  padding: 3px 6px;
  text-align: right;
  border-bottom: 12px solid #ffff00;
}
body.isBlog #main #header .oadate img {
  width: 460px;
}
body.isBlog #main #header .inner {
  background: #00acce url(../images/common/bg_slash.png) repeat 0px 0px;
  padding: 12px;
  border: 6px solid #00acce;
  border-bottom: none;
}
body.isBlog #main #header #gochiInfo {
  background-color: #fff;
  overflow: hidden;
  *zoom: 1;
}
body.isBlog #main #header #gochiInfo .leftBox {
  padding: 10px 0px 10px 20px;
  width: 245px;
  float: left;
}
body.isBlog #main #header #gochiInfo .rightBox {
  padding: 10px 20px 10px 0px;
  width: 330px;
  float: right;
}
body.isBlog #main #header #gochiInfo .box {
  border: 3px solid #00acce;
}
body.isBlog #main #header #gochiInfo .h2_tit {
  padding-bottom: 10px;
  text-align: center;
}
body.isBlog #main #header #gochiInfo .h3_regularpay {
  background-color: #00acce;
  padding-bottom: 3px;
  text-align: center;
}
body.isBlog #main #header #gochiInfo .regularPay .price {
  padding: 3px;
  text-align: center;
  border-bottom: 2px dotted #00acce;
}
body.isBlog #main #header #gochiInfo .regularPay .list {
  padding: 10px 0px 20px;
}
body.isBlog #main #header #gochiInfo .regularPay .list li {
  padding: 2px 10px;
}
body.isBlog #main #header #gochiInfo .h3_guestpay {
  padding-bottom: 10px;
  text-align: center;
}
body.isBlog #main #header #gochiInfo .guestPay {
  position: relative;
}
body.isBlog #main #header #gochiInfo .guestPay .price {
  background: url(../images/common/line_price.gif) no-repeat center bottom;
  position: relative;
}
body.isBlog #main #header #gochiInfo .guestPay .price .num {
  padding: 44px 10px 44px 10px;
  text-align: center;
  display: block;
}
body.isBlog #main #header #gochiInfo .guestPay .price .yen {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: right;
}
body.isBlog #main #header #gochiInfo .guestPay .btn_vs {
  padding: 35px 0px 10px;
  text-align: center;
}
body.isBlog #main #header #gochiInfo .guestPay .btn_more {
  position: absolute;
  top: -18px;
  right: -18px;
}
body.isBlog #main #header #gochiInfo .guestPay .btn_more a {
  display: block;
}
body.isBlog #main #header #gochiInfo .guestPay .btn_more a:hover {
  animation: shake 0.2s linear infinite;
  -webkit-animation: shake 0.2s linear infinite;
}
body.isBlog #main #content {
  padding-top: 25px;
}
body.isBlog #main #content #sub {
  width: 180px;
  float: left;
}
body.isBlog #main #content #sub .box {
  padding-bottom: 20px;
}
body.isBlog #main #content #sub .box .h3_tit {
  padding: 10px 5px 5px 5px;
  border-bottom: 3px solid #ffff00;
  display: block;
  font-size: 182%;
  font-family: Impact, "Arial Black", Verdana;
  color: #000;
}
body.isBlog #main #content #sub .box .btns {
  padding: 10px 0px;
}
body.isBlog #main #content #sub .box .btns li {
  padding-bottom: 5px;
}
body.isBlog #main #content #sub #calendar a:hover {
  background-color: #ffff00;
}
body.isBlog #main #content #sub #calendar .calenderLink {
  margin: 0 auto;
  padding: 10px 0px;
  width: 180px;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  *zoom: 1;
}
body.isBlog #main #content #sub #calendar .calenderLink div {
  text-align: center;
}
body.isBlog #main #content #sub #calendar .calenderLink div.prev {
  width: 15%;
  float: left;
}
body.isBlog #main #content #sub #calendar .calenderLink div.next {
  width: 15%;
  float: right;
}
body.isBlog #main #content #sub #calendar .calenderLink div.month {
  width: 70%;
  float: left;
}
body.isBlog #main #content #sub #calendar .cal {
  margin: 0 auto;
}
body.isBlog #main #content #sub #calendar .cal th {
  padding: 5px 0px;
  width: 26px;
  text-align: center;
}
body.isBlog #main #content #sub #calendar .cal td {
  padding: 5px 0px;
  text-align: center;
}
body.isBlog #main #content #backnumber .list {
  padding-top: 10px;
}
body.isBlog #main #content #backnumber .list li {
  padding: 5px;
  border-bottom: 1px dotted #ccc;
}
body.isBlog #main #content #backnumber .list li .oadate {
  display: block;
}
body.isBlog #main #content #backnumber .list li a:hover {
  background-color: #ffff00;
}
body.isBlog #main #content #article {
  width: 470px;
  float: right;
}
body.isBlog #main #content #article .h2_oa {
  padding: 10px 0px;
}
body.isBlog #main #content #article .entry .h3_oadate {
  border-bottom: 3px solid #000;
}
body.isBlog #main #content #article .entry .h3_oadate .year {
  display: block;
}
body.isBlog #main #content #article .entry .h3_oadate .onair {
  margin-left: 10px;
}
body.isBlog #main #content #article .entry .title {
  padding: 10px 0px;
}
body.isBlog #main #content #article .entry .block p {
  padding: 10px 0px;
}
body.isBlog #main #content #article .entry .block p img:nth-child(odd) {
  margin-right: 10px;
}
body.isBlog #main #content #article .entry .block p img {
  margin-bottom: 10px;
}
body.isBlog #main #content #article .entry .resultBlock {
  padding-bottom: 20px;
}
body.isBlog #main #content #article .entry .resultBlock .inner {
  border: 3px solid #000;
}
body.isBlog #main #content #article .entry .resultBlock .result {
  width: 100%;
}
body.isBlog #main #content #article .entry .resultBlock .result tr:last-child th, body.isBlog #main #content #article .entry .resultBlock .result tr:last-child td {
  border-bottom: none;
}
body.isBlog #main #content #article .entry .resultBlock .result th {
  background-color: #000;
  padding: 5px;
  width: 20%;
  border-bottom: 1px solid #fff;
}
body.isBlog #main #content #article .entry .resultBlock .result td {
  background-color: #fff;
  padding: 5px;
  width: 30%;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
body.isBlog #main #content #article .entry .resultBlock .result td:last-child {
  border-right: none;
}
body.isBlog #main #content #article .entry .resultBlock .rank {
  border-top: 3px solid #000;
}
body.isBlog #main #content #article .entry .resultBlock .rank li {
  padding: 5px 5px 5px 33px;
  min-height: 10px;
}
body.isBlog #main #content #article .entry .resultBlock .rank li:nth-child(odd) {
  background-color: #f2f2f2;
}
body.isBlog #main #content #article .entry .resultBlock .rank li.pitari {
  background-image: url(../images/common/icon_p.png);
  background-position: 5px center;
  background-repeat: no-repeat;
}
body.isBlog #main #content #article .entry .resultBlock .rank li.nearpin {
  background-image: url(../images/common/icon_n.png);
  background-position: 5px center;
  background-repeat: no-repeat;
}
body.isBlog #main #content #article #regularpayList {
  padding-bottom: 20px;
}
body.isBlog #main #content #article #regularpayList .inner {
  border: 3px solid #00acce;
}
body.isBlog #main #content #article #regularpayList .price {
  width: 100%;
}
body.isBlog #main #content #article #regularpayList .price tr:last-child th, body.isBlog #main #content #article #regularpayList .price tr:last-child td {
  border-bottom: none;
}
body.isBlog #main #content #article #regularpayList .price th {
  background-color: #00acce;
  padding: 5px;
  width: 50%;
  border-bottom: 1px solid #fff;
}
body.isBlog #main #content #article #regularpayList .price td {
  background-color: #fff;
  padding: 5px;
  width: 50%;
  border-right: 1px solid #00acce;
  border-bottom: 1px solid #00acce;
}
body.isBlog #main #content #article #regularpayList .price td:last-child {
  border-right: none;
}
body.isBlog #main #content #article #regularpayList .list {
  border-top: 3px solid #00acce;
}
body.isBlog #main #content #article #regularpayList .list li {
  padding: 5px 10px 5px 10px;
}
body.isBlog #main #content #article #regularpayList .list li:nth-child(odd) {
  background-color: #e6f1f3;
}

/*---------------
□□□font□□□
---------------*/
body.isBlog #main #gochiInfo .regularPay {
  color: #00acce;
}
body.isBlog #main #gochiInfo .regularPay .price .num {
  font-size: 197%;
  font-family: Impact, "Arial Black", Verdana;
}
body.isBlog #main #gochiInfo .regularPay .price .yen {
  font-size: 108%;
}
body.isBlog #main #gochiInfo .regularPay .list li {
  font-size: 108%;
}
body.isBlog #main #gochiInfo .guestPay {
  color: #00acce;
}
body.isBlog #main #gochiInfo .guestPay .price .num {
  font-size: 58px;
  font-family: Impact, "Arial Black", Verdana;
}
body.isBlog #main #gochiInfo .guestPay .price .yen {
  font-size: 24px;
  font-weight: bold;
}
body.isBlog #main #content #sub #calendar .calenderLink div {
  font-size: 108%;
}
body.isBlog #main #content #sub #calendar .calenderLink div.month {
  font-weight: bold;
}
body.isBlog #main #content #sub #calendar .cal th {
  font-size: 108%;
  font-weight: bold;
}
body.isBlog #main #content #sub #calendar .cal td {
  font-size: 108%;
}
body.isBlog #main #content #sub #backnumber .list li {
  font-size: 108%;
  line-height: 1.4em;
}
body.isBlog #main #content #sub #backnumber .list li .oadate {
  font-family: Impact, "Arial Black", Verdana;
}
body.isBlog #main #content #article .entry .h3_oadate .year {
  font-size: 24px;
  font-family: Impact, "Arial Black", Verdana;
}
body.isBlog #main #content #article .entry .h3_oadate .date {
  font-size: 48px;
  font-family: Impact, "Arial Black", Verdana;
}
body.isBlog #main #content #article .entry .h3_oadate .onair {
  font-size: 36px;
  font-family: Impact, "Arial Black", Verdana;
}
body.isBlog #main #content #article .entry .title {
  font-size: 182%;
  line-height: 1.4em;
}
body.isBlog #main #content #article .entry .block p {
  font-size: 108%;
  line-height: 1.6em;
}
body.isBlog #main #content #article .entry .resultBlock .result th {
  font-size: 108%;
  font-weight: bold;
  color: #fff;
}
body.isBlog #main #content #article .entry .resultBlock .result td {
  font-size: 108%;
}
body.isBlog #main #content #article .entry .resultBlock .rank li {
  font-size: 108%;
}
body.isBlog #main #content #article #regularpayList .price th {
  font-size: 123.1%;
  font-weight: bold;
  color: #fff;
}
body.isBlog #main #content #article #regularpayList .price td {
  font-size: 123.1%;
  font-weight: bold;
  color: #00acce;
}
body.isBlog #main #content #article #regularpayList .list li {
  font-size: 123.1%;
}

/* isBlogCSS Document */
/*---------------
□□□layout□□□
---------------*/
body.is2nd #main #header {
  padding: 20px 5px 5px;
  border-bottom: 6px solid #ffff00;
  overflow: hidden;
  *zoom: 1;
}
body.is2nd #main #header .h1_tit {
  float: left;
  width: 120px;
}
body.is2nd #main #header .h1_tit img {
  width: 120px;
}
body.is2nd #main #header .h2_tit {
  width: 540px;
  text-align: center;
  float: right;
}
body.is2nd #main #resultContent {
  padding: 10px 0px;
}
body.is2nd #main #resultContent .list li {
  border-bottom: 1px dotted #000;
}
body.is2nd #main #resultContent .list li span {
  display: block;
}
body.is2nd #main #resultContent .list li .round {
  padding: 10px 10px 10px 80px;
}
body.is2nd #main #resultContent .list li .guest {
  padding: 5px 10px 5px 80px;
}
body.is2nd #main #resultContent .list li .oadate {
  padding: 10px 10px 10px 80px;
}
body.is2nd #main #resultContent .list li a {
  background: url(../oa/gochi/images/icon_vs.png) no-repeat 10px center;
  display: block;
}
body.is2nd #main #resultContent .list li a:hover {
  background-color: #ffff00;
}
body.is2nd #main #oalistContent {
  padding: 10px 0px;
}
body.is2nd #main #oalistContent .list li {
  border-bottom: 1px dotted #000;
}
body.is2nd #main #oalistContent .list li span {
  display: block;
}
body.is2nd #main #oalistContent .list li .title {
  padding: 5px 10px 5px 80px;
}
body.is2nd #main #oalistContent .list li .oadate {
  padding: 5px 10px 10px 80px;
}
body.is2nd #main #oalistContent .list li a {
  background: url(../images/common/icon_arrow.png) no-repeat 10px center;
  display: block;
}
body.is2nd #main #oalistContent .list li a:hover {
  background-color: #ffff00;
}
body.is2nd #main .btns {
  padding: 20px 0px;
}
body.is2nd #main .btns li {
  padding: 5px;
  text-align: center;
}

/*---------------
□□□font□□□
---------------*/
body.is2nd #main #resultContent .list li {
  font-size: 123.1%;
}
body.is2nd #main #resultContent .list li .round {
  font-size: 123.1%;
}
body.is2nd #main #resultContent .list li .guest {
  font-size: 182%;
  line-height: 1.4em;
  font-weight: bold;
}
body.is2nd #main #resultContent .list li .oadate {
  font-size: 123.1%;
  font-family: Impact, "Arial Black", Verdana;
}
body.is2nd #main #resultContent .list li a {
  color: #000;
  text-decoration: none;
}
body.is2nd #main #oalistContent .list li {
  font-size: 123.1%;
}
body.is2nd #main #oalistContent .list li .title {
  font-size: 153.9%;
  line-height: 1.4em;
  font-weight: bold;
}
body.is2nd #main #oalistContent .list li .oadate {
  font-size: 123.1%;
  font-family: Impact, "Arial Black", Verdana;
}
body.is2nd #main #oalistContent .list li a {
  color: #000;
  text-decoration: none;
}

/* dataCSS Document */
/*---------------
□□□layout□□□
---------------*/
#data #dataContent .h3_tit {
  padding: 20px 0px;
  text-align: center;
}
#data #dataContent .intro {
  margin-bottom: 20px;
  padding: 20px 10px;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
#data #dataContent .intro2 {
  margin-bottom: 20px;
  padding: 20px 10px;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
#data #dataContent .intro2 p {
  padding-bottom: 10px;
  text-align: center;
}
#data #dataContent .intro2 .banner {
  padding-bottom: 20px;
  width: 100%;
}
#data #dataContent .intro2 .banner li {
  width: 320px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
#data #dataContent .intro2 .banner li.large {
  width: 100%;
}
#data #dataContent .intro2 .note li {
  padding-bottom: 5px;
  text-align: center;
}
#data #dataContent .h4_tit {
  background-color: #e84c3d;
  padding: 15px 20px;
}
#data #dataContent .box {
  margin-bottom: 20px;
  border: 1px solid #e84c3d;
}
#data #dataContent .box img.dataimg {
  margin: 10px 0 20px;
}
#data #dataContent .box ol.list {
  padding: 20px;
  margin-left: 2em;
}
#data #dataContent .box ol.list > li {
  padding-bottom: 5px;
  list-style: decimal;
}
#data #dataContent .box ol.list > li.stg {
  color: #f00;
}
#data #dataContent .box ol.list > li h5 {
  padding: 15px 10px 0px;
}
#data #dataContent .box ol.list > li ul {
  margin-left: 1.5em;
  padding: 10px;
}
#data #dataContent .box ol.list > li ul li {
  padding-bottom: 5px;
  list-style: disc;
}
#data #dataContent .box ul.list {
  padding: 20px;
  margin-left: 2em;
}
#data #dataContent .box ul.list > li {
  padding-bottom: 5px;
  list-style: disc;
}
#data #dataContent .box ul.list > li.stg {
  color: #f00;
}
#data #dataContent .box .thum p {
  padding: 10px;
  text-align: center;
}
#data #dataContent .box .send {
  background-color: #fadbd9;
  margin: 0px 20px 20px;
  padding: 20px;
}
#data #dataContent .box .send .h5_tit {
  padding: 5px;
}
#data #dataContent .box .send p {
  padding: 10px;
}
#data #dataContent .box .send ul {
  margin-left: 1.8em;
}
#data #dataContent .box .send ul > li {
  padding-bottom: 5px;
  list-style: circle;
}
#data #dataContent .box .precaution {
  background-color: #efefef;
  margin: 0px 20px 20px;
  padding: 20px;
}
#data #dataContent .box .precaution h5 {
  padding: 5px;
}
#data #dataContent .box .precaution ul {
  margin-left: 1.8em;
}
#data #dataContent .box .precaution ul > li {
  padding-bottom: 5px;
  list-style: circle;
}
#data #dataContent #howto ol.list > li {
  padding-bottom: 1.5em;
}
#data #dataContent .charin .bnr {
  padding: 5px 0 0;
  text-align: center;
}
#data #dataContent .charin .get {
  padding: 20px 20px 0;
}
#data #dataContent .enjoy {
  padding: 10px;
  text-align: center;
}

/*---------------
□□□font□□□
---------------*/
#data #dataContent .intro {
  font-size: 123.1%;
  line-height: 1.6em;
  font-weight: bold;
}
#data #dataContent .h4_tit {
  font-size: 153.9%;
  font-weight: bold;
  color: #fff;
}
#data #dataContent .intro2 p {
  font-size: 123.1%;
  line-height: 1.6em;
  font-weight: bold;
}
#data #dataContent .intro2 .note li {
  font-size: 123.1%;
  line-height: 1.6em;
}
#data #dataContent .intro2 .note li strong {
  font-weight: bold;
  color: #e84c3d;
}
#data #dataContent .box .list h5 {
  font-size: 138.5%;
  font-weight: bold;
  color: #e84c3d;
}
#data #dataContent .box .list > li {
  font-size: 123.1%;
  line-height: 1.6em;
}
#data #dataContent .send .h5_tit {
  font-size: 138.5%;
  font-weight: bold;
}
#data #dataContent .send p {
  font-size: 123.1%;
  line-height: 1.6em;
}
#data #dataContent .send li {
  font-size: 123.1%;
  line-height: 1.6em;
}
#data #dataContent .precaution h5 {
  font-size: 138.5%;
  font-weight: bold;
}
#data #dataContent .precaution li {
  font-size: 123.1%;
  line-height: 1.6em;
}
#data #dataContent .charin .get {
  font-size: 123.1%;
  font-weight: bold;
  color: #e84c3d;
}
