@charset "utf-8";
@import url("http://fonts.googleapis.com/earlyaccess/sawarabigothic.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  color: #666;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  border-top: solid 5px #0083cd;
}

del {
  text-decoration: line-through;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
  display: inline-block;
  border: 2px solid #bbb;
  margin: 1em 0;
  padding: 1em;
}

strong {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff6b 0%) repeat scroll 0 0;
}

em {
  font-style: italic;
  font-weight: bold;
}

strong,
b {
  font-size: 100%;
}

ins {
  display: inline-block;
  background: #dff1f9;
}

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 150px;
  padding: 10px;
  text-align: center;
  vertical-align: top;
  background: #efefef;
  border: solid 1px #ddd;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #ddd;
  font-size: 90%;
}

/*--- blockquote*/
blockquote {
  font-size: 125%;
  text-align: center;
  background-color: #eef9ff;
  padding: 2em;
  position: relative;
  z-index: 1;
}

blockquote:before {
  content: "“";
  font-family: monospace;
  font-size: 120px;
  line-height: 1em;
  color: #fff;
  position: absolute;
  left: -50px;
  top: 0;
  z-index: -1;
}

/*--- list ul*/
article ul {
  background-color: #fff;
  border: 10px solid #dff1f9;
  padding: 10px 15px 7px 15px;
  margin-top: 10px;
  box-sizing: border-box;
}

article ul li {
  font-size: 12px;
  margin: 0.5em 0;
  padding: 10px 20px;
  line-height: 2.35em;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f111";
  margin-right: 8px;
}

/*--- list ol*/
article ol {
  margin: 1.5em 0;
  counter-reset: number;
  list-style-type: none !important;
  padding: 10px 20px;
  border-radius: 10px;
  border: solid 3px #f2f2f2;
  box-sizing: border-box;
  background-color: #f2f2f2;
  background-image: -webkit-gradient(linear,
      0 0,
      100% 100%,
      color-stop(0.25, #f9f9f9),
      color-stop(0.25, transparent),
      color-stop(0.5, transparent),
      color-stop(0.5, #f9f9f9),
      color-stop(0.75, #f9f9f9),
      color-stop(0.75, transparent),
      to(transparent));
  -webkit-background-size: 7px 7px;
}

article ol li {
  margin: 0.5em 0;
  padding: 10px 30px;
  list-style: none;
  position: relative;
}

article ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: 15px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 20px;
  text-align: center;
  border: solid 1px #6db3f2;
  box-sizing: border-box;
  background: #6db3f2;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6db3f2', endColorstr='#1e69de', GradientType=0);
  /* IE6-9 */
  /*以下 上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- link*/
a {
  display: block;
  color: #333;
}

a:hover {
  text-decoration: underline;
  color: #1e69de;
}

/*--- layout ---*/
.con_wrap {
  max-width: 980px;
  margin: 0 auto;
  /* overflow: hidden; */
}

/*clearfix*/
.index-con.con_wrap.under_p:after,
.index-con.con_wrap:after {
  content: "";
  display: block;
  clear: both;
}

.con_wrap>* {
  color: #333;
}

.index_sia {
  max-width: 78%;
  float: left;
}

.index_sib {
  /*min-*/
  width: 20%;
  float: right;
  position: sticky;
  top: 0;
  height: fit-content;
}

article {
  margin-bottom: 30px;
}

article img {
  max-width: 100%;
  margin-bottom: 15px;
}

/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 140%;
  margin-bottom: 15px;
}

h2,
.under h1 {
  height: 52px;
  line-height: 52px;
  text-indent: 25px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  overflow: hidden;
  border: solid 1px #e0e0e0;
  border-radius: 5px;
  position: relative;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #ffffff 62%,
      #ffffff 62%,
      #ededed 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #ffffff 62%,
      #ffffff 62%,
      #ededed 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #ffffff 62%,
      #ffffff 62%,
      #ededed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  /* IE6-9 */
}

h2:before,
.under h1::before {
  content: "";
  width: 7px;
  height: 40px;
  position: absolute;
  border: solid 1px #6db3f2;
  box-sizing: border-box;
  left: 8px;
  top: 5px;
  background: #6db3f2;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6db3f2', endColorstr='#1e69de', GradientType=0);
  /* IE6-9 */
}

h3,
.under h2 {
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-indent: 15px;
  font-size: 16px;
  overflow: hidden;
  background: #dff1f9;
  border: double 1px #fff;
  outline: solid 1px #dff1f9;
}

h4,
.under h3 {
  font-size: 16px;
  line-height: 30px;
  padding-left: 10px;
  border-left: solid 7px #005aab;
  border-bottom: solid 2px #005aab;
}

.under h3 {
  margin-top: 40px;
}

h5 {
  font-size: 15px;
  line-height: 21px;
  padding-left: 7px;
  border-left: solid 5px #005aab;
}

h6 {
  font-size: 100%;
  padding: 5px;
  color: #014390;
}

/*--- header ---*/
.index-hd {
  width: 100%;
  background: url(../images/headTtl.png) repeat-x;
  overflow: hidden;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.26);
}

.index-hdIn {
  max-width: 980px;
  height: 110px;
  margin: 0 auto;
  position: relative;
}

.index-title {
  width: 100%;
}

/*--- h1*/
.ttl_h {
  max-width: 300px;
  height: 90px;
  display: table;
}

@media (max-width: 695px) {
  .ttl_h {
    max-width: inherit;
    width: 100%;
  }
}

.ttl_h a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  border: solid 2px #0083cd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.27);
  font-size: 100%;
  padding: 8px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.3;
  /*1.4em*/
  color: #fff;
  background: #47bde2;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #24b4e2 4%,
      #0083cd 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #24b4e2 4%,
      #0083cd 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #24b4e2 4%,
      #0083cd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#24b4e2', endColorstr='#0083CD', GradientType=0);
  /* IE6-9 */
}

