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

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

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

body {
  background: #ededed;
  color: #333;
  font-size: 15px;
  line-height: 1.5em;
  font-family: "Rounded Mplus 1c";
}

/*----- ul -----*/
article ul {
  margin: 30px 0;
}

article ul li {
  padding: 10px 20px;
  margin: 5px 0;
  background: #f6f7f4;
  border-radius: 10px;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f184";
  color: #bad430;
  margin-right: 5px;
}

/*----- ol -----*/
article ol {
  counter-reset: list;
  list-style-type: none;
  padding: 0px;
  border: solid 4px #eee;
  border-radius: 15px;
}

article ol li {
  position: relative;
  line-height: 32px;
  margin: 7px 30px 7px 55px;
}

article ol li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 0;
  left: -34px;
  width: 25px;
  height: 25px;
  text-align: center;
  color: #333;
  line-height: 32px;
  font-weight: bold;
  font-size: 16px;
  z-index: 1;
}

article ol li:after {
  content: "";
  position: absolute;
  top: 52%;
  left: -37px;
  width: 30px;
  height: 30px;
  background: #bad430;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*----- blockquote -----*/
blockquote {
  background: #bad430;
  padding: 3em 1em;
  position: relative;
  color: #fff;
  text-align: center;
}

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #eee;
  position: absolute;
}

blockquote:before {
  content: "“";
  left: 10px;
  top: 0;
  line-height: 1em;
}

blockquote:after {
  content: "”";
  right: 10px;
  bottom: 0;
}

/*----- table -----*/
table {
  width: 100%;
  border-collapse: seclapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 30%;
  padding: 10px 0;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  font-weight: bold;
  background-color: #eff7de;
  border: 1px solid #d7dac9;
}

table td {
  border: 1px solid #d7dac9;
  padding: 0 20px;
  font-size: 14px;
  line-height: 36px;
}

/*----- other -----*/
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 {
  color: #e67e22;
  padding: 2px;
  font-weight: bold;
}

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

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

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
  border-bottom: solid 2px #bad430;
  margin-bottom: 3px;
}

adrress {
  background: #eee;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/*■■■■■ 大枠　■■■■■*/
#allContents {
  max-width: 1000px;
  margin: 0 auto;
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap; */
}

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

main {
  width: 100%;
  margin-bottom: 30px;
}

main::after {
  content: "";
  display: block;
  clear: both;
}

#right-cont {
  float: right;
  /*min-*/
  width: 250px;
  position: sticky;
  top: 0;
  height: fit-content;
}

#left-cont {
  float: left;
  max-width: 680px;
}

/*----- 見出し -----*/
h2,
h3,
h4,
h5,
h6,
.under h1 {
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 20px;
}

h2,
.under h1 {
  padding: 0 0 0 16px;
  border-left: 5px solid #b1d135;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h3,
.under h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  background: #bad430;
  padding: 10px 15px;
}

h4,
.under h3 {
  margin: 0 0 30px;
  /* padding: 0 0 10px; */
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

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

h5 {
  margin: 0 0 30px;
  padding: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #2b8508;
}

h6 {
  font-size: 14px;
  font-weight: bold;
  border: solid 1px #bbb;
  padding: 10px 15px;
}

img {
  max-width: 100%;
  font-weight: bold;
}

/*----- リンク -----*/
a {
  color: #333;
  display: block;
}

a:hover {
  color: #bad430;
}

/*■■■■■ top page　■■■■■*/
/*----- header -----*/
#h {
  background: #fff;
  width: 100%;
  border-top: solid 4px #bad430;
}

#h-cont {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.h-tit a {
  width: 100%;
  padding: 20px 0 30px;
  text-align: left;
  line-height: 1.3em;
  font-size: 30px;
  font-weight: 900;
}

.h-tit a:before {
  font-family: FontAwesome;
  content: "\f1bb";
  color: #bad430;
  margin-right: 8px;
}

.h-copy {
  margin: 5px;
  font-size: 90%;
  color: #666;
  text-align: left;
}

/*----- head nav -----*/
#h-gnavi {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #e8e4e3;
  border-bottom: 1px solid #e8e4e3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background: #fbfefa;
}

#h-gnavi ul {
  max-width: 1000px;
  margin: 0 auto;
}

#h-gnavi li {
  width: 24%;
  margin: 10px 0;
  float: left;
  border-left: solid 1px #e8e4e3;
  font-size: 16px;
  font-weight: 500;
}

#h-gnavi li:nth-last-child(1) {
  border-right: solid 1px #e8e4e3;
}

#h-gnavi li a {
  padding: 20px;
  text-align: center;
}

