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

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

body {
  background: #f2f2f2;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Sawarabi Gothic", "sans-serif";
}

/*///// リスト /////*/
article ul {
  margin: 1.5em 0;
  border: solid 1px #e6f0fa;
}

article ul li {
  margin: 0.5em 0;
  padding: 10px 20px;
  color: #003163;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f0a4";
  color: #7ba4cd;
  margin-right: 8px;
}

article ol {
  margin: 1.5em 0;
  counter-reset: counter-name;
  background: #e6f0fa;
}

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

article ol li:before {
  counter-increment: counter-name;
  content: counter(counter-name) ".";
  position: absolute;
  left: 20px;
  font-weight: bold;
}

/*///// 引用文 /////*/

blockquote {
  font-size: 22px;
  font-family: "Sawarabi Mincho";
  margin: 30px 20px;
  line-height: 150%;
  position: relative;
  color: #003163;
}

blockquote:before,
blockquote:after {
  content: "“";
  position: absolute;
  top: -10px;
  left: -25px;
  font-size: 50px;
}

/*///// テーブル /////*/

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;
  border: 1px solid #dddddd;
  background: #eaeaea;
}

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

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: #fedd6a;
  color: #003163;
}

em {
  font-style: normal;
  color: #efb900;
}

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

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/*///// リンク /////*/

a {
  color: #003163;
  display: block;
}

a:hover {
  color: #003163;
  opacity: 0.8;
  transition: 0.2s;
}

/*///// タイトル /////*/

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
}

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

h2,
.under h1 {
  font-size: 40px;
  font-family: "Sawarabi Mincho";
  color: #091e3a;
}

h3,
.under h2 {
  border-left: 10px solid #003163;
  padding-left: 15px;
  line-height: 140%;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

h4,
.under h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: #003163;
  border-left: 3px solid;
  padding-left: 10px;
}

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

h5 {
  padding: 3px 0 3px 24px;
  color: #fff;
  background: #7ba4cd;
}

h6 {
  line-height: 170%;
  font-size: 18px;
  font-weight: 700;
  color: #003163;
}

/*///// 全体 /////*/
.con_wrap {
  max-width: 1500px;
  margin: 0 auto 50px;
  /* overflow: hidden; */
  background: #fff;
  border-top: solid 3px #001933;

  display: flex;
  justify-content: space-between;
}

.con_wrap>* {
  color: #2e2e2e;
}

.home_sia {
  max-width: 72%;
  float: left;
}

.home_sib {
  /*min-*/
  width: 28%;
  float: right;

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

main,
aside {
  width: 90%;
  margin: 20px auto 30px;
}

article {
  margin-bottom: 30px;
}

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

/*///// ヘッダーエリア /////*/

.home-hd {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  background: #001933;
}

.home-title {
  margin: 10px 0;
  max-width: 600px;
  margin-right: 20px;
  float: right;
}

/*--- h1 ---*/
.ttl_h {
  max-width: 800px;
  height: 80px;
  float: left;
  margin-left: 20px;
  display: table;
  line-height: 1.3;
}

.ttl_h a {
  font-size: 21px;
  font-weight: normal;
  font-family: "Sawarabi Mincho";
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  letter-spacing: -0.1em;
}

@media (max-width: 723px) {
  .ttl_h a {
    padding-top: 50px;
  }
}

.ttl_h a:hover {
  background: none;
  color: #dfefff;
}

/*--- キャッチコピー ---*/
.home-hd p.home-cp {
  text-align: left;
  color: #fff;
  margin: 0 0 0.6em;
  font-size: 85%;
}

/*///// ヘッドナビ /////*/
#home-nv {
  width: 100%;
}

#home-nv>ul {
  width: 100%;
  overflow: hidden;
}

#home-nv li {
  text-align: center;
  width: 149px;
  margin-left: 1px;
  float: left;
}

#home-nv li a {
  width: 100%;
  padding: 3px 0;
  text-shadow: 1px 1px 1px #fff;
  display: block;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #ccc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #ffffff 0%,
      #ccc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #ccc 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ccc', GradientType=0);
  /* IE6-9 */
}

#home-nv li:nth-child(1) a {
  border-radius: 4px 0 0 4px;
}

#home-nv li:last-child a {
  border-radius: 0 4px 4px 0;
}

#home-nv li a:hover {
  color: #000;
}

.slicknav_menu {
  display: none;
}

/*///// スライダー /////*/
.home-mainvisual {
  overflow: hidden;
  position: relative;
  height: auto;
  width: 100%;
}

.home-slider {
  position: relative;
  left: 50%;
  width: 100%;
  margin-left: -490px;
}

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

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

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

/*///// 下層リンク /////*/

.home-lk img {
  max-width: 100%;
}

.home-top {
  overflow: hidden;
  width: 100%;
}

.home-top .home-lk {
  width: 48%;
  float: left;
  margin: 0 4% 20px 0;
}

.home-top .home-lk:nth-of-type(2n) {
  margin-right: 0;
}

.home-top .home-lk h2 {
  font-size: 150%;
  border-left: 10px solid #003163;
  padding-left: 15px;
  font-family: "Sawarabi Gothic";
}