.ttl_h a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- headCopy*/
.index-cp {
  font-size: 85%;
  padding: 5px;
  width: 500px;
  position: absolute;
  top: -1px;
  left: 310px;
}

/*--- headNav ---*/
#index-nv {
  width: 60%;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0px;
  text-align: center;
}

#index-nv ul {
  margin: 0 auto;
  overflow: hidden;
}

#index-nv li {
  float: left;
  margin: 2px;
}

#index-nv li:hover {
  background: #2ba4d9;
  border-radius: 5px;
}

#index-nv li a {
  border-bottom: solid 3px #2ba4d9;
  padding: 3px 10px 5px;
  margin: 7px 5px;
  font-weight: bold;
}

#index-nv li a:hover {
  border-bottom: solid 3px #fff;
  color: #fff;
  text-decoration: none;
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
.index-mainvisual {
  overflow: hidden;
  position: relative;
  height: auto;
  width: 100%;
  margin-bottom: 20px;
}

.index-slider {
  position: relative;
  left: 50%;
  width: 2940px;
  margin-left: -447.5px;
}

.index-slider li {
  margin: 20px 5px;
}

.index-slider li img {
  display: block;
  border-radius: 8px;
  border: 5px solid #fff;
  box-sizing: border-box;
}

.bx-wrapper {
  position: relative;
  max-width: 100% !important;
  margin: 0 auto;
  border: none;
  box-shadow: none;
  background: #0083cd;
}

.index-mainvisual .bx-viewport {
  height: auto !important;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
}

/*--- 下層リンク ---*/
.index-top {
  width: 100%;
}

.index-top .index-lk {
  border: solid 1px #ddd;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.index-top .index-lk img {
  width: 40%;
  float: left;
  border: solid 1px #fff;
  margin: 0;
}

.index-top .index-lk>div {
  width: 58%;
  float: right;
  margin: 1%;
}

.index-top .index-lk h2 {
  height: 32px;
  line-height: 30px;
  text-indent: 20px;
  font-size: 16px;
  color: #333;
}

.index-top .index-lk h2:before {
  height: 20px;
}

