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

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

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

body {
  background: #fac014;
  color: #593118;
  font-size: 14px;
  line-height: 1.5em;
  font-family: "Noto Sans Japanese";
}

/*----- ul -----*/
article ul {
  margin: 30px 0;
  background: #fff;
  border-radius: 10px;
}

article ul li {
  margin: 15px 25px;
  font-size: 18px;
  border-radius: 10px;
}

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

/*----- ol -----*/
article ol {
  counter-reset: list;
  list-style-type: none;
  padding: 0px;
  background: #f7f7f7;
  border-radius: 10px;
}

article ol li {
  position: relative;
  line-height: 20px;
  margin: 7px 0 7px 60px;
}

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

article ol li:after {
  content: "";
  position: absolute;
  top: 55%;
  left: -33px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #593118;
  color: #fff;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #fac014;
  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: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 30%;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 2px solid #fac014;
  background: #593118;
  color: #fff;
}

table td {
  padding: 10px;
  vertical-align: top;
  border: 2px solid #fac014;
}

/*----- 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 {
  background: #fed852;
  color: #221e1f;
  padding: 2px 4px;
  font-weight: 600;
}

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

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

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
  background: #fed852;
  padding: 0 4px;
}

address {
  border: solid 2px #fff;
  padding: 0 4px;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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

h2,
.under h1 {
  font-size: 38px;
  text-align: left;
  color: #fff;
  font-weight: 900;
}

h3,
.under h2 {
  font-size: 24px;
  color: #593118;
  font-weight: 700;
}

h4,
.under h3 {
  font-size: 18px;
  background: #593118;
  color: #fac014;
  padding: 10px;
  border-radius: 5px;
}

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

h5 {
  font-size: 15px;
  background: #221e1f;
  color: #fac014;
  padding: 5px 10px;
  border-radius: 5px;
}

h6 {
  font-size: 15px;
  background: #fff;
  color: #fac014;
  padding: 5px 10px;
  border-radius: 5px;
}

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

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

a:hover {
  color: #fac014;
}

/*■■■■■ top page　■■■■■*/
/*----- header -----*/
#head {
  width: 100%;
  position: relative;
}

.head-title a {
  width: 968px;
  text-align: center;
  margin: 10px auto 0;
  font-size: 30px;
  font-weight: 800;
  font-style: italic;
  line-height: 105%;
  color: #221e1f;
}

.head-title a:hover {
  color: #593118;
}

.head-copy {
  width: 968px;
  text-align: center;
  margin: 5px auto 10px;
  font-weight: 800;
  font-style: italic;
  color: #221e1f;
}

/*index*/
.iPage {
  width: 100%;
  padding: 20px;
  position: absolute;
  top: 200px;
  left: 20px;
  z-index: 99;
}

.iPage .head-title a {
  max-width: 1100px;
  text-align: left;
  margin: 0 auto;
  font-size: 62px;
  font-weight: 800;
  font-style: italic;
  line-height: 105%;
  color: #221e1f;
  transform: rotate(-8deg);
}

.iPage .head-title a:hover {
  color: #593118;
}

.iPage .head-copy {
  max-width: 1060px;
  text-align: left;
  margin: 5px auto;
  font-weight: 800;
  font-style: italic;
  color: #221e1f;
  transform: rotate(-8deg);
}

/*----- nav -----*/
#head-topNav {
  width: 100%;
  margin-bottom: 30px;
  background: #fff;
}

#head-topNav ul {
  width: 768px;
  margin: 0 auto;
  font-size: 14px;
}

#head-topNav li {
  width: 25%;
  float: left;
  text-align: center;
}

#head-topNav li a {
  padding: 20px 0;
  color: #593118;
  font-weight: bold;
  border-left: solid 2px #fac014;
}

#head-topNav li:nth-last-child(1) a {
  border-right: solid 2px #fac014;
}

#head-topNav li a:hover {
  color: #fff;
  background: #fac014;
}

.slicknav_menu {
  display: none;
}

/*----- slider -----*/
#mainvisual-frame {
  max-width: 768px;
  margin: 0 auto 30px;
  position: relative;
}

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

/*----- main -----*/
main {
  max-width: 980px;
  /*768px*/
  margin: 0 auto;
  /* overflow: hidden; */
}

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

main article {
  margin-bottom: 40px;
}

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

/*----- 下層リンク -----*/
#R-frame {
  max-width: 70%;
  /*520px*/
  float: right;
}

@media (max-width: 731px) {
  #R-frame {
    max-width: inherit;
  }
}

.news-sec {
  position: relative;
  width: 100%;

}

.news-sec>div {
  width: 55%;
  float: right;
}

.news-sec h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.news-sec img {
  float: left;
  width: 40%;
  margin-right: 20px;
}

/*----- もっと読む -----*/
.tuduki-banner {
  text-align: center;
  clear: both;
  width: 100%;
  margin-top: 20px;
}

