@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 {
  background: #fff;
  font-size: 13px;
  line-height: 1.8;
  font-family: "Noto Sans Japanese", "sans-serif";
}

/*///// リスト /////*/
article ul {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px;
}
article ul li {
  margin: 1.5em 15px;
  padding: 3px 10px;
  border-left: solid 7px #74bca5;
}
article ol {
  margin: 1.5em 0;
  counter-reset: counter-name;
  border: 3px solid #9ad2c0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
article ol li {
  margin: 0.5em 0;
  padding: 10px 0 10px 55px;
  list-style: none;
  position: relative;
}
article ol li:before {
  counter-increment: counter-name;
  content: counter(counter-name);
  position: absolute;
  left: 20px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  /*以下数字のデザイン変える*/
  display: inline-block;
  font-size: 15px;
  border: solid 1px #74bca5;
  color: #74bca5;
  border-radius: 50%;
  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 {
  width: 100%;
  margin: 30px 0;
  padding: 20px;
  font-size: 20px;
  line-height: 150%;
  position: relative;
  background: #ebf6f2;
  color: #48967d;
  border-radius: 6px;
}
blockquote:before,
blockquote:after {
  content: "“";
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 40px;
}

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

table {
  border-collapse: collapse;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}
table th {
  width: 150px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #74bca5;
  background: #74bca5;
  color: #fff;
}
table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border-top: 1px dotted #74bca5;
  border-bottom: 1px dotted #74bca5;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
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 {
  border-bottom: double 4px #ffca38;
}
em {
  font-style: normal;
  background: #ffca38;
}
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: #606060;
  display: block;
}
a:hover {
  transition: 0.2s;
  color: #48967d;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
  text-align: center;
}
h2,
h3,
h4,
h5,
h6, .under h1 {
  font-size: 140%;
  margin-bottom: 15px;
}
h2, .under h1 {
  font-size: 24px;
  font-weight: 500;
  color: #74bca6;
  padding: 0 25px;
  text-align: center;
  letter-spacing: -0.1em;
}
h2:before,
h2:after, .under h1::before , .under h1::after {
  content: "-------";
}
h2:before, .under h1::before {
  margin-right: 10px;
}
h2:after, .under h1::after {
  margin-left: 10px;
}
h3, .under h2 {
  padding: 15px 5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #9ad2c0;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  min-height: 3em;
}
h4, .under h3 {
  padding: 15px 5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: solid 2px #9ad2c0;
  color: #9ad2c0;
  font-weight: 700;
  font-size: 16px;
}
.under h3 {margin-top: 40px;
  color:#fff;
}

h5 {
  width: 100%;
  font-size: 95%;
  background: #ebf6f2;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 8px;
}
h6 {
  width: 100%;
  font-size: 95%;
  border: 1px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 8px;
}

/*///// 全体 /////*/
.con_wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}
.con_wrap > * {
  color: #2e2e2e;
}
.global_sia {
  width: 100%;
}
.global_sib {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
article {
  margin: 0 auto 30px;
  padding: 2%;
  border: solid 2px #9ad2c0;
  box-sizing: border-box;
  border-radius: 8px;
}
article img {
  max-width: 100%;
  margin-bottom: 15px;
}

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

.global-hd {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
.global-title {
  margin: 15px 20px;
}
/*--- h1 ---*/

.ttl_h a {
  font-size: 120%;
  text-align: right;
  color: #999;
  padding-bottom: 0.2em;
  font-weight: bold;
  letter-spacing: -0.1em;
  line-height: 1.3;
}
.ttl_h a:hover {
  background: none;
  color: #74bca5;
}
/*--- キャッチコピー ---*/
.global-hd p.global-cp {
  text-align: right;
  color: #999;
  font-size: 80%;
}

/*///// ヘッドナビ /////*/

#global-nv {
  width: 100%;
  padding-bottom: 15px;
}
#global-nv > ul {
  width: 100%;
  overflow: hidden;
}
#global-nv li {
  text-align: center;
  float: left;
}
#global-nv li a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 15px 5px;
  line-height: 1em;
  font-weight: bold;
  border-left: 1px solid #ccc;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#global-nv li:nth-last-of-type(1) a {
  border-right: 1px solid #ccc;
}
#global-nv li a:after {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
  background: #74bca5;
}
#global-nv li a:hover {
  cursor: pointer;
  background: none;
}
#global-nv li a:hover:after {
  width: 100%;
  left: 0;
}
.slicknav_menu {
  display: none;
}
/*///// スライダー /////*/

