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

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

body {
  color: #666;
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  border-top: solid 5px #07468d;
  background: url(../images/bg.png) repeat;
}

/*リスト*/
article ul {
  background-color: #fff;
  border-top: 4px solid #fbb659;
  padding: 10px 15px 7px 15px;
  margin-top: 10px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
}

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: "\f042";
  margin-right: 8px;
  color: #fbb659;
}

article ol {
  background-color: #fff;
  margin: 1.5em 0;
  counter-reset: number;
  list-style-type: none !important;
  border-top: 4px solid #2ad5ce;
  padding: 10px 20px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
}

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;
  background: #2ad5ce;
  color: white;
  font-weight: bold;
  font-size: 15px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*引用文*/

blockquote {
  background-color: #00acee;
  color: #fff;
  padding: 2em;
  position: relative;
  z-index: 1;
}

blockquote:before {
  content: "“";
  font-size: 60px;
  line-height: 1em;
  color: #a4dcf2;
  position: absolute;
  left: 10px;
  top: 0;
  z-index: -1;
}

/*テーブル*/

table {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 150px;
  padding: 10px;
  vertical-align: top;
  background: #07468d;
  color: #fff;
  border: solid 1px #4173ac;
}

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

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 {
  color: #d60000;
}

em {
  font-style: italic;
  color: #07468d;
}

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

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
  background: rgba(0, 172, 238, 0.44);
  color: #fff;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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

a:hover {
  text-decoration: underline;
}

/*全体*/
.con_wrap {
  max-width: 1160px;
  margin: 0 auto;
  /* overflow: hidden; */
}

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

.con_wrap>* {
  color: #333;
}

.body_sia {
  width: 100%;
}

main {
  width: 98%;
  margin: 0 auto;
}

.body_sib {
  max-width: 98%;
  margin: 0 1% 20px;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

aside {
  /*min-*/
  width: 18%;
  margin-top: 1%;
  margin-right: 1%;
  float: right;
  position: sticky;
  top: 0;
  height: fit-content;
}

article {
  margin-bottom: 30px;
  padding: 2%;
  background: #fff;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
}

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

/*under page*/
.under_p .body_sia {
  width: 79%;
  float: right;
}

.under_p .body_sib {
  width: 18%;
  margin-top: 1%;
  margin-right: 1%;

  float: left;
  position: sticky;
  top: 0;
  height: fit-content;
}

.under_p aside {
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  float: none;
}

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

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

/* +下層用 */
h2,
.under h1 {
  position: relative;
  padding: 5px 0;
  color: #014390;
  font-size: 160%;
  line-height: 1.5;
  text-align: center;
}

h2:before,
.under h1:before {
  position: absolute;
  top: 13px;
  left: 0;
  display: block;
  margin: auto 0;
  width: 100px;
  height: 21px;
  background-image: url(../images/h2.png);
  background-repeat: repeat-x;
  content: "";
}

h2:after,
.under h1:after {
  position: absolute;
  top: 13px;
  right: 0;
  display: block;
  margin: auto 0;
  width: 100px;
  height: 21px;
  background-image: url(../images/h2.png);
  background-repeat: repeat-x;
  content: "";
}

h3,
.under h2 {
  margin-bottom: 22px;
  padding: 10px;
  color: #004295;
  font-size: 150%;
  line-height: 1;
  position: relative;
}

h3:before,
.under h2:before {
  content: "";
  border-bottom: 3px solid #ddd;
  bottom: 0;
  height: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

h3:after,
.under h2:after {
  border-bottom: 3px solid #07468d;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 20%;
  z-index: 1;
}

h4,
.under h3 {
  font-size: 130%;
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #fff867 0%) repeat scroll 0 0;
  color: #07468d;
  display: inline-block;
}

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

h5 {
  position: relative;
  display: table;
  margin: 1.5em auto;
  padding: 7px 10px;
  min-width: 120px;
  color: #fff;
  font-size: 100%;
  background: #00acee;
  text-align: center;
}

h5:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #00acee;
}

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

/*header Area*/

.body-hd {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.body-hdIn {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/*--- head ---*/
/*h1*/
.ttl_h {
  width: 100%;
  clear: both;
  line-height: 1.3;
}

.ttl_h a {
  font-size: 180%;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #07468d;
  padding-bottom: 10px;
}

.ttl_h a:hover {
  color: #00acee;
  background: none;
  text-decoration: none;
}

/*copy*/
.body-cp {
  width: auto;
  /*65%*/
  float: left;
  margin: 10px auto;
  font-size: 80%;
  color: #333;
}

/*--- headnav ---*/
#body-nv {
  width: auto;
  /*33%*/
  font-size: 90%;
  float: right;
  margin: 0 auto;
  text-align: center;
}

#body-nv ul {
  margin: 0 auto;
  padding: 8px 0;
  overflow: hidden;
}

#body-nv li {
  width: auto;
  /*25%*/
  float: left;
  margin-right: 15px;
}

