@charset "utf-8";
@import url("http://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("http://fonts.googleapis.com/earlyaccess/sawarabimincho.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: 12px;
  line-height: 1.8;
}

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

em {
  font-weight: bold;
}

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

ins {
  display: inline-block;
}

/*--- 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;
  border-right: 1px solid #ddd;
  border-bottom: solid 1px #ddd;
  font-weight: bold;
  color: #999;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

table th:nth-last-child(1) {
  border-right: none;
}

table td:nth-of-type(1) {
  border-left: none;
}

/*--- blockquote*/
blockquote {
  font-size: 110%;
  font-weight: bold;
  color: #999;
  text-align: center;
  background-color: #000;
  border: solid 4px #666;
  padding: 2em;
  position: relative;
  z-index: 1;
}

blockquote:before {
  content: "“";
  font-family: serif;
  font-size: 50px;
  line-height: 1em;
  color: #d9d9d9;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: -1;
}

/*--- list ul*/
article ul {
  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;
  border-bottom: dashed 1px #c6c6c6;
}

/*--- list ol*/
article ol {
  margin: 1.5em 0;
  counter-reset: number;
  list-style-type: none !important;
  padding: 10px 20px;
  background-color: #f5f5f5;
}

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: 12px;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background: #6b99cf;
  /*以下 上下中央寄せのため*/
  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 {
  opacity: 0.6;
}

/*--- layout ---*/
.con_wrap {
  max-width: 950px;
  margin: 0 auto 30px;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

.con_wrap>* {
  color: #333;
}

.base_sia {
  max-width: 72%;
  /*730px*/
  float: right;
}

@media (max-width: 695px) {
  .base_sia {
    max-width: inherit;
  }
}

.base_sib {
  /*min-*/
  width: 24%;
  /*200px*/
  float: left;
  position: sticky;
  top: 0;
  height: fit-content;
}

article {
  margin-bottom: 30px;
}

article img {
  margin-bottom: 15px;
  border: solid 1px #e4ebf1;
  width: -webkit-fill-available;
}

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

h2,
h3,
h4,
h5,
h6,
.under h1 {
  font-size: 120%;
  margin-bottom: 15px;
}

h2,
.under h1 {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 15px 10px;
}

h2:before,
.under h1::before {
  content: "";
  margin-right: 10px;
  border-left: solid 4px #a2bcd5;
}

h3,
.under h2 {
  background: #a0c2df;
  padding: 15px 10px;
  color: #fff;
}

h4,
.under h3 {
  font-size: 110%;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 15px 10px;
}

h4:before,
.under h3::before {
  font-family: FontAwesome;
  content: "\f0c8";
  margin-right: 5px;
  color: #a0c2df;
}

.under h3::before {
  color: #fff;
}

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

h5 {
  font-size: 110%;
  padding: 8px 10px;
  color: #fff;
  background-color: #8796aa;
}

h6 {
  font-size: 110%;
  padding: 8px 10px;
  color: #6b99cf;
}

/*--- header ---*/
.base-hd {
  width: 100%;
  overflow: hidden;
}

.base-title {
  width: 100%;
  background: #6b99cf;
  text-align: center;
  padding: 12px 0;
  border-top: solid 1px #001845;
}

/*--- h1*/
.ttl_h a {
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}

/*--- headCopy*/
.base-cp {
  font-size: 70%;
  color: #fff;
}

/*--- headNav ---*/
#base-nv {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

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

#base-nv li {
  width: 25%;
  float: left;
}

#base-nv li a {
  position: relative;
  padding: 1.5em;
}

#base-nv li a:hover {
  background: rgba(107, 153, 207, 0.14);
  opacity: 1;
}

#base-nv li a:hover:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #001845 transparent;
  border-width: 0 5px 5px 5px;
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
.base-mainvisual {
  overflow: hidden;
  position: relative;
  height: 300px;
  max-width: 730px;
  margin: 20px auto;
  border: solid 1px #6b99cf;
  box-sizing: border-box;
}

.base-slider {
  position: relative;
}

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

/*--- 下層リンク ---*/
.base-top {
  width: 100%;
  overflow: hidden;
  margin: 50px 0;
}

.base-top .base-lk {
  overflow: hidden;
  padding: 0;
  float: left;
  width: 33%;
  border-left: solid 1px #ddd;
}

.base-top .base-lk:nth-of-type(1) {
  margin-left: 0.5%;
}

.base-top .base-lk:nth-last-of-type(1) {
  border-right: solid 1px #ccc;
  margin-right: 0.5%;
}

.base-top .base-lk img {
  width: 80%;
  margin: 10px 10% 15px;
}

.base-top .base-lk>div {
  width: 80%;
  margin: 0 10%;
}

