@charset "UTF-8";
/*+色・サイズ
-------------------------------------------------------------*/
/*+リセット・基本
-------------------------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  font-size: 95%;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 599px) {
  html {
    font-size: 80%;
  }
}

body, h1, h2, h3, p, ul, li, ol, address, pre {
  color: #333;
  /*文字色*/
  font-family: Verdana, Roboto,'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  -webkit-text-size-adjust: 100%;
  /*iPhoneのフォント拡大化対策*/
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  background-color: #333;
  /*ボディ背景、基本は白*/
  background-image: url("../images/back.jpg");
  background-attachment: fixed;
}

#container {
  max-width: 960px;
  margin: 0 auto;
  /*全体をセンタリング*/
}
@media screen and (max-width: 599px) {
  #container {
    width: 100%;
    box-sizing: border-box;
  }
}

nav {
  clear: both;
}

/*+ヘッダ 
-------------------------------------------------------------*/
header {
  width: 100%;
  box-sizing: border-box;
}
header img {
  vertical-align: middle;
}

/*++ナビゲーション 
-------------------------------------------------------------*/
/*+++スマホ、PC共通 
-------------------------------------------------------------*/
header nav ul {
  width: 100%;
}
header nav ul li a#home {
  background-color: #444;
}
header nav li.hav_child > span,
header nav li a {
  display: block;
  background-color: #444;
  color: #fff;
  font-weight: bold;
}
header nav li.hav_child > span:active,
header nav li a:active {
  background-color: #444444 !important;
}

.home header nav ul li a#home {
  background-color: #e70012;
}

/*+++スマホ・タブレット
-------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  header nav p {
    text-align: center;
    padding: 1.5rem;
    background-color: #444;
    color: #fff;
    border-bottom: solid 1px #000;
  }
  header nav ul {
    display: none;
  }
  header nav ul li > span,
  header nav ul li a {
    border-top: solid 1px #666;
    border-bottom: solid 1px #000;
    padding: 1rem 2rem;
  }
  header nav ul li > span:hover, header nav ul li > span.active,
  header nav ul li a:hover,
  header nav ul li a.active {
    background-color: #e70012;
  }
  header nav ul li li a {
    padding-left: 4rem;
  }
  header nav ul li > span {
    padding-left: .8rem;
  }
  header nav ul span span:before {
    content: "≫ ";
  }
}
/*+++PC
-------------------------------------------------------------*/
@media screen and (min-width: 960px) {
  header nav {
    margin-bottom: 0;
  }
  header nav p {
    display: none;
  }
  header nav ul {
    height: 3.4rem;
  }
  header nav ul li a#home:hover {
    background-color: #e70012;
  }
  header nav ul li {
    position: relative;
    float: left;
    width: 33.3333333%;
    box-sizing: border-box;
    text-align: center;
    border-right: solid 1px #000;
    border-left: solid 1px #777;
  }
  header nav ul li:first-child {
    border-left: none;
  }
  header nav ul li:last-child {
    border-right: none;
  }
  header nav ul li a, header nav ul li > span {
    padding: 1.2rem 0 1.2rem;
    font-size: 1rem;
    line-height: 1;
  }
  header nav ul li:hover > a, header nav ul li:hover > span, header nav ul a.active {
    background-color: #e70012;
  }
  header nav ul li:hover > span {
    cursor: pointer;
  }
  header nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    display: none;
  }
  header nav ul li ul li {
    width: 100%;
    height: 3.4rem;
    box-sizing: border-box;
    transition: .2s;
  }
  header nav ul li ul li a {
    text-align: left;
    font-weight: normal;
    font-size: 1rem;
    padding: 1.2rem 1rem 1.2rem;
  }
}
/*++説明文
-------------------------------------------------------------*/
p#desc {
  font-size: .85rem;
  /*フォントサイズ*/
  text-align: center;
  padding: .7rem 1rem;
  /*余白*/
  margin-top: 0;
  /*上マージン除く*/
  background-color: #ede8d5;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  p#desc {
    display: none;
  }
}

/*++ぱんくずリスト 
-------------------------------------------------------------*/
nav.breadcrumbs {
  font-size: 0.8rem;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  background-color: #e70012;
  color: #fff;
  line-height: 1.2;
}
nav.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
nav.breadcrumbs a:hover {
  text-decoration: underline;
}

/*+レイアウト
-------------------------------------------------------------*/
#main {
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

@media screen and (max-width: 975px) {
  .main h1 img.half {
    width: 50%;
  }
}
/*+コンテンツ 
-------------------------------------------------------------*/
article {
  width: 100%;
  max-width: 600px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
}

.home article {
  margin-top: 1rem;
  width: 920px;
  max-width: 920px;
}
@media screen and (max-width: 779px) {
  .home article {
    max-width: 100%;
    width: 100%;
  }
}