.tuduki-banner a {
  padding: 5px 15px;
  color: #fac014;
  font-size: 13px;
  background: #593118;
  border-radius: 5px;
  position: relative;
}

.tuduki-banner a:after {
  font-family: FontAwesome;
  content: "\f061";
  position: absolute;
  top: 5px;
  right: 20px;
}

.tuduki-banner a:hover {
  background: #fff;
}

/*----- おすすめ -----*/
.recommend-sec {
  /* overflow: hidden; */
  margin: 20px 0 50px;
  border: solid 5px #fff;
  padding: 20px;
}

.recommend-sec h2 {
  text-align: center;
}

.recommend-sec h3 {
  width: 48%;
  float: left;
}

.recommend-sec h3 span {
  display: inline-block;
  width: 96%;
  margin: 0 2%;
  font-size: 12px;
  text-align: right;
  color: #fff;
}

.recommend-sec h3 a {
  width: 86%;
  margin: 0 2%;
  display: block;
  color: #593118;
  font-weight: 500;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.recommend-sec h3 a:before {
  font-family: FontAwesome;
  content: "\f0c6";
  margin: 0 10px;
}

.recommend-sec h3 a:hover {
  background: #593118;
}

/*----- aside -----*/
#side-frame {
  /*min-*/
  width: 22%;
  /*180px*/
  float: left;
  margin: 0;
  position: sticky;
  top: 0;
  height: fit-content;
}

#side-frame ul {
  overflow: hidden;
  background: #fac014;
}

#side-frame li {
  margin-bottom: 40px;
}

#side-frame dt {
  width: 180px;
  height: 50px;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

#side-frame dd a {
  color: #593118;
  padding: 15px 0;
  text-align: center;
  background: #fff;
  border-bottom: solid 2px #fac014;
}

#side-frame dd:nth-child(2) a {
  border-radius: 10px 10px 0 0;
}

#side-frame dd:nth-last-child(1) a {
  border-radius: 0 0 10px 10px;
}

#side-frame dd a:hover {
  background: #593118;
}

#side-frame img {
  width: 80%;
  margin: 0 auto 12px;
  display: block;
}

#side-frame dd a:hover img {
  width: 70%;
  margin: 13px auto 12px;
  transition: 0.3s;
}

/*----- footer -----*/
#foot-frame {
  width: 100%;
  background: #fff;
  padding-top: 20px;
}

#foot-frame ul {
  width: 768px;
  margin: 0 auto 30px;
}

#foot-frame dl {
  line-height: 14px;
  font-size: 14px;
  overflow: hidden;
  margin: 10px 0;
}

#foot-frame dt {
  width: 80px;
  color: #fac014;
  font-weight: bold;
  float: left;
  padding: 10px 0;
  margin-right: 10px;
  position: relative;
}

#foot-frame dt:after {
  font-family: FontAwesome;
  content: "\f061";
  position: absolute;
  right: 0;
}

#foot-frame dd {
  float: left;
  padding: 10px 0;
}

#foot-frame dd a:after {
  content: "/";
  margin: 0 8px;
  color: #593118;
}

.foot-copy {
  width: 100%;
  font-size: 70%;
  text-align: center;
  background: #ebebeb;
  color: #999;
}

/*----- PageTOP -----*/
.top-banner {
  width: 50px;
  height: 50px;
  background-color: #593118;
  border-radius: 50%;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000;
}

.top-banner::before {
  content: "";
  display: blcok;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -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 -----*/
.no_ex {
  padding: 1.5em 0.5em;
}

.no_ex b {
  font-size: 46px;
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 900;
}

/*----- pan nav -----*/
#bc-topNav {
  width: 100%;
  margin: 20px 0 30px;
  background: #221e1f;
}

#bc-topNav ul {
  width: 768px;
  margin: 0 auto;
}

#bc-topNav li {
  display: inline-block;
  margin-right: 5px;
  color: #fff;
}

#bc-topNav li a {
  color: #fff;
}

#bc-topNav li a:hover {
  color: #fac014;
}

/*----- SNS -----*/
#sns-frame {
  width: 96%;
  margin-bottom: 40px;
  text-align: center;
  border: solid 4px #fff;
  overflow: hidden;
}

#sns-frame dl {
  width: 96%;
  margin: 0 auto;
}

#sns-frame dt {
  font-size: 38px;
  color: #fff;
  font-weight: 900;
  padding: 15px 0;
}

#sns-frame dd {
  width: 23%;
  margin: 0 1%;
  float: left;
}

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

#sns-frame dd a {
  margin: 15px auto 25px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
  color: #fac014;
  background: #fff;
  border-radius: 8px;
}

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

/*----- SNS背景色 -----*/
#twitter:hover {
  background: #00acee;
}

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

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

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