.base-top .base-lk h2 {
  border: none;
  color: #6b99cf;
  padding: 0;
}

.base-top .base-lk h2:before {
  display: none;
}

/*--- readMore*/
.base-more {
  width: 100%;
  text-align: center;
  margin: 15px auto;
  position: relative;
}

.base-more a {
  padding: 10px 0;
  background-color: #8796aa;
  font-size: 85%;
  color: #fff;
}

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

.base-more a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  right: 10px;
}

/*--- aside ---*/
aside {
  margin-top: 20px;
}

aside dl {
  padding: 0 15px 10px;
  border-top: solid 1px #c6c6c6;
  border-bottom: solid 1px #c6c6c6;
}

aside dt {
  font-size: 100%;
  padding: 12px 0;
  color: #243f72;
  font-weight: bold;
}

aside dt:before {
  font-family: FontAwesome;
  content: "\f005";
  background: #6b99cf;
  color: #fff;
  width: 1em;
  height: 1em;
  padding: 3px;
  border-radius: 3px;
  margin-right: 5px;
}

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

/*--- 上block*/
aside .basemenu_t a:before {
  font-family: FontAwesome;
  content: "\f0da";
  margin-right: 4px;
  color: #6b99cf;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

aside .basemenu_t a {
  line-height: 28px;
}

/*--- 下block*/
aside .basemenu_trs dl {
  border-top: none;
}

aside .basemenu_trs dd {
  width: 100%;
  position: relative;
  border: solid 5px #e4ebf1;
  box-sizing: border-box;
  margin: 0 auto 15px;
}

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

aside .basemenu_trs dd p {
  width: 100%;
  padding: 3px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(86, 105, 141, 0.56);
  font-size: 85%;
  line-height: 18px;
  color: #fff;
  text-align: center;
}

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

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

/*--- recommend ---*/
.base-lbk {
  margin: 50px 0;
  padding: 15px;
  border-top: solid 1px #c6c6c6;
  border-bottom: solid 1px #c6c6c6;
  overflow: hidden;
}

.base-lbk h2 {
  border: none;
}

.base-lbk h2:before {
  font-family: FontAwesome;
  content: "\f005";
  background: #6b99cf;
  color: #fff;
  width: 1em;
  height: 1em;
  padding: 3px;
  border-radius: 3px;
  margin-right: 5px;
  border: none;
}

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

.base-lbk h3 {
  background: none;
  padding: 0;
  margin-bottom: 5px;
}

.base-lbk h3 a {
  color: #fff;
  position: relative;
  background: #6b99cf;
  padding: 15px 10px;
}

.base-lbk h3 a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  right: 10px;
}

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

.base-lbk p {
  color: #9d9d9d;
}

/*--- footer ---*/
footer {
  width: 100%;
  background: #f4f4f2;
  border-top: solid 1px #000;
}

footer ul {
  max-width: 950px;
  margin: 0 auto;
}

footer dl {
  padding: 20px 0;
  overflow: hidden;
}

footer li:nth-last-of-type(1) {
  border-top: solid 1px #ddd;
  padding-top: 20px;
}

footer dt,
footer dd {
  float: left;
  text-align: center;
}

footer dt {
  width: 110px;
  color: #6b99cf;
  margin-left: 20px;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.02);
}

footer dd {
  width: 205px;
  font-size: 95%;
}

footer dd a {
  color: #333;
  padding: 20px 0;
}

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

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

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

.base-nf b {
  font-size: 400%;
  font-family: serif;
  color: #6b99cf;
}

/*--- pan*/
.base-pan {
  width: 950px;
  margin: 10px auto;
}

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

/*SNS*/
.sns-ctnbt {
  margin: 50px 0;
  padding: 15px;
  border-top: solid 1px #c6c6c6;
  border-bottom: solid 1px #c6c6c6;
  overflow: hidden;
}

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

.sns-ctnbt dl {
  overflow: hidden;
}

.sns-ctnbt dt {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.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: #fff;
  background: #00acee;
  padding: 15px 0;
  margin: 7px 5px;
  font-weight: bold;
}

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

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

#hatena {
  background: #041d4d;
}

#facebook {
  background: #3b5998;
}

#ggl-plus {
  background: #dd4b39;
}

/*--- topPage*/
p.base-btn a {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  background: #6b99cf;
}

p.base-btn a:before {
  font-family: FontAwesome;
  content: "\f106";
  text-align: center;
  font-size: 40px;
  line-height: 44px;
}

p.base-btn a:hover {
  background: #c6c6c6;
  text-decoration: none;
}

/*下層などflex内で要素が増える時*/
.base-con.con_wrap.under_p:has(.base-pan) {
  flex-wrap: wrap;
}

/*パンくずが含まれる時のみ*/
.base-pan {
  width: 100%;
}

/*パンくず*/