@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.cnt {
  width: auto;
}

/* ========================================================= */
/* フォントカラー */
/* ========================================================= */
.red {
  color: red;
}

.blue {
  color: #026bbf;
}

.orange {
  color: #ff8220;
}

/* ========================================================= */
/* フォントタイプ */
/* ========================================================= */
.f_g1 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.f_g1_p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
}

.f_g2 {
  font-family: "メイリオ", Meiryo, sans-serif;
}

.f_arb {
  font-family: "Arial Black", Gadget, sans-serif;
}

/* ========================================================= */
/* 装飾 */
/* ========================================================= */
.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.imgborder {
  border: 1px solid #b4b4b4;
}

.imgborder_dash {
  border: 1px dashed #999;
}

.imgshadow {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.photoframe {
  margin: 2px;
  border: 10px solid #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
}

.underborder {
  border-bottom: 1px solid #ccc;
}

.under_border_da {
  border-bottom: 1px dashed #ccc;
}

.noborder,
article .norborder {
  border: none;
}

/* ========================================================= */
/* 表示 */
/* ========================================================= */
.nodisp {
  text-indent: -9999px;
}

.disp_none {
  display: none;
}

/* ========================================================= */
/* レイアウト調整 */
/* ========================================================= */
.al_right {
  text-align: right;
}

.al_left {
  text-align: left;
}

.al_center {
  text-align: center;
}

.mauto,
article .mauto {
  margin-left: auto;
  margin-right: auto;
}

.dis-b {
  display: block;
}

.dis-ib {
  display: inline-block;
}

.pos-rl {
  position: relative;
}

.pos-fix {
  position: fixed;
  z-index: 500;
}

.of {
  overflow: hidden;
}

.br-pc,
.dn-pc {
  display: block;
}

.br-sp,
.dn-sp {
  display: none;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* ========================================================= */
/* Width調整 */
/* ========================================================= */
.w5 {
  width: 5%;
}

.w6 {
  width: 6%;
}

.w8 {
  width: 8%;
}

.w10 {
  width: 10%;
}

.w12 {
  width: 12%;
}

.w15 {
  width: 15%;
}

.w18 {
  width: 18%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w33 {
  width: 33.3%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w48 {
  width: 48%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.scrollbox {
  position: relative;
  width: 100%;
  overflow: auto;
  scrollbar-base-color: #fff;
  scrollbar-3dlight-color: #ffffff;
  scrollbar-arrow-color: #ffffff;
  scrollbar-darkshadow-color: #ffffff;
  scrollbar-face-color: #f1f1f1;
  scrollbar-highlight-color: #f1f1f1;
  scrollbar-shadow-color: #f1f1f1;
  scrollbar-track-color: #ffffff;
}

/*スクロールバー全体*/
.scrollbox::-webkit-scrollbar {
  width: 10px;
}

/*横スクロールバー全体*/
.scrollbox::-webkit-scrollbar:horizontal {
  height: 10px;
}

/*スクロールバー上下左右末端のボタン*/
.scrollbox::-webkit-scrollbar-button {
  width: 10px;
  height: 10px;
}

/*ドラッグするツマミ部分*/
.scrollbox::-webkit-scrollbar-thumb {
  background: #f1f1f1;
}

/*右下角部分*/
.scrollbox::-webkit-scrollbar-corner {
  background-color: transparent;
}

html {
  font-size: 62.5%;
}

body {
  text-align: center;
  color: #5A5959;
  font-family: "メイリオ","Hiragino Kaku Gothic Pro","Osaka",sans-serif;
  font-size: 1.2rem;
  background-color: white;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

p,
li,
dt,
dd,
table,
th,
td {
  line-height: 1.6;
}

img {
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: bottom;
}

a {
  color: #026bbf;
}
a:visited {
  color: #026bbf;
}
a.noborder {
  text-decoration: none;
}
a.noborder:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10);
  opacity: 0.1;
}

a:hover,
a:hover img,
input[type="submit"]:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.w_list {
  display: inline-block;
  padding: .15em .3em;
  background-color: red;
  color: white;
  font-size: 11px;
}

.sche_tb {
  width: 555px;
  margin-bottom: 10px;
  border-collapse: collapse;
}
.sche_tb th, .sche_tb td {
  padding: .25em;
  border: 1px solid #ccc;
  text-align: left;
}
.sche_tb th {
  background-color: #33a0c5;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 1.3rem;
}
.sche_tb td {
  padding: 5px 8px;
}
.sche_tb td:nth-of-type(1) {
  width: 126px;
  background-color: #e4f4f9;
  font-weight: bold;
}

.ros_sche {
  width: 555px;
  margin-top: 10px;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.ros_sche .lb {
  padding: 0 15px;
  font-size: 1.4rem;
  font-weight: bold;
}
.ros_sche dl {
  display: table;
}
.ros_sche dl dt, .ros_sche dl dd {
  display: table-cell;
  padding: 0 0 0 15px;
}
.ros_sche .place {
  width: 120px;
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}
.ros_sche .place a {
  color: #d45f00;
}
.ros_sche .moshikomi {
  float: right;
  margin-right: 15px;
}
