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

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

body {
  font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3",
    Verdana, Geneva, Arial, sans-serif;
  color: #333;
  font-size: 12px;
  background-size: 100%;
}

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 {
  font-family: "Noto Sans Japanese";
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #f3dc2c 0%) repeat scroll 0 0;
}

em {
  font-family: "Noto Sans Japanese";
  font-style: italic;
  color: #eba811;
}

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

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

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

table th {
  width: 150px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border: solid 1px #b1cec3;
  background: #cfede3;
  font-weight: normal;
}

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

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;
  border: solid 1px #ddd;
  background: #38b48a;
  color: #fff;
  font-family: "Noto Sans Japanese";
  font-size: 110%;
  position: relative;
  z-index: 1;
}

blockquote:before,
blockquote:after {
  font-size: 30px;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.3);
  font-family: FontAwesome;
  z-index: -1;
}

blockquote:before {
  content: "\f10d";
  position: absolute;
  left: 20px;
  top: 10px;
}

blockquote:after {
  content: "\f10e";
  position: absolute;
  right: 20px;
  bottom: 10px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  border: solid 4px #38b48a;
  box-sizing: border-box;
}

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

article ul li:before {
  font-family: FontAwesome;
  content: "\f005";
  color: #f3dc2c;
  margin-right: 8px;
  font-size: 16px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  box-sizing: border-box;
  counter-reset: number;
  list-style-type: none !important;
  position: relative;
  background: rgba(56, 180, 138, 0.1);
}

article ol li {
  margin: 1em 0;
  padding: 15px 0 15px 65px;

  list-style: none;
  position: relative;
}

article ol li:before {
  font-size: 12px;
  color: #fff;
  background: #38b48a;
  font-weight: bold;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 35px;
  top: 50%;
  border-radius: 50%;

  counter-increment: number;
  content: counter(number);
  text-align: center;
  display: inline-block;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- layout ---*/
#glob-wrap {
  max-width: 980px;
  margin: 0 auto;
  /* overflow: hidden; */
  position: relative;
}

article {
  margin-bottom: 30px;
}

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

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

a:hover {
  color: #38b48a;
}

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

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

h2,
.under h1 {
  padding-top: 15px;
  border-top: solid 5px #2ba477;
  font-size: 180%;
  font-weight: bold;
  line-height: 1;
}

h3,
.under h2 {
  padding: 5px 0 5px 15px;
  border-left: solid 10px #2ba477;
  font-weight: bold;
}

h4,
.under h3 {
  color: #fff;
  background: #38b48a;
  padding: 5px 10px;
  border-radius: 5px;
}

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

h5 {
  font-size: 110%;
  color: #38b48a;
  background: #cfede3;
  padding: 5px 10px;
  border-radius: 5px;
}

h6 {
  font-size: 110%;
  padding: 5px 10px;
  color: #38b48a;
}

/*--- header ---*/
#glob-hd {
  width: 100%;
}

.glob-hdIn {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0;
  background: url(../images/icon.png) no-repeat 10px top;
  background-size: 60px;
}

.glob-hdTtl {
  margin-left: 80px;
  overflow: hidden;
}

/*--- h1*/
h1,
.ttl_h a {
  clear: both;
  font-family: "Noto Sans Japanese";
}

h1 a,
.ttl_h a {
  font-size: 120%;
  font-weight: 700;
  padding-bottom: 5px;
  letter-spacing: -0.1em;
  line-height: 1.3;
}

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

/*--- headCopy*/
.glob-cp {
  font-size: 70%;
}

