@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;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

body {
  background: #fff200;
  color: #1d1d1d;
  font-size: 13px;
  line-height: 1.6;
  font-family: "Noto Sans Japanese", sans-serif;
}

a {
  color: #1b95e0;
  display: block;
}

a:hover {
  color: #00813b;
  text-decoration: none;
  transition: 0.2s;
}

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

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

h2,
.under h1 {
  position: relative;
  color: #fff200;
  background: #1d1d1d;
  padding: 15px;
  border-radius: 10px;
}

h2:after,
.under h1::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 48%;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-top: 8px solid #1d1d1d;
}

h3,
.under h2 {
  background: #fff;
  border-radius: 30px;
  padding: 15px;
  border: solid 4px #1d1d1d;
}

h4,
.under h3 {
  color: #00813b;
  background: #fff;
  padding: 8px;
}

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

h5 {
  background: #00813b;
  color: #fff;
  font-size: 120%;
  padding: 8px;
}

h6 {
  font-size: 100%;
}

strong {
  background: linear-gradient(transparent 60%, #fff 60%);
  color: #b1220c;
}

article ul {
  padding: 0;
  position: relative;
}

article ul li {
  color: black;
  border-left: solid 8px #00813b;
  background: #f5f5f5;
  margin-bottom: 10px;
  border-radius: 0 15px 15px 0;
  padding: 1em;
}

article ol {
  background: #f5f5f5;
  box-shadow: 0px 0px 0px 10px #f5f5f5;
  border: solid 2px #fff200;
  border-radius: 9px;
  margin: 0 0.5em 30px;
  padding: 1em 3em;
}

article ol li {
  line-height: 1.5;
  padding: 0.5em;
  list-style-type: decimal-leading-zero;
}

blockquote {
  position: relative;
  padding: 10px 15px 10px 50px;
  box-sizing: border-box;
  font-style: italic;
  border: solid 2px #1d1d1d;
  background: #fff;
  color: #1d1d1d;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 15px;
  vertical-align: middle;
  content: "\f10d";
  font-family: FontAwesome;
  color: #00813b;
  font-size: 25px;
  line-height: 1;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #1d1d1d;
  font-size: 0.9em;
}

table {
  width: 96%;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin: 0 auto 20px;
}

table th {
  width: 190px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 3px solid #1d1d1d;
}

table td {
  width: 320px;
  padding: 10px;
  vertical-align: top;
  border: 3px solid #1d1d1d;
}

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: 3px solid #eee;
  margin: 1em 0;
  padding: 1em;
}

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

em {
  font-style: normal;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
/* header */
.headBar {
  width: 100%;
  height: 180px;
  margin: 0;
  transition: top 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../images/bg.png) top repeat-x;
  display: flex;
  justify-content: space-around;
  z-index: 9999;
}

.headBar a {
  color: #00893f;
  font-weight: bold;
}

.headBar-Inner {
  width: 50%;
  padding: 25px 30px 0;
}

.headBar-ttl a {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
}

.headBar-copy {
  font-size: 90%;
}

.headBar-nav {
  width: 40%;
}

.headBar-nav>ul {
  display: flex;
  justify-content: space-around;
  margin: 15px 5px 0 0;
}

#headBar-menu>li {
  position: relative;
  width: 24%;
  height: auto;
  font-size: 1.1vw;
  text-align: center;
}

#headBar-menu>li:before {
  content: "";
  display: block;
  padding-top: 100%;
}

#headBar-menu li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 38% 0 0;
  background: #00893f;
  border-radius: 50%;
  color: #fff200;
}

#headBar-menu li a:hover {
  background: #fff200;
  color: #00893f;
}

#headBar-menu li ul.sub-menu {
  display: none;
  padding: 0;
  z-index: 9999;
}

.slicknav_menu {
  display: none;
}

/* slider */
.mainvisual {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 180px 0 80px;
}

.slider-box {
  position: relative;
  left: 50%;
  width: 2940px;
  margin-left: -1470px;
}

.bx-wrapper {
  position: relative;
  margin: 0 auto;
  border: none;
  border-radius: 10px;
  border: solid 8px #1d1d1d;
  box-shadow: none;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  bottom: 10px;
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: 0 0;
}

.bx-wrapper .bx-prev {
  background: url(../images/lefticon.png) no-repeat 0 0;
  left: 920px;
}

.bx-wrapper .bx-next {
  background: url(../images/righticon.png) no-repeat 0 0;
  right: 920px;
}

/* contents area */
.more-btn {
  text-align: center;
  font-size: 100%;
  font-weight: bold;
  font-family: "Noto Sans Japanese", sans-serif;
}

.more-btn a {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  padding: 40px 0;
  background: #fff200;
  border-radius: 50%;
  color: #00893f;
}