/*--- もっと読むボタン ---*/
.home-more {
  width: 200px;
  text-align: center;
  margin: 20px auto 0;
  overflow: hidden;
}

.home-more a {
  line-height: 46px;
  padding-right: 8px;
  border: 1px solid #ccc;
  width: 100%;
  display: block;
  position: relative;
}

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

.home-more a:hover {
  background: #dde9f5;
}

/*///// サイドエリア /////*/
aside dl {
  margin-bottom: 40px;
}

aside dt {
  color: #fff;
  padding: 10px 20px;
  background: #003163;
}

aside a {
  border-bottom: solid 1px #ccc;
}

a:hover {
  background: #dde9f5;
}

aside li:nth-child(1) a {
  padding: 15px;
}

aside li:nth-child(1) a:before {
  font-family: FontAwesome;
  content: "\f0da";
  margin-right: 8px;
}

aside img {
  height: 46px;
  margin-right: 8px;
}

aside li:last-child dd {
  line-height: 46px;
  font-size: 80%;
  letter-spacing: -0.05em;
}

/*///// おすすめリンク /////*/

.home-lbk h2 {
  background: none;
  padding: 10px 20px;
  margin: 0 auto 15px;
  background: #7ba4cd;
  color: #fff;
}

.home-lbk h2:before {
  font-family: FontAwesome;
  content: "\f0a4";
  margin-right: 8px;
}

.home-lbk h3 {
  border: none;
  padding: 0;
  margin: 0 0 5px;
  background: none;
}

.home-lbk h3 a {
  width: 100%;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 70px;
  padding-left: 15px;
  border-left: solid 4px #003163;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  position: relative;
}

.home-lbk h3 a:after {
  position: absolute;
  right: 30px;
  font-family: FontAwesome;
  content: "\f0da";
}

.home-lbk h3 a:hover {
  background: #dde9f5;
}

.home-lbk a {
  text-align: left;
}

.lbk_in {
  margin: 0 auto 3.5%;
}

.lbk_in:last-child {
  margin: 0;
}

/*///// フッターエリア /////*/

footer {
  max-width: 1500px;
  margin: 0 auto;
  border-top: solid 5px #ccc;
  background: #fff;
}

footer dl {
  width: 100%;
  overflow: hidden;
  margin: 2px 0;
}

footer dt {
  float: left;
  width: 250px;
  border-left: solid 2px #fff;
  border-right: solid 2px #fff;
  line-height: 46px;
  text-align: center;
  color: #003163;
  background: #ececec;
}

footer dd {
  width: 200px;
  line-height: 46px;
  float: left;
}

footer a {
  font-size: 85%;
  padding-left: 15px;
  position: relative;
}

footer a:after {
  position: absolute;
  right: 10px;
  font-family: FontAwesome;
  content: "\f0da";
}

/*--- コピーライト ---*/
.home-fc {
  padding: 5px;
  color: #fff;
  font-size: 70%;
  text-align: center;
  background: #001933;
}

/* /////////under */

.home-nf {
  font-size: 280%;
  color: #003163;
  font-family: "Sawarabi Mincho";
}

/*///// パンくず /////*/

.home-pan {
  margin: 20px 45px 0;
}

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

.home-pan font {
  color: #ccc;
}

/*///// ＳＮＳ /////*/
.sns-ctnbt {
  width: 90%;
  margin: 60px auto 0;
}

.sns-ctnbt dl {
  overflow: hidden;
  background: #001933;
  padding: 0 10px 10px;
  text-align: center;
  border-radius: 8px;
}

.sns-ctnbt dt {
  width: 100%;
  color: #fff;
  line-height: 50px;
}

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

.sns-ctnbt dd a {
  font-weight: bold;
  text-decoration: none;
  background: #fff;
  width: 50px;
  line-height: 50px;
  margin: 0 auto;
  border-radius: 50%;
}

.sns-ctnbt dd a:hover {
  text-decoration: none !important;
}

/* SNSごとの背景色 */
#twitter {
  color: #00acee;
}

#hatena {
  color: #2d4c86;
}

#facebook {
  color: #3b5998;
}

#ggl-plus {
  color: #dd4b39;
}

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

/*///// トップに戻るボタン /////*/
p.home-btn a {
  font-size: 30px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  border-radius: 50%;
  border: solid 1px #001933;
  bottom: 18px;
  right: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.63);
  width: 55px;
  height: 55px;
  color: #001933;
}