/*--- headNav ---*/
#glob-hdnv {
  width: 100%;
  position: relative;
  z-index: 999;
  background: #38b48a;
  background: -moz-linear-gradient(top,
      #38b48a 0%,
      #38b48a 50%,
      #2ba477 50%,
      #2ba477 100%);
  background: -webkit-linear-gradient(top,
      #38b48a 0%,
      #38b48a 50%,
      #2ba477 50%,
      #2ba477 100%);
  background: linear-gradient(to bottom,
      #38b48a 0%,
      #38b48a 50%,
      #2ba477 50%,
      #2ba477 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#38b48a', endColorstr='#2ba477', GradientType=0);
}

.glob-nvIn {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  background: #fff;
}

.glob-nvIn li {
  width: 25%;
  float: left;
}

.glob-nvIn li:nth-of-type(1) a {
  border-left: solid 1px #38b48a;
}

.glob-nvIn li a {
  font-weight: bold;
  padding: 15px 0;
  border: solid 1px #38b48a;
  border-left: none;
}

.glob-nvIn li a:hover,
.glob-nvIn li a.current:hover {
  position: relative;
  color: #fff;
  background: #2ba477;
}

.glob-nvIn li a:hover:after,
.glob-nvIn li a.current:hover:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 150px solid transparent;
  border-top: 50px solid rgba(255, 255, 255, 0.15);
  content: "";
}

.slicknav_menu {
  display: none;
}

/*--- aside ---*/
#glob-side {
  /*min-*/
  width: 19.5%;
  float: left;
  text-align: center;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dl {
  border: solid 1px #ccc;
  border-bottom: none;
  margin-bottom: 20px;
}

aside dt {
  font-size: 100%;
  font-weight: bold;
  background: #38b48a;
  color: #fff;
  position: relative;
  padding: 30px 0;
  text-align: center;
}

aside dt:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-top: 50px solid rgba(255, 255, 255, 0.2);
  content: "";
}

aside dd {
  font-size: 90%;
  border-bottom: solid 1px #ccc;
  margin: 0 auto;
}

aside dd a {
  position: relative;
}

aside .side_type1 dd a:after,
aside .side_type2 dd a p:after {
  font-family: FontAwesome;
  content: "\f061";
  color: #38b48a;
  font-weight: bold;
  position: absolute;
  right: 15px;
}

aside dd a:hover {
  background: #fffdf0;
}

/*--- 上block*/
aside .side_type1 dd a {
  display: block;
  padding: 19px 14px;
  text-decoration: none;
}

/*--- 下block*/
aside .side_type2 dd {
  width: 100%;
  box-sizing: border-box;
  line-height: 50px;
}

aside .side_type2 dd p {
  display: inline-block;
}

aside .side_type2 dd img {
  width: 90%;
  margin: 5% auto 0;
}

/*--- mainSlider ---*/
#glob-mainvisual {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-bottom: solid 15px #2ba477;
  position: relative;
  overflow: hidden;
}

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

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

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

/*--- mainArea ---*/
#glob-main {
  margin: 0 auto;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

.main_in {
  max-width: 78%;
  float: right;
}

/*--- 下層リンク ---*/
.glob-sec {
  margin: 50px auto;
  overflow: hidden;
  box-sizing: border-box;
  border: solid 1px #eee;
  border-bottom: solid 5px #eee;
  border-top: 0;
  display: flex;
  justify-content: space-between;
}

.glob-lk h2 {
  width: 99.6%;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 130%;
  border-top: none;
  background: #38b48a;
}

.glob-lk h2:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-top: 50px solid rgba(255, 255, 255, 0.2);
  content: "";
}

.glob-lk {
  width: 33.33%;
  float: left;
  position: relative;
  border-left: solid 1px #eee;
  box-sizing: border-box;
}

.glob-sec .glob-lk:nth-child(1) {
  border-left: 0;
}

.glob-lk p {
  width: 90%;
  line-height: 1.8;
  margin: 0 auto;
}

/*--- readMore*/
.glob-more {
  width: 190px;
  margin: 0 auto;
  text-align: center;
}

.glob-more a:before {
  font-family: FontAwesome;
  content: "\f061";
  position: absolute;
  right: 15px;
}

.glob-more a {
  line-height: 18px;
  margin: 15px auto;
  padding: 10px 0;
  position: relative;
  border-radius: 5px;
  background: #f3dc2c;
  color: #fff;
  border-bottom: solid 4px #eba811;
}

.glob-more a:hover {
  margin: 19px auto 11px;
  background: #f3b62c;
  color: #fff;
  border-bottom: 0;
}

/*--- recommend ---*/
#glob-rc {
  overflow: hidden;
  padding: 15px 0;
  border: solid 3px #f3dc2c;
  background: #f7f3d2;
  border-radius: 5px;
}

#glob-rc h2 {
  padding: 10px 0;
  border-top: 0;
  color: #eba811;
  text-align: center;
}