#body-nv li a {
  padding: 5px 0;
}

#body-nv li a:before {
  font-family: FontAwesome;
  content: "\f0da";
  color: #07468d;
  display: inline-block;
  text-decoration: none;
}

.slicknav_menu {
  display: none;
}

/*main Slider*/
.body-mainvisual {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.body-slider {
  position: relative;
  left: 50%;
  /* width: 2940px; */
  margin-left: -580px;
}

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

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

/*下層リンク*/
/*aside横*/
.body_sib .body-lk {
  max-width: 79%;
  float: left;
  padding: 2%;
  background: #fff;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
}

.body_sib .body-lk h2:before,
.body_sib .body-lk h2:after {
  width: 38px;
}

/*2column*/
.body-top {
  width: 100%;
  overflow: hidden;
}

.body-top .body-lk {
  width: 49%;
  float: left;
  border-top: solid 4px #2ad5ce;
}

.body-top article:nth-child(2) {
  float: right;
  border-top: solid 4px #fbb659;
}

.body-top .body-lk>div {
  margin: 5px 10px 0;
}

.body-top .body-lk h2 {
  color: #2ad5ce;
}

.body-top article:nth-child(2) h2 {
  color: #fbb659;
}

.body-top .body-lk h2:before,
.body-top .body-lk h2:after {
  display: none;
}

.body-top .body-lk p {
  width: 100%;
  line-height: 1.8;
}

.body-lk img {
  width: 100%;
}

/*--- read More ---*/
.body-more {
  width: 162px;
  height: 32px;
  font-weight: 500;
  text-align: center;
  margin: 10px auto;
}

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

.body-more a {
  background-color: #2fb5f1;
  border-radius: 4px;
  font-size: 90%;
  line-height: 32px;
  color: #fff;
  border-bottom: solid 3px #106c95;
}

.body-more a:hover {
  border-bottom: none;
  border-top: 3px solid #fff;
  text-decoration: none;
}

/*2column*/
.body-top .body-more a {
  background-color: #2ad5ce;
  border-bottom: solid 3px #0a6f6b;
}

.body-top .body-more a:hover {
  border-bottom: none;
}

.body-top article:nth-child(2) .body-more a {
  background-color: #fbb659;
  border-bottom: solid 3px #a26410;
}

.body-top article:nth-child(2) .body-more a:hover {
  border-bottom: none;
}

/*side Area*/
aside dl {
  text-align: center;
  margin-bottom: 30px;
}

aside dt {
  position: relative;
  display: table;
  margin: 0 auto 1.5em;
  padding: 7px 10px;
  width: 100%;
  color: #fff;
  font-size: 100%;
  background: #00acee;
}

aside dt:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #00acee;
}

aside a {
  font-size: 85%;
}

aside a:hover {}

/*menu*/
aside .bodyMenu_t a {
  line-height: 32px;
}

/*column*/
aside .bodyMenu_trs dd {
  margin-bottom: 25px;
}

aside .bodyMenu_trs a img {
  width: 86%;
  margin: 0 7%;
}

/*おすすめリンク*/
.body-lbk {
  overflow: hidden;
  border-top: solid 5px #ff98b5;
  background: #fff;
  text-align: center;
  padding: 0 2%;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
}