article {
  float: none;
  margin: auto;
}

article .left {
  float: left;
  margin-left: 10px;
}
article .left a {
  padding: 0;
  margin: 0;
  display: inline;
}
article .left img {
  margin: 0;
  padding: 0;
  margin-bottom: .5rem;
}

article .right {
  float: right;
  width: 410px;
}

@media screen and (max-width: 960px) {
  article div.left, article div.right {
    float: none;
    width: 96%;
    padding: 0;
    margin: auto;
  }
  article div.left img, article div.right img {
    width: 100%;
  }
}
article {
  /*++目次と日付
  -------------------------------------------------------------*/
  /*++見出し
  -------------------------------------------------------------*/
  /*+++見出し1
  -------------------------------------------------------------*/
  /*+++見出し2
  -------------------------------------------------------------*/
  /*+++見出し3
  -------------------------------------------------------------*/
  /*++本文
  -------------------------------------------------------------*/
  /*++リスト
  -------------------------------------------------------------*/
  /*++Quicktag
  -------------------------------------------------------------*/
  /*++フロート・配置
  -------------------------------------------------------------*/
  /*++強調・文字の大きさ 
  -------------------------------------------------------------*/
  /*++イメージ 
  -------------------------------------------------------------*/
  /*++コラム ・引用
  -------------------------------------------------------------*/
  /*++リンク 
  -------------------------------------------------------------*/
  /*++テーブル 
  -------------------------------------------------------------*/
  /*++マップ
  -------------------------------------------------------------*/
  /*++フォーム 
  -------------------------------------------------------------*/
}
article #index-of-contents {
  margin: 0 1rem;
  clear: both;
  border-radius: 4px;
  border: solid 1px #ccc;
  padding: 0;
}
article #index-of-contents div {
  background-color: #fff;
  padding: .5rem;
  padding-left: 1rem;
  border-radius: 4px 4px 0 0;
  border-bottom: dotted 1px #ccc;
  width: 100%;
  box-sizing: border-box;
}
article #index-of-contents ol {
  padding-left: 1rem;
}
article #index-of-contents ol li {
  list-style-type: square;
  margin-left: 2rem;
  font-size: 1rem;
  margin-bottom: .75rem;
}
article h1 {
  padding: 0 1rem;
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 599px) {
  article h1 {
    font-size: 1.3rem;
    font-weight: bold;
  }
}
article h2 {
  /*background-color:$primary-color;*/
  border-top: solid 1px #e70012;
  border-bottom: dotted 1px #e70012;
  border-left: solid 0.5rem #e70012;
  border-right: solid 1px #e70012;
  margin-left: 1rem;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding: .5rem 1rem;
  clear: both;
}
@media screen and (max-width: 779px) {
  article h2 {
    width: 90%;
  }
}
article h2 a {
  text-decoration: none;
}
article h2 a:visited, article h2 a:link {
  text-decoration: none;
  color: #333;
}
@media screen and (max-width: 599px) {
  article h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    padding: .5rem 1rem;
    margin-right: 1rem;
  }
}
article h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  margin-left: 1rem;
  font-size: 1rem;
  padding-left: .5rem;
  clear: both;
  border-left: solid 1rem #e70012;
}
article blockquote h3 {
  margin-top: 1rem;
}
article p, article li, article pre, article div {
  font-size: 1rem;
  padding-right: 1rem;
}
article p {
  margin-left: 1rem;
  line-height: 1.6;
  margin-right: 0rem;
  margin-bottom: 1rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
article p.right, article p.topage, article p.tosite {
  text-align: right;
}
article p.center {
  text-align: center;
}
article ul, article ol {
  margin: 1rem 0;
}
article li {
  margin-left: 4rem;
  margin-right: 0rem;
  margin-bottom: .8rem;
  line-height: 1.4;
}
article ul li {
  list-style-type: square;
}
article ol li {
  list-style-type: decimal;
}
article ul.noStyle li {
  list-style-type: none;
  margin-left: 1rem;
  margin-right: 0;
}
article p.topage, article p.tosite {
  text-align: right;
}
article .clear {
  clear: both;
}
article .left {
  float: left;
}
article .center {
  text-align: center;
}
article strong {
  font-weight: bold;
}
article em {
  background-color: #FAF6BC;
  border-radius: 3px;
  font-style: normal;
  padding: 0 2px;
}
article li.small {
  font-size: .8rem;
}
article .small {
  font-size: .8rem;
  margin-left: 1rem;
  display: block;
}
article .attention {
  color: red;
}
article img {
  margin-top: .5rem;
  vartilcal-align: bottom;
  margin-bottom: 1rem;
}
article a img {
  border: solid 1px #ccc;
  padding: 4px;
  border-radius: 4px;
  opacity: 1;
}
article a:hover img {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}
article blockquote,
article div.s-column, article div.column {
  padding: 10px;
  margin-left: 20px;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.6;
  overflow: auto;
  margin-bottom: 15px;
  padding-bottom: 0;
  background-color: #F5EED3;
  border: solid 1px #ccc;
  clear: both;
  opacity: 1;
}
@media screen and (max-width: 975px) {
  article blockquote,
  article div.s-column, article div.column {
    margin-left: 0;
    width: 85%;
    margin: auto;
    margin-bottom: .5rem;
  }
}
article blockquote,
article blockquote p,
article div.s-column {
  font-size: 1rem;
}
article a {
  color: #0361ac;
}
article a:visited {
  color: #ab039d;
}
article a:focus {
  color: #ab039d;
}
article a:hover {
  color: #0361ac;
}
article a:active {
  color: #0361ac;
}
article a:hover, article a:link, article a:visited {
  text-decoration: underline;
}
article p.tosite a {
  margin-top: 30px;
  display: block;
}
article p.topage {
  margin-top: 20px;
}
article p.tosite a {
  background: -moz-linear-gradient(#ffffff, #eeeeee);
  background: -webkit-linear-gradient(#ffffff, #eeeeee);
  background: linear-gradient(#ffffff, #eeeeee);
  border: 1px solid #DDD;
  color: #111;
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 3px;
}
article p.topage a {
  background: -moz-linear-gradient(#ffffff, #eeeeee);
  background: -webkit-linear-gradient(#ffffff, #eeeeee);
  background: linear-gradient(#ffffff, #eeeeee);
  border: 1px solid #DDD;
  color: #111;
  padding: 10px;
  text-decoration: none;
  border-radius: 3px;
}
article p.topage a:before {
  content: ">> ";
}
article a.linkbutton {
  text-decoration: none;
  display: block;
  text-align: center;
  background-color: #D80128;
  padding: 1rem;
  color: #fff;
  font-weight: bold;
  background: -moz-linear-gradient(#d80128, #c70017);
  background: -webkit-linear-gradient(#d80128, #c70017);
  background: linear-gradient(#d80128, #c70017);
  border-radius: 4px;
}
article a.linkbutton:hover {
  opacity: .7;
}
article table {
  font-size: .9rem;
  border-collapse: collapse;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 570px;
}
@media screen and (max-width: 779px) {
  article table {
    width: auto;
  }
}
article table caption {
  background-color: #e70012;
  color: #fff;
  padding: .5rem;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-bottom: 5px;
}
article th, article td {
  padding: 7px;
}
article th {
  background-color: #ede8d5;
  border: solid 1px #aaa;
  text-align: right;
  font-weight: normal;
  white-space: nowrap;
}
article table td {
  border: solid 1px #aaa;
}
article td li {
  font-size: 13px;
  line-height: 1.3;
  margin-left: 15px;
}
article td.right_txt {
  text-align: right;
}
@media screen and (max-width: 975px) {
  article iframe {
    width: 100%;
  }
}
article textarea {
  width: 95%;
}
article .active {
  ime-mode: active;
}
article .disabled {
  ime-mode: disabled;
}
article select {
  display: inline;
}

/*++トップへ戻る
-------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}
#page-top a {
  background: #333;
  text-decoration: none;
  color: #fff;
  width: 7rem;
  padding: 2rem 0;
  text-align: center;
  display: block;
  border-radius: 5px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  border: 1px solid #616261;
  font-family: arial, helvetica, sans-serif;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  font-weight: bold;
  text-align: center;
  background-color: #7d7e7d;
  background: -moz-linear-gradient(#7d7e7d, #0e0e0e);
  background: -webkit-linear-gradient(#7d7e7d, #0e0e0e);
  background: linear-gradient(#7d7e7d, #0e0e0e);
}
#page-top a:hover {
  text-decoration: none;
  background: #666;
  border: 1px solid #4a4b4a;
  background-color: #646464;
  background: -moz-linear-gradient(#646464, #282828);
  background: -webkit-linear-gradient(#646464, #282828);
  background: linear-gradient(#646464, #282828);
}

/*+記事下広告
-------------------------------------------------------------*/
#ads_bottom {
  border-top: dotted 1px #555;
  padding-top: 1rem;
  margin-left: 1rem;
}

/*+フッター
-------------------------------------------------------------*/
footer {
  box-sizing: border-box;
  clear: both;
  color: #FFF;
  border-top: solid 1px #0068B7;
  background-color: #333333;
}

footer p {
  padding: 1rem;
  color: #FFF;
  font-size: .8rem;
  text-align: right;
  line-height: 1.8;
  margin-right: 1rem;
}
@media screen and (max-width: 599px) {
  footer p {
    text-align: left;
  }
  footer p span {
    display: block;
  }
}

footer p a:hover {
  text-decoration: underline;
}

footer a {
  color: #FFF;
  text-decoration: none;
}