/*--- h3_link*/
.glob-rcIn {
  width: 50%;
  float: left;
  margin: 0 0 10px;
}

.glob-rcIn h3 {
  width: 96%;
  display: block;
  font-size: 15px;
  /* text-align: center; */
  text-decoration: none;
  border-left: 0;
  background: none;
}

.glob-rcIn h3 a {
  padding: 10px 30px 10px 16px;
  text-align: left;
  border-radius: 8px;
  position: relative;
  background: #38b48a;
  color: #fff;
  border-bottom: solid 3px #108b5d;
}

.glob-rcIn h3 a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 150px solid transparent;
  border-top: 50px solid rgba(255, 255, 255, 0.15);
  content: "";
}

.glob-rcIn h3 a:before {
  font-family: FontAwesome;
  content: "\f061";
  position: absolute;
  right: 15px;
}

.glob-rcIn h3 a:hover {
  background: #38b48a;
  color: #fff;
  border-bottom: none;
  margin-top: 3px;
}

.glob-rcIn p {
  width: 90%;
  margin: 3px auto 0;
  /* text-align: right; */
  font-size: 85%;
}

/*--- footer ---*/
#glob-ft {
  width: 100%;
  background: #38b48a;
  color: #fff;
}

footer ul {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}

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

footer dt {
  width: 130px;
  font-weight: bold;
  padding: 10px;
  position: relative;
  font-size: 120%;
  display: inline-block;
}

footer dd {
  font-size: 90%;
  display: inline-block;
}

footer dd a {
  padding: 10px;
  color: #fff;
}

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

footer dd a:before {
  font-family: FontAwesome;
  content: "\f061";
  margin-right: 5px;
}

/*--- footCopy*/
.glob-fc {
  width: 90%;
  padding: 20px 0;
  margin: 0 auto;
  font-size: 75%;
  text-align: center;
}

/*--- 404*/
.glob-nf {
  margin-top: 20px;
}

.glob-nf b {
  font-family: "Noto Sans Japanese";
  font-size: 260%;
  color: #38b48a;
}

/*--- pan*/
.glob-pan {
  width: 950px;
  margin: 15px auto;
}

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

/*--- SNS ---*/
#glob-sns {
  position: absolute;
  top: 8px;
  right: 10px;
  overflow: hidden;
}

.glob-snsIn dd {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: inline-block;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}

.glob-snsIn dd a {
  margin: 0 auto;
  line-height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #333;
  position: relative;
}

.glob-snsIn dd a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 30px solid transparent;
  border-top: 30px solid rgba(255, 255, 255, 0.15);
  content: "";
}

.glob-snsIn dd a:hover {
  background: #f3dc2c;
}

/*--- topPage*/
.glob-btn a {
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;

  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;

  font-size: 9px;
  background: #38b48a;
}

.glob-btn a:before {
  display: block;
  font-family: FontAwesome;
  content: "\f106";
  font-size: 46px;
  color: #fff;
}

.glob-btn a:hover {
  background: #38b48a;
}

@charset "utf-8";