.global-mainvisual {
  width: 100%;
  background: #ecf6f7;
  margin: 0 auto;
}
.bx-wrapper {
  max-width: 960px !important;
  text-align: center;
  margin: 0 auto;
  box-shadow: none;
}
.bx-wrapper .bx-controls-direction a {
  display: none;
}

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

.global-lk img {
  max-width: 100%;
}
.global-top {
  overflow: hidden;
  width: 100%;
  padding: 2% 0 0;
  margin: 0 0 3%;
  background: #bfe2d7;
  border-radius: 8px;
}
.global-top .global-lk {
  width: 30%;
  float: left;
  margin-right: 2%;
  background: #fff;
  border: none;
}
.global-top article {
  margin-bottom: 2%;
}
.global-top article:nth-child(1) {
  margin-left: 3%;
}
.global-top .global-lk h2 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 0;
}
.global-top .global-lk h2:before,
.global-top .global-lk h2:after {
  display: none;
}
/*--- もっと読むボタン ---*/
.global-more {
  max-width: 180px;
  text-align: center;
  margin: 20px auto 0;
  overflow: hidden;
}
.global-more a {
  width: 100%;
  padding-left: 10px;
  border-radius: 8px;
  line-height: 42px;
  background: #74bca5;
  color: #fff;
  display: block;
  position: relative;
}
.global-more a::before {
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  left: 15px;
}
.global-more a:hover {
  background: #48967d;
}

/*///// サイドエリア /////*/
aside {
  width: 100%;
  margin: 10px auto 0;
}
aside dl {
  width: 100%;
  margin: 0 auto 30px;
  overflow: hidden;
  text-align: center;
}
aside dt {
  color: #fff;
  background: #74bca5;
  float: left;
  border-top: solid 1px #9ad2c0;
  border-bottom: solid 1px #9ad2c0;
  border-left: solid 1px #9ad2c0;
  border-radius: 8px 0 0 8px;
}
aside dd {
  float: left;
}
aside a {
  border-top: solid 1px #9ad2c0;
  border-bottom: solid 1px #9ad2c0;
  border-left: solid 1px #9ad2c0;
  background: #fff;
  font-size: 80%;
  font-size: 0.7vw;
}
aside dd a:hover {
  background: #74bca5;
  color: #fff;
}
aside li.global_t dd:nth-last-of-type(1) a {
  border-right: solid 1px #9ad2c0;
  border-radius: 0 8px 8px 0;
}
aside li.global_t a:before {
  font-family: FontAwesome;
  content: "\f138";
  color: #74bca5;
  margin-right: 8px;
}
aside li.global_t a:hover:before {
  color: #fff;
}
aside li.global_t dt,
aside li.global_t dd {
  width: 20%;
  line-height: 100px;
}
aside li.global_t dd {
  line-height: 99px;
}
aside li.global_trs dt {
  width: 22%;
  line-height: 163px;
  border-radius: 8px;
  border: solid 1px #9ad2c0;
  box-sizing: border-box;
}
aside li.global_trs dd {
  width: 26%;
}
aside li.global_trs dd a {
  width: 95%;
  margin-left: 5%;
  border-radius: 8px;
  border: solid 1px #9ad2c0;
  box-sizing: border-box;
}
aside li.global_trs dd a img {
  border-bottom: solid 1px #9ad2c0;
  border-radius: 8px 8px 0 0;
  width: 100%;
}
aside li.global_trs dd {
  line-height: 60px;
}
/*///// おすすめリンク /////*/