/*--- readMore*/
.index-more {
  width: 76px;
  height: 18px;
  text-align: center;
  margin: 10px auto;
  position: absolute;
  bottom: 0;
  right: 10px;
}

.index-more a:before {
  font-family: FontAwesome;
  content: "\f0a9";
  margin-right: 8px;
}

.index-more a {
  background-color: #0083cd;
  border-radius: 4px;
  font-size: 85%;
  line-height: 18px;
  color: #fff;
}

.index-more a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- aside ---*/
aside dl {
  margin-bottom: 30px;
  border-radius: 5px;
}

aside dt {
  font-size: 100%;
  padding: 8px 25px;
  border-radius: 5px 5px 0 0;
  position: relative;
  border-bottom: solid 1px #e3e3e3;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #ffffff 62%,
      #ffffff 62%,
      #ededed 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #ffffff 62%,
      #ffffff 62%,
      #ededed 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #ffffff 62%,
      #ffffff 62%,
      #ededed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  /* IE6-9 */
}

aside dt:before {
  content: "";
  width: 7px;
  height: 20px;
  position: absolute;
  left: 8px;
  top: 7px;
  border: solid 1px #1e69de;
  box-sizing: border-box;
  border-radius: 3px;
  background: #6db3f2;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6db3f2', endColorstr='#1e69de', GradientType=0);
  /* IE6-9 */
}

aside dd {
  background: #fff;
  font-size: 85%;
}

/*--- 上block*/
aside .iMenu_t dl {
  border: solid 2px #e3e3e3;
}

aside .iMenu_t dd:nth-of-type(1) {
  border-top: solid 6px #ededed;
}

aside .iMenu_t dd:nth-last-of-type(1) {
  border-bottom: solid 6px #ededed;
}

aside .iMenu_t a {
  line-height: 32px;
  padding-left: 10px;
  border-left: solid 6px #ededed;
  border-right: solid 6px #ededed;
}