@media screen and (max-width: 724px) {
  * {
    line-height: 1.7;
  }

  /*--- layout ---*/
  #glob-wrap {
    width: 100%;
    margin: 0 auto 30px;
    background: none;
    box-shadow: none;
  }

  /*--- title ---*/
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
    font-size: 125%;
    line-height: 1.3;
  }

  h1 a,
  .glob-lower h1 a {
    font-size: 120%;
    line-height: 1.2;

    width: 96%;
    margin: 0 auto;
    padding: 0;
  }

  .glob-cp,
  .glob-lower .glob-cp {
    width: 96%;
    margin: 0 auto;
    padding: 5px 0;
    line-height: 1.2;
  }

  /*--- header ---*/
  .glob-hdIn {
    width: 100%;
    background: none;
  }

  .glob-hdTtl,
  .glob-lower .glob-hdTtl {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
  }

  /*--- mainSlider ---*/
  #glob-mainvisual {
    width: 96%;
    margin: 10px auto;
    position: static;
    overflow: hidden;
    border-bottom: 0;
  }

  #glob-mainvisual li img {
    margin: 0;
  }

  .glob-sli {
    left: 0;
    margin-left: 0;
  }

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

  /*--- mainArea ---*/
  #glob-main,
  .main_in {
    width: 96%;
    margin: 0 2%;
    float: none;
  }

  .main_in {
    max-width: none;
  }

  /*--- 下層リンク ---*/
  .glob-sec {
    width: 96%;
    margin: 0 auto 3%;
    border: 0;
  }

  .glob-lk {
    width: 100%;
    float: none;
    border: 0;
    background: #eee;
    padding-bottom: 5px;
  }

  .glob-lk>div {
    width: 96%;
    background: #fff;
    margin: 0 auto;
    padding-bottom: 5px;
    float: none;
  }

  .glob-lk img {
    width: 96%;
    margin: 2%;
    border: none;
    float: none;
  }

  /*--- readMore*/
  .glob-more {
    width: 90%;
    margin: 1em auto;
    text-align: center;
    position: static;
  }

  .glob-more a {
    line-height: 3em;
  }

  /*--- recommend ---*/
  #glob-rc {
    width: 100%;
  }

  /*--- h3_link*/
  .glob-rcIn {
    width: 96%;
    float: none;
    margin: 0 auto;
  }

  /*--- footer ---*/
  #glob-ft {
    width: 100%;
  }

  footer ul {
    width: 94%;
    margin: 0 auto;
  }

  footer ul li {
    width: 100%;
    margin-right: 0;
    float: none;
  }

  footer dl {
    padding: 0;
  }

  footer dt,
  footer dd {
    display: block;
  }

  footer dd a {
    padding: 12px 0;
  }

  /*--- footer copy*/
  .glob-fc {
    width: 96%;
    margin: 0 auto;
    text-align: center;
  }

  /*--- pan*/
  .glob-pan {
    width: 100%;
    margin: 5px auto;
  }

  /*--- SNS ---*/
  #glob-sns {
    width: 100%;
    position: static;
    margin: 15px 0;
  }

  .glob-snsIn dd {
    width: 25%;
    float: left;
    height: auto;
    margin: 0;
  }

  .glob-snsIn dd a {
    width: 86%;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 5px;
    background: #eba811;
  }

  /*--- aside ---*/
  #glob-side {
    width: 100%;
    float: none;
  }

  aside dl,
  aside dd {
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
  }

  aside .side_type1 dt,
  aside .side_type2 dt {
    margin: 0 auto;
    padding: 10px;
    font-weight: bold;
    border-radius: 0;
  }

  aside .side_type2 dt aside .side_type1 dd,
  aside .side_type2 dd {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 90%;
    background: none;
  }

  aside .side_type1 dd a,
  aside .side_type2 dd a {
    padding: 10px;
    margin: 0;
    font-size: 100%;
    text-align: center;
    line-height: 30px;
  }

  aside .side_type2 dd p {
    background: none;
  }

  /*--- slicknav ---*/
  #glob-hdnv,
  #glob-side {
    display: none;
  }

  .slicknav_menu .slicknav_icon {
    display: none;
  }

  .slicknav_nav {
    border-bottom: none;
  }

  .slicknav_btn {
    float: none;
    background: #006f49;
    /*--- bar背景*/
    border-radius: 0;
  }

  .slicknav_menu {
    width: 100%;
    display: block;
    padding: 0;
    background: #fff;
    /*--- dl背景*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }

  .slicknav_menu a {
    margin: 0;
    color: #38b48a;
    /*--- dd文字*/
    overflow: hidden;
    padding: 0;
  }

  .slicknav_nav a {
    padding: 7px 15px;
    border: none;
    background: none;
    /*--- dd背景*/
  }

  .slicknav_nav a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: none;
    opacity: 1;
    color: #38b48a;
    /*--- hover文字*/
    background: #fffdf0;
    /*--- hover背景*/
  }

  .slicknav_nav .slicknav_row {
    margin: 0;
    padding: 8px;
  }

  .slicknav_nav .slicknav_row:hover {
    color: #fff;
    border-radius: 0;
    background: none;
  }

  .slicknav_menu .slicknav_menutxt {
    float: right;
    text-shadow: none;
    line-height: 1.5em;
    font-size: 90%;
    padding: 10px;
    color: #ffffff;
    /*--- bar文字*/
  }

  .slicknav_menu img {
    display: 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%;
  }
}