#h-gnavi li a:before {
  font-family: FontAwesome;
  color: #bad430;
  font-size: 40px;
  display: block;
  margin-bottom: 20px;
}

#h-gnavi li:nth-child(1) a:before {
  content: "\f015";
}

#h-gnavi li:nth-child(2) a:before {
  content: "\f118";
}

#h-gnavi li:nth-child(3) a:before {
  content: "\f006";
}

#h-gnavi li:nth-child(4) a:before {
  content: "\f02c";
}

.slicknav_menu {
  display: none;
}

/*----- slider -----*/
.mainvisual {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.bx-wrapper {
  position: relative;
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.mainvisual .bx-viewport li {
  background: #ebebeb;
  padding: 20px 5px;
}

.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 {
  display: none;
}

.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: 1000px;
}

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

/*----- main -----*/
main article {
  margin-bottom: 30px;
  border-top: solid 4px #bad430;
}

main article img {
  margin-bottom: 10px;
}

/*----- 本文 -----*/
.i-block {
  width: auto;
  padding: 10px 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  background: #fff;
}

/*----- 下層リンク -----*/
.l-sec {
  max-width: 1000px;
  margin-left: 10px;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

.l-sec article {
  /* width: 300px; */
  float: left;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  background: #fff;
}

/*----- もっと読む -----*/
.more-bn {
  text-align: center;
  margin-top: 15px;
}

.more-bn a {
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.3);
  background-color: #b1d135;
}

.more-bn a:after {
  font-family: FontAwesome;
  content: "\f0a9";
  margin-left: 10px;
}

.more-bn a:hover {
  background: #e67e22;
  color: #fff;
}

/*----- おすすめ -----*/
.o-block {
  width: 250px;
  margin-left: 10%;
  padding: 8px 0 9px;
  border-top: 1px solid #dfe0dc;
  border-bottom: 1px solid #dfe0dc;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.o-block h2 {
  margin: 5px 10px 0;
  border-left: 5px solid #b1d135;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
}

.o-block h3 {
  background: none;
  width: 84%;
  margin: 0 2%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  /*50px*/
}

.o-block h3 a {
  display: block;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.3);
  color: #221816;
  background-color: #b1d135;
  height: auto;
  line-height: 1.3;
  padding: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 655px) {
  .o-block h3 a {
    width: 100%;
  }
}

.o-block h3 a:hover {
  opacity: 0.8;
}

.o-block h3 a:before {
  font-family: FontAwesome;
  content: "\f14c";
  margin-right: 10px;
}

.o-block span {
  font-size: 11px;
  font-weight: normal;
  color: #666;
  margin: 0;
  padding: 0;
}

.o-block a {
  text-align: left;
}

/*----- aside -----*/
#b-cont li {
  width: 90%;
  margin-left: 10%;
  margin-bottom: 20px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  background: #fff;
}

#b-cont dt {
  padding: 0 0 0 16px;
  margin-bottom: 10px;
  border-left: 5px solid #b1d135;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
}

#b-cont a {
  background: #666;
  padding: 10px;
  margin-bottom: 15px;
  border: solid #666 2px;
  font-size: 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
}

#b-cont a:hover {
  border: dashed #666 2px;
  background: none;
  color: #bad430;
}

#b-cont a img {
  border-radius: 8px;
  margin-bottom: 5px;
}

#b-cont .b-block2 a {
  text-align: center;
}

#b-cont .b-block1 a:before {
  font-family: FontAwesome;
  content: "\f14c";
  margin-right: 10px;
}

#b-cont a {}

/*----- footer -----*/
#f-cont {
  width: 100%;
  background: #4d4243;
  padding: 40px 0;
}

#f-cont ul {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

#f-cont li {
  width: 24%;
  float: left;
}

#f-cont dl {
  width: 94%;
  margin: 0 3%;
}

#f-cont dt {
  color: #fff;
  padding: 0 0 0 16px;
  margin-bottom: 10px;
  border-left: 5px solid #b1d135;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
}

#f-cont dd a {
  margin: 0;
  font-size: 12px;
  line-height: 40px;
  color: #fff;
}

#f-cont a:before {
  font-family: FontAwesome;
  content: "\f14c";
  margin-right: 10px;
}

#f-cont dd a:hover {
  color: #bad430;
}

.f-copy {
  width: 1000px;
  margin: 30px auto 0;
  font-size: 85%;
  font-weight: 400;
  text-align: left;
  color: #999;
}

.top-bn {
  width: 50px;
  height: 50px;
  background-color: #bad430;
  border-radius: 50%;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000;
}