.global-lbk {
  overflow: hidden;
}
.global-lbk .lbk_in {
  width: 50%;
  /* height: 80px; */
  float: left;
  margin: 0 auto 3.5%;
}
.global-lbk h3 {
  border: none;
  padding: 0;
  margin: 0 0 5px;
  background: none;
}
.global-lbk h3 a {
  width: 96%;
  margin: 0 auto;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5; /*60px*/
  padding: 10px 10px 10px 35px;
  border: solid 1px #9ad2c0;
  position: relative;
  border-radius: 6px;
  text-align: left;
}
.global-lbk h3 a:before {
  position: absolute;
  left: 10px;
  font-family: FontAwesome;
  content: "\f138";
  color: #9ad2c0;
}
.global-lbk h3 a:hover {
  background: #74bca5;
  color: #fff;
}
.global-lbk h3 a:hover:before {
  color: #fff;
}
.global-lbk p {
  margin-left: 15px;
}

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

footer {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-top: solid 2px #74bca5;
}
footer ul {
  width: 960px;
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
}
footer li {
  width: 30%;
  float: left;
}
footer dl {
  width: 100%;
  overflow: hidden;
  margin: 2px 0;
}
footer dt {
  width: 100%;
  padding-left: 15px;
  line-height: 50px;
  position: relative;
}
footer dt:after {
  position: absolute;
  left: 0;
  font-family: FontAwesome;
  content: "\f10c";
  color: #74bca5;
}
footer dd {
  width: 100%;
  line-height: 40px;
}
footer a {
  font-size: 85%;
  padding-left: 15px;
  position: relative;
}
footer a:after {
  position: absolute;
  left: 0;
  font-family: FontAwesome;
  content: "\f054";
  color: #74bca5;
}
/*--- コピーライト ---*/
.global-fc {
  padding: 20px;
  color: #fff;
  font-size: 70%;
  text-align: center;
  background: #74bca5;
}

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

.global-nf {
  font-size: 280%;
  color: #48967d;
}

/*///// パンくず /////*/
.pan {
  margin: 0 0 20px;
  background: #ebf6f2;
}
.global-pan {
  width: 960px;
  margin: 0 auto;
}
.global-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
}
.global-pan font {
  color: #48967d;
}

/*///// ＳＮＳ /////*/

.sns-ctnbt {
  width: 100%;
  margin: 50px 0;
  background: #ebf6f2;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}
.sns-ctnbt dt {
  font-size: 24px;
  font-weight: 500;
  color: #74bca6;
  padding: 10px 25px;
  text-align: center;
  letter-spacing: -0.1em;
}
.sns-ctnbt dt:before,
.sns-ctnbt dt:after {
  content: "-------";
}
.sns-ctnbt dt:before {
  margin-right: 10px;
}
.sns-ctnbt dt:after {
  margin-left: 10px;
}
.sns-ctnbt dd {
  width: 25%;
  float: left;
}
.sns-ctnbt dd a {
  width: 90%;
  margin: 0 auto 15px;
  padding: 20px 0;
  background: #fff;
  border: solid 1px #74bca5;
  border-radius: 6px;
}
.sns-ctnbt .fa {
  font-weight: bold;
}
.sns-ctnbt dd a:hover {
  padding: 5px 0;
  box-sizing: border-box;
}

/* SNSごとの背景色 */

#twitter {
  color: #00acee;
}
#twitter:hover {
  border: solid 15px #00acee;
}
#hatena {
  color: #2d4c86;
}
#hatena:hover {
  border: solid 15px #2d4c86;
}
#facebook {
  color: #3b5998;
}
#facebook:hover {
  border: solid 15px #3b5998;
}
#ggl-plus {
  color: #dd4b39;
}
#ggl-plus:hover {
  border: solid 15px #dd4b39;
}

/*///// トップに戻るボタン /////*/

p.global-btn a {
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  border-radius: 6px;
  bottom: 18px;
  right: 0;
  z-index: 1;
  background: #74bca5;
  width: 60px;
  height: 60px;
  color: #fff;
}