/*--------------smp*/
@media screen and (max-width: 723px) {
  .con_wrap {
    flex-direction: column;
  }

  body {
    line-height: 1.9;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
  }

  h1.ttl_h {
    width: 100%;
    margin: 0;
    /* padding-top: 50px; */
    font-size: 100%;
    float: none;
  }

  h2 {
    padding: 9px 5px;
    font-size: 140%;
    line-height: 1.3;
  }

  h3,
  h4 {
    font-size: 125%;
  }

  .home-con {
    padding: 2.5%;
  }

  .home-con,
  main,
  aside,
  .home-menu,
  .home_trs img,
  article img {
    width: 100%;
  }

  article img {
    max-width: 100%;
  }

  article img,
  main,
  .home_trs img {
    float: none;
  }

  aside {
    display: none;
  }

  .home_sia {
    width: 100%;
    float: none;
    padding: 3% 2.8%;
    max-width: none;
  }

  aside dl {
    margin-bottom: 0;
  }

  aside li:last-child dd {
    line-height: 1.9;
    font-size: 100%;
  }

  aside li:nth-child(1) a {
    padding: 7px 15px;
  }

  aside li:nth-child(1) a:before {
    display: none;
  }

  .home-hd {
    width: 100%;
    margin: 0 auto;
  }

  .home-hd.under_p {
    margin: 0;
  }

  .home-title {
    margin: 0 auto 3%;
    width: 100%;
    float: none;
  }

  h1.ttl_h a {
    font-size: 165%;
    text-align: center;
  }

  .home-hd p.home-cp {
    margin: 0 0 0.6em;
    text-align: center;
  }

  .home-hd.under_p p.home-cp {
    margin: 0 0 0.3em;
  }

  /* slider */
  .home-mainvisual {
    width: 100%;
    height: auto;
    float: none;
    margin: 0 auto;
  }

  .home-slider {
    position: relative;
    left: 0;
    width: 100%;
    margin-left: 0;
  }

  .home-lk img {
    float: none;
    display: block;
    margin: 0 auto 2%;
  }

  .home-top {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
  }

  .home-top .home-lk {
    width: 100%;
    float: none;
    margin: 0 auto 10%;
  }

  .home-more {
    margin: 4% auto 0;
  }

  .home-more a {
    display: block;
    margin: 0 auto;
    float: none;
    width: 90%;
  }

  .home-lbk h2 {
    padding: 8px;
    margin: 0 auto 4%;
  }

  .home-lbk h3 a {
    padding: 8px 10px;
  }

  .lbk_in {
    margin: 0 auto 3%;
  }

  .lbk_in:last-child {
    margin: 0;
  }

  footer {
    width: 100%;
    padding: 0 0 10px;
  }

  footer dt,
  footer dd {
    width: 100%;
    float: none;
    line-height: 3em;
    border: solid 2px #fff;
    box-sizing: border-box;
  }

  .home-pan {
    margin: 0;
  }

  .home-pan a {
    padding: 0;
  }

  /* /////////sns */
  .sns-ctnbt {
    width: 100%;
    margin: 2em auto;
  }

  .home_sib {
    width: 100%;
    float: none;
  }

  .sns-ctnbt dt {
    width: 100%;
    float: none;
  }

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

  /*/////////トップに戻るボタン*/
  /*テキストの場合*/
  p.home-btn a {
    font-size: 30px;
    line-height: 40px;
    bottom: 0;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  /* /////////////////////slicknav /////////////////////*/
  #home-nv {
    display: none;
  }

  .sli {}

  /*デフォルトナビアイコン*/
  .slicknav_menu .slicknav_icon {
    display: none;
  }

  /*ナビの下のボーダー*/
  .slicknav_nav {
    border-bottom: none;
  }

  /*トップ背景色*/
  .slicknav_btn {
    float: none;
    background: #3f3f3f;
    border-radius: 0;
  }

  /*メニューの背景色（hover時の色）*/
  .slicknav_menu {
    width: 100%;
    display: block;
    padding: 0;
    background: #dde9f5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }

  /*下層文字色*/
  .slicknav_menu a {
    margin: 0;
    color: #3f3f3f;
    overflow: hidden;
    padding: 0;
  }

  /*下層メニュー内容部分背景色*/
  .slicknav_nav a {
    padding: 7px 15px;
    border: none;
    background: #fff;
  }

  /*下層メニュー内容部分hover文字色r*/
  .slicknav_nav a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: none;
    opacity: 1;
    color: #3f3f3f;
  }

  /*ナビ内メニュータイトルのli・pddingで高さ*/
  .slicknav_nav .slicknav_row {
    margin: 0;
    padding: 8px;
  }

  /*ナビ内メニュータイトルのli:hover時*/
  .slicknav_nav .slicknav_row:hover {
    color: #3f3f3f;
    border-radius: 0;
    background: none;
  }

  /*ナビタイトルテキスト（マーク）*/
  .slicknav_menu .slicknav_menutxt {
    float: right;
    text-shadow: none;
    line-height: 1.5em;
    font-size: 90%;
    /*高さ調節*/
    padding: 10px;
    /*高さ調節ここでも*/
    color: #fff;
  }

  .slicknav_menu img {
    display: none;
  }

  .slicknav_menu .home_trs a {
    border: none;
  }

  /*ナビ内矢印*/
  .slicknav_menu>ul>li>a>p {
    display: inline-block;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  a.slicknav_btn.slicknav_collapsed {
    width: 100%;
    display: block;
  }

  ul.slicknav_nav li:last-child {
    border-bottom: none;
  }

  .slicknav_menu .slicknav_no-text {
    float: right;
    margin: 15px;
  }

  .sticky {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
  }

  /* /////////////↑slicknav設定ここまで↑ //////////////*/
}

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

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

/*パンくず*/