.body-lbk h2 {
  font-size: 28px;
  padding: 10px 0 0;
  margin: 0 auto;
  color: #ff98b5;
}

.body-lbk h2:before,
.body-lbk h2:after,
.body-lbk h3:before,
.body-lbk h3:after {
  display: none;
}

.lbk_in {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}

.body-lbk h3 {
  width: 96%;
  /*    height: 62px;*/
  font-weight: 500;
  margin: 0 auto;
}

.body-lbk h3 a:before {
  font-family: FontAwesome;
  content: "\f0da";
  margin-right: 8px;
}

.body-lbk h3 a {
  background-color: #ff98b5;
  border-radius: 4px;
  /*	line-height: 62px;*/
  padding: 12px 14px;
  color: #fff;
  border-bottom: solid 3px #93485d;
}

.body-lbk h3 a:hover {
  border-bottom: none;
  border-top: 3px solid #fff;
  text-decoration: none;
}

.lbk_in p {
  margin: 0 0 20px;
  font-size: 85%;
}

/*フッターエリア*/

footer {
  width: 100%;
  padding-bottom: 30px;
  background: #edf1f4;
  text-align: center;
}

footer ul {
  max-width: 600px;
  /* margin: 0 auto; */
  padding: 30px 0;
  overflow: hidden;
}

footer li {
  width: 50%;
  float: left;
}

footer dl {
  width: 90%;
  margin: 0 auto;
}

footer dt {
  position: relative;
  display: table;
  margin: 0 auto 1.5em;
  padding: 7px 10px;
  width: 100%;
  color: #fff;
  font-size: 100%;
  background: #00acee;
}

footer dt:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #00acee;
}

footer dd {
  font-size: 95%;
  line-height: 36px;
  position: relative;
}

/*--- コピーライト ---*/
.body-fc {
  width: 100%;
  background: #3a444f;
  margin: 0 auto;
  padding: 15px;
  font-size: 70%;
  text-align: center;
  color: #fff;
}

/*////under */
.body-nf {
  height: 700px;
}

.body-nf b {
  font-size: 280%;
  color: #333;
}

/*パンくず*/

.body-pan {
  width: 1160px;
  margin: 10px auto;
}

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

/*SNS*/
.sns-ctnbt {
  overflow: hidden;
  background: #fff;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
}

.sns-ctnbt dl {
  overflow: hidden;
  text-align: center;
}

.sns-ctnbt dt {
  font-size: 28px;
  padding: 10px 0;
  margin: 0 auto;
  border-bottom: solid 5px #ff98b5;
  color: #ff98b5;
}

.sns-ctnbt dd {
  width: 25%;
  float: left;
}

.sns-ctnbt dd a {
  width: 96%;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  line-height: 50px;
  padding: 20px 0;
  border-right: solid 1px #ddd;
  margin: 0 auto;
  background: #fff;
}

.sns-ctnbt dd:nth-last-of-type(1) a {
  border-right: none;
}

.sns-ctnbt dd a:hover {
  text-decoration: none !important;
  margin: 0 auto;
  opacity: 0.8;
}

.sns-ctnbt i,
#hatena span {
  width: 50px;
  height: 50px;
  font-size: 30px;
  line-height: 50px;
  color: #fff;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
}

/* SNSごとの背景色 */

#twitter {
  color: #00acee;
}

#twitter i {
  background: #00acee;
}

#hatena {
  color: #041d4d;
}

#hatena span {
  background: #041d4d;
}

#facebook {
  color: #3b5998;
}

#facebook i {
  background: #3b5998;
}

#ggl-plus {
  color: #dd4b39;
}

#ggl-plus i {
  background: #dd4b39;
}

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

/*トップに戻るボタン*/
p.body-btn a {
  width: 110px;
  height: 24px;
  padding-top: 2px;
  position: fixed;
  border-radius: 20px;
  bottom: 18px;
  right: 10px;
  z-index: 1;
  background: #fff;
  border: solid 2px #07468d;
  text-align: center;
  color: #07468d;
  font-size: 11px;
  font-weight: 600;
}

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

p.body-btn a:hover {
  background: #07468d;
  color: #fff;
  text-decoration: none;
}