/*------------- smp*/
@media screen and (max-width: 719px) {
  body {
    line-height: 1.9;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
  }
  .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%;
  }
  .global-con {
    padding: 2.5%;
  }
  .global-con,
  main,
  aside,
  .global-menu,
  .global_trs img,
  article img {
    width: 100%;
  }
  article img {
    max-width: 100%;
  }
  article img,
  main,
  .global_trs img {
    float: none;
  }
  aside {
    display: none;
  }
  .global_sia {
    width: 100%;
    float: none;
    padding: 3% 2.8%;
  }
  aside dl {
    margin-bottom: 0;
  }
  aside li:last-child dd {
    line-height: 1.9;
  }
  aside li:nth-child(1) a {
    padding: 7px 15px;
  }
  aside li:nth-child(1) a:before {
    display: none;
  }
  .global-hd {
    width: 100%;
    margin: 0 auto;
  }
  .global-hd.under_p {
    margin: 0;
  }
  .global-title {
    margin: 0 auto 3%;
    width: 100%;
    float: none;
  }
  .ttl_h a {
    font-size: 165%;
    text-align: center;
  }
  .global-hd p.global-cp {
    margin: 0 0 0.6em;
    text-align: center;
  }
  .global-hd.under_p p.global-cp {
    margin: 0 0 0.3em;
  }
  .global-mainvisual {
    width: 100%;
    float: none;
  }
  .global-lk img {
    float: none;
    display: block;
    margin: 0 auto 2%;
  }
  .global-top {
    overflow: hidden;
    width: 100%;
    margin: 0 auto 4%;
  }
  .global-top .global-lk {
    width: 94%;
    float: none;
    margin: 0 auto 3%;
  }
  .global-more {
    margin: 4% auto 0;
  }
  .global-more a {
    display: block;
    margin: 0 auto;
    float: none;
    width: 90%;
  }
  .global-lbk h2 {
    padding: 8px;
    margin: 0 auto 4%;
  }
  .global-lbk h3 a {
    padding: 8px 30px;
  }
  .global-lbk .lbk_in {
    width: 100%;
    height: auto;
    float: none;
    margin: 0 auto 5%;
  }
  footer {
    width: 100%;
    padding: 0 0 10px;
  }
  footer ul {
    width: 100%;
    padding: 0;
  }
  footer li {
    width: 100%;
    margin: 0 auto;
    float: none;
  }
  footer dt,
  footer dd {
    width: 100%;
    float: none;
    line-height: 3em;
    border: solid 2px #fff;
    box-sizing: border-box;
  }
  footer a {
    font-size: 100%;
    padding: 10px 20px;
    margin: 0;
  }
  footer a:hover {
    color: #fff;
    background: #74bca5;
  }
  footer a:after {
    left: 10px;
  }
  footer a:hover:after {
    color: #fff;
  }
  .global-pan {
    width: 100%;
    margin: 0;
  }
  .global-pan a {
    padding: 0;
  }
  /* /////////sns */
  .sns-ctnbt {
    width: 100%;
    margin: 2em auto;
  }
  .global_sib {
    width: 100%;
    float: none;
  }
  .sns-ctnbt dt {
    width: 100%;
    font-size: 120%;
    float: none;
  }
  .sns-ctnbt dt:before,
  .sns-ctnbt dt:after {
    content: none;
    margin: 0;
  }
  .sns-ctnbt dd {
    width: 50%;
    float: left;
  }

  #twitter:hover,
  #hatena:hover,
  #facebook:hover,
  #ggl-plus:hover {
    border: none;
  }
  /*/////////トップに戻るボタン*/
  /*テキストの場合*/
  p.global-btn a {
    font-size: 30px;
    line-height: 40px;
    bottom: 0;
    right: 15px;
    width: 45px;
    height: 45px;
  }
  /* /////////////////////slicknav /////////////////////*/
  #global-nv {
    display: none;
  }
  aside li.global_t dt,
  aside li.global_t dd,
  aside li.global_trs dt,
  aside li.global_trs dd,
  aside li.global_trs dd a,
  aside li.global_t dd:nth-last-of-type(1) a {
    width: 100%;
    line-height: 1.8em;
    border-radius: 0;
    border: none;
    margin: 0;
  }
  /*デフォルトナビアイコン*/
  .slicknav_menu .slicknav_icon {
    display: none;
  }
  /*ナビの下のボーダー*/
  .slicknav_nav {
    border-bottom: none;
  }
  /*トップ背景色*/
  .slicknav_btn {
    float: none;
    background: #74bca5;
    border-radius: 0;
  }
  /*メニューの背景色（hover時の色）*/
  .slicknav_menu {
    width: 100%;
    display: block;
    padding: 0;
    background: #ebf6f2;
    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 .global_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設定ここまで↑ //////////////*/
}