.top-bn::before {
  content: "";
  display: blcok;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 22px;
  left: 19px;
}

/*----- 404 -----*/
.noPage {
  padding: 1.5em 0.5em;
}

.noPage b {
  font-size: 46px;
  display: block;
  margin-bottom: 10px;
  color: #bad430;
}

/*----- pan nav -----*/
#breadcrumbs-gnavi {
  margin: 10px;
}

#breadcrumbs-gnavi li {
  display: inline-block;
  margin-right: 5px;
}

/*----- SNS -----*/
#sns-cont {
  width: 245px;
  margin-left: 10%;
  margin-bottom: 10px;
  padding: 8px 0 9px;
  border-bottom: 1px solid #dfe0dc;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  overflow: hidden;
}

#sns-cont dt {
  width: 100%;
  margin-bottom: 10px;
  background: #666;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
}

#sns-cont dd {
  width: 20%;
  float: left;
  margin: 0 2.5%;
  display: table;
}

#sns-cont dd .fa {
  font-weight: bold;
}

#sns-cont dd a {
  text-align: center;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
  display: table-cell;
  vertical-align: middle;
}

#sns-cont dd a:hover {
  color: #fff;
}

/*----- SNS背景色 -----*/
#twitter {
  border: solid 3px #00acee;
  color: #00acee;
}

#hatena {
  border: solid 3px #2d4c86;
  color: #2d4c86;
}

#facebook {
  border: solid 3px #3b5998;
  color: #3b5998;
}

#ggl-plus {
  border: solid 3px #dd4b39;
  color: #dd4b39;
}

#twitter:hover {
  background: #00acee;
}

#hatena:hover {
  background: #2d4c86;
}

#facebook:hover {
  background: #3b5998;
}

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

@media screen and (max-width: 655px) {
  .flex {
    flex-direction: column;
  }

  /*■■■■■ 大枠　■■■■■*/
  #allContents,
  main,
  #left-cont,
  #right-cont {
    width: 100%;
    float: none;
  }

  /*----- 見出し -----*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
    font-size: 110%;
  }

  .h-tit a {
    width: 96%;
    padding: 0;
    margin: 2%;
    font-size: 110%;
  }

  /*----- ul ol -----*/
  article ul {
    padding: 2%;
  }

  article ol li {
    margin: 7px 0 7px 40px;
  }

  /*■■■■■ top page　■■■■■*/
  /*----- header -----*/
  #h-cont {
    width: 100%;
  }

  /*----- slider -----*/
  #m-cont {
    width: 100%;
    height: auto;
  }

  .mainvisual {
    margin-bottom: 0;
  }

  .bx-wrapper .bx-prev,
  .bx-wrapper .bx-next {
    background: none;
  }

  /*----- 本文 -----*/
  .i-block {
    width: 92%;
    margin: 0 2% 4%;
    padding: 2%;
  }

  /*----- 下層リンク -----*/
  .l-sec {
    width: 96%;
    display: inline-block;
  }

  .l-sec article {
    width: 86%;
    margin: 0 2% 4%;
  }

  .o-block {
    width: 96%;
    margin: 0 2% 4%;
  }

  /*----- footer -----*/
  #f-cont {
    padding: 0;
  }

  #f-cont ul {
    width: 100%;
    padding: 0;
    display: inline-block;
  }

  #f-cont li,
  .f-copy {
    width: 100%;
    text-align: center;
    float: none;
  }

  #f-cont dl {
    width: 96%;
    margin: 0 2%;
    padding: 20px 0;
    display: inline-block;
    line-height: 2em;
  }

  #f-cont dt {
    width: 100%;
    padding: 0;
    font-size: 100%;
    border: none;
  }

  #f-cont dd {
    line-height: 3em;
    font-size: 100%;
    width: 100%;
    float: none;
  }

  /*----- nav -----*/
  #h-gnavi,
  #b-cont {
    display: none;
  }

  .slicknav_menu {
    display: block;
    padding: 0;
    background: #bad430;
    padding: 0.5em 0;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  .slicknav_menu a {
    padding: 0;
    margin: 0 0.5em;
    background: #bad430;
  }

  .slicknav_menu img {
    display: none;
  }

  .slicknav_menu dt {
    padding: 10px;
    font-weight: bold;
    color: #333;
  }

  .slicknav_nav a {
    padding: 10px 15px;
    margin: 0;
    border-radius: 0;
    background: #dfe0dc;
    color: #333;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: #fff;
    color: #bad430;
  }

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

  /*----- SNS -----*/
  #sns-cont {
    width: 96%;
    margin: 2%;
  }
}