aside .iMenu_t a:before {
  font-family: FontAwesome;
  content: "\f105";
  margin-right: 4px;
  color: #1e69de;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

/*--- 下block*/
aside .iMenu_trs dt {
  border: solid 2px #e3e3e3;
  border-bottom: none;
}

aside .iMenu_trs dd {
  width: 100%;
  position: relative;
  border: solid 6px #e3e3e3;
  box-sizing: border-box;
  margin: 0 auto 15px;
}

aside .iMenu_trs dd img {
  width: 100%;
}

aside .iMenu_trs dd p {
  width: 70%;
  padding-left: 10px;
  position: absolute;
  bottom: 5px;
  right: 0;
  background-color: #0083cd;
  border-radius: 8px 0 0 8px;
  font-size: 85%;
  line-height: 18px;
  color: #fff;
}

aside .iMenu_trs dd p:before {
  font-family: FontAwesome;
  content: "\f0a9";
  margin-right: 5px;
}

aside .iMenu_trs a:hover {
  opacity: 0.8;
}

/*--- recommend ---*/
.index-lbk {
  overflow: hidden;
  padding: 15px 15px 0;
  border-radius: 10px;
  border: solid 3px #daecf4;
  box-sizing: border-box;
  background-color: #dff1f9;
  background-image: -webkit-gradient(linear,
      0 0,
      100% 100%,
      color-stop(0.25, #daecf4),
      color-stop(0.25, transparent),
      color-stop(0.5, transparent),
      color-stop(0.5, #daecf4),
      color-stop(0.75, #daecf4),
      color-stop(0.75, transparent),
      to(transparent));
  -webkit-background-size: 7px 7px;
}

/*--- h3_link*/
.lbk_in {
  width: 90%;
  margin: 0 auto 20px;
}

.index-lbk h3 {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
  line-height: 100%;
  text-indent: 15px;
  font-size: 20px;
  border: solid 1px #1e69de;
  box-sizing: border-box;
  border-radius: 5px;
  background: #6db3f2;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6db3f2', endColorstr='#1e69de', GradientType=0);
  /* IE6-9 */
  outline: none;
  padding: 15px;
}

.index-lbk h3 a {
  color: #fff;
}

.index-lbk h3 a:before {
  font-family: FontAwesome;
  content: "\f0a9";
  margin-right: 8px;
  text-decoration: none;
  display: inline-block;
}

.index-lbk h3 a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- footer ---*/
footer {
  width: 100%;
  background: #2296d3;
  border-top: solid 5px #025cb2;
  text-align: left;
}

footer ul {
  width: 980px;
  margin: 0 auto;
  padding: 30px 0;
  overflow: hidden;
}

footer dl {
  margin-bottom: 10px;
}

footer dt {
  width: 100px;
  padding: 2px 0;
  color: #fff;
  background: #00acee;
  display: inline-block;
  text-align: center;
}

footer dd {
  font-size: 95%;
  line-height: 36px;
  display: inline-block;
  margin-left: 5px;
}

footer dd a {
  color: #fff;
}

footer dd a:after {
  content: "|";
  border: none;
  display: inline-block;
  margin-left: 5px;
}

footer dd a:hover {
  color: #fff;
}

/*--- footCopy*/
.index-fc {
  width: 100%;
  background: #29a2d9;
  margin: 0 auto;
  padding: 15px;
  font-size: 70%;
  text-align: center;
  color: #fff;
}

/*--- 404*/
.index-nf {
  height: 700px;
}

.index-nf b {
  font-size: 400%;
  color: #025cb2;
}

/*--- pan*/
.index-pan {
  width: 980px;
  margin: 10px auto;
}

.index-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
}

/*SNS*/
.sns-ctnbt {
  overflow: hidden;
  padding: 15px;
  margin: 0 0 30px;
  border-radius: 10px;
  border: solid 3px #daecf4;
  box-sizing: border-box;
  background-color: #dff1f9;
  background-image: -webkit-gradient(linear,
      0 0,
      100% 100%,
      color-stop(0.25, #daecf4),
      color-stop(0.25, transparent),
      color-stop(0.5, transparent),
      color-stop(0.5, #daecf4),
      color-stop(0.75, #daecf4),
      color-stop(0.75, transparent),
      to(transparent));
  -webkit-background-size: 7px 7px;
}

.sns-ctnc .fa {
  font-weight: bold;
}

.sns-ctnbt dl {
  overflow: hidden;
}

.sns-ctnbt dd {
  width: 24%;
  margin-right: 1%;
  float: left;
  text-align: center;
  background: #fff;
  border-radius: 5px;
}

.sns-ctnbt dd:nth-of-type(1) {
  margin-left: 0.5%;
}

.sns-ctnbt dd:nth-last-of-type(1) {
  margin-right: 0.5%;
}

.sns-ctnbt dd a {
  color: #00acee;
  border-bottom: solid 3px #00acee;
  padding: 3px 10px 5px;
  margin: 7px 5px;
  font-weight: bold;
}

.sns-ctnbt dd a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/*--- bg*/
#twitter {}

#hatena {
  color: #041d4d;
  border-bottom: solid 3px #041d4d;
}

#facebook {
  color: #3b5998;
  border-bottom: solid 3px #3b5998;
}

#ggl-plus {
  color: #dd4b39;
  border-bottom: solid 3px #dd4b39;
}

/*--- topPage*/
p.index-btn a {
  width: 110px;
  height: 24px;
  padding-top: 2px;
  position: fixed;
  border-radius: 5px 5px 0 0;
  bottom: 0;
  right: 10px;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border: solid 2px #1e69de;
  background: #6db3f2;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #6db3f2 0%,
      #54a3ee 50%,
      #3690f0 51%,
      #1e69de 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6db3f2', endColorstr='#1e69de', GradientType=0);
  /* IE6-9 */
}

p.index-btn a:before {
  font-family: FontAwesome;
  content: "\f106";
  margin-right: 5px;
}

p.index-btn a:hover {
  background: #0083cd;
  color: #fff;
  text-decoration: none;
}