.more-btn a:hover {
  background: #fff;
  color: #00893f;
}

/* main */
#frame {
  max-width: 920px;
  margin: 0 auto 30px;
}

#frame2 {
  max-width: 920px;
  margin: 180px auto 30px;
}

main {
  max-width: 72%;
  /*700px*/
  margin-bottom: 30px;
  float: left;
}

@media (max-width: 703px) {
  main {
    max-width: inherit;
  }
}

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

article {
  margin-bottom: 40px;
}

/* column3 */
.itemBar-col3,
.flex {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.itemBar-col3 article {
  width: 32%;
  border-radius: 10px;
  background: #00893f;
  padding: 2%;
}

.itemBar-col3 article div p {
  color: #fff;
}

/* おすすめリンク */
.linkBar h3 {
  clear: both;
}

.linkBar h3 a {
  display: block;
}

.linkBar.cf h3 i {
  width: 25px;
  float: left;
  margin: 3px 0 0 10px;
}

.linkBar p {
  padding: 0 0 20px;
}

.linkBar a {
  text-align: left;
}

/* aside */
.sideBar-menu {
  float: right;
  /*min-*/
  width: 22%;
  /*170px*/
  text-align: center;
  position: sticky;
  top: 150px;
}

.sideBar-menu li dl {
  margin-bottom: 60px;
  background: #fbf7d1;
  padding: 10px;
  border-radius: 10px;
}

.sideBar-menu li dt {
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 800;
  margin: 10px 0;
  color: #00893f;
  font-size: 140%;
}

.sideBar-menu li dd {
  margin: 15px 0;
}

.sideBar-menu li dd a {
  line-height: 330%;
  background: #fff;
  border-radius: 10px;
}

.sideBar-menu li dd a:hover {
  background: #fff200;
  text-decoration: none;
}

.sideBar-menu img {
  max-width: 90%;
  margin: 10px 5% 0;
  border-radius: 10px;
}

/* .footBar */
.footBar {
  width: 100%;
  position: relative;
  background: #1d1d1d;
}

.footBar ul {
  width: 920px;
  margin: 0 auto;
  display: -webkit-flex;
  /* Safari */
  display: flex;
}

.footBar li {
  width: 30%;
  text-align: center;
  background: #fff200;
  border-radius: 15px;
  padding: 10px 2%;
  margin: 10px;
}

.footBar dl {
  font-size: 12px;
}

.footBar dt {
  font-size: 120%;
  font-weight: 800;
  font-family: "Noto Sans Japanese", sans-serif;
}

.footBar dd {
  color: #999;
  line-height: 300%;
}

.footBar dd a {
  color: #1d1d1d;
  font-weight: bold;
}

.footBar dd a:hover {
  background: #fff;
  border-radius: 20px;
  color: #1b95e0;
  text-decoration: none;
}

.footBar-copy {
  text-align: center;
  padding: 5px 0;
  font-size: 80%;
  font-family: "Noto Sans Japanese", sans-serif;
  color: #fff;
}

.pagetopBar {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1;
}

/* under */
.err404 b {
  font-size: 250%;
  color: #000;
}

/* pan nav */
.panBar {
  height: 16px;
  margin: 0 0 20px;
  display: flex;
  justify-content: flex-start;
}

.panBar li {
  list-style: none;
  font-weight: bold;
  /*太字*/
}

.panBar li:after {
  /* ▶を表示*/
  font-family: FontAwesome;
  content: "\f0da";
  padding: 0 3px;
  color: #00893f;
}

.panBar li:last-child:after {
  content: "";
}

.panBar li a {
  display: inline-block;
  text-decoration: none;
  color: #000;
}

.panBar li:first-child a:before {
  /*家アイコン*/
  font-family: FontAwesome;
  content: "\f015";
  font-weight: normal;
  font-size: 1.1em;
  color: #00893f;
}

.panBar li a:hover {
  text-decoration: underline;
}

/* SNS */
.button-area {
  width: 100%;
  margin: 50px 0;
}

.sns-container {
  display: flex;
  justify-content: space-between;
}

.button-area>div {
  text-align: center;
}

.button-area:after {
  content: "";
  clear: both;
  display: block;
}

.title-fill {
  text-align: center;
  display: block;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 3px 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.button-whole {
  width: 23%;
  box-sizing: border-box;
  margin: 0 0.1%;
}

.button-whole .fa {
  font-weight: bold;
}

.button-link {
  display: block;
  text-align: center;
  color: #fff !important;
  font-size: 14px !important;
  padding: 10px 0 !important;
  box-sizing: border-box;
  text-decoration: none;
}

.button-link:hover {
  text-decoration: none !important;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

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

#hatena {
  background-color: #2d4c86;
}

#facebook {
  background-color: #3b5998;
}

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