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

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

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

body {
  background: url(../images/main_bg.jpg) repeat;
  color: #333;
  font-size: 13px;
  line-height: 1.5em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
}

/*----- ul -----*/
article ul {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;
  border: 4px solid #ebdcd5;
}

article ul li {
  padding: 8px 0;
}

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

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

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

article ol li:before {
  font: 11px/1.6 "arial black", sans-serif;
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 0;
  left: -24px;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #5a1019;
  line-height: 20px;
  font-weight: bold;
  z-index: 1;
}

article ol li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  width: 11px;
  height: 11px;
  color: #5a1019;
  border: solid 2px #5a1019;
  border-radius: 5px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

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

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

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

/*----- 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;
  vertical-align: top;
  border: 1px solid #fff;
  background: #5a1019;
  color: #ceb79d;
  font-weight: bold;
  font-size: 110%;
  text-align: center;
}

table td {
  padding: 10px;
  vertical-align: top;
  color: #5a1019;
  border: 1px solid #5a1019;
  background: #fff8ef;
}

/*----- 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: #5a1019;
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, rgba(198, 0, 24, 0.32) 0%) repeat scroll 0 0;
}

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

em {
  font-style: normal;
  color: #5a1019;
}

del {
  text-decoration: line-through;
}

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

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/*■■■■■ 大枠　■■■■■*/
#wrapper {
  max-width: 1120px;
  margin: -9px auto 0;
  padding: 20px;
  /*20px 80px*/
  background: #fef6ed;
  box-shadow: 1px 2px 10px rgba(100, 100, 100, 0.4);
  z-index: -1;
  display: flex;
  justify-content: space-between;
}

main {
  float: left;
  max-width: 72%;
  /*640px*/
  background: #fff8ef;
}

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

#side-area {
  float: right;
  /*min-*/
  width: 23%;
  /*320px*/
  position: sticky;
  top: 0;
  height: fit-content;
}

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

h2,
.under h1 {
  font-size: 23px;
  color: #490a13;
  padding: 10px 20px;
  border-top: solid 5px #490a13;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 0px 3px 0px rgba(185, 185, 185, 0.58) inset;
  background: #f4e9e1;
}

h3,
.under h2 {
  font-size: 18px;
  font-weight: bold;
  background: #f2e6de;
  border: solid 1px #dbc6c9;
  padding: 10px 15px;
}

h4,
.under h3 {
  font-size: 16px;
  font-weight: bold;
  color: #490a13;
}

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

h5 {
  font-size: 14px;
  font-weight: bold;
  border-left: 5px solid #ebdcd5;
  padding-left: 8px;
}

h6 {
  font-size: 14px;
  padding: 1px 0 0 10px;
}

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

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

a:hover {
  text-decoration: underline;
}

/*■■■■■ top page　■■■■■*/
/*----- header -----*/
#header {
  background: #fff;
  width: 100%;
}

#header-area {
  width: 100%;
  background: url(../images/bg.jpg) repeat #490a13;
}

.header-ttl {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-size: 28px;
  line-height: 1.4em;
  font-family: "HGP行書体", monospace;
}

.header-ttl a {
  color: #fff;
}

.header-ttl a:hover {
  text-decoration: none;
  color: #ebdcd5;
}

.header-copy {
  width: 100%;
  text-align: center;
  color: #fff;
  background: #2a0409;
  padding: 2px;
  font-size: 85%;
}

#header-bar {
  width: 100%;
  box-shadow: 0px 4px 5px -4px rgba(0, 0, 0, 0.46);
  z-index: 99;
}

#header-bar ul {
  max-width: 1120px;
  margin: 0 auto 10px;
  font-size: 16px;
  display: flex;
  justify-content: flex-end;
}

#header-bar li {
  width: 25%;
  font-weight: bold;
}

#header-bar li a {
  flex: 1 1 auto;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  color: #5a1019;
}

.slicknav_menu {
  display: none;
}

/*----- slider -----*/
#mainsli-area {
  max-width: 1260px;
  padding-bottom: 10px;
  margin: 0 auto;
  position: relative;
}

.bx-wrapper {
  max-width: 1260px !important;
  margin: 0;
  border: none;
  box-shadow: none;
}

/*----- main -----*/
main article {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-right: #ebdcd5 1px solid;
  border-left: #ebdcd5 1px solid;
  border-bottom: #ebdcd5 1px solid;
}

main article img {
  margin: 0 auto 15px;
  border: 4px solid #ebdcd5;
}

/*----- 本文 -----*/
.honbun-box {
  width: 100%;
}

.honbun-box>div {
  padding: 0 20px;
}

/*----- 下層リンク -----*/
.under-box>div {
  padding: 0 20px;
}

/*----- もっと読む -----*/
.r_more-btn {
  text-align: center;
}

.r_more-btn a {
  width: 130px;
  margin: 25px auto 10px;
  padding: 2px 2px 2px 12px;
  font-weight: bold;
  background: #fff;
  box-shadow: 0px -3px 8px -3px #bdbdbd inset;
  border-radius: 12px;
  border: 1px solid #wrapperwrapper;
}

.r_more-btn a:hover {
  box-shadow: 0px 3px 8px -3px #bdbdbd inset;
  text-decoration: none;
  background: #f5f5f5;
  padding: 4px 2px 0 12px;
  color: #2c88a0;
}

.r_more-btn a:after {
  font-family: FontAwesome;
  content: "\f061";
  margin-left: 15px;
}

/*----- おすすめ -----*/
.recom-box>div {
  padding: 0 3%;
}

.recom-box h3 {
  padding: 0;
  border: none;
  background: none;
}

.recom-box h3 a {
  background: #5a1019;
  border-radius: 10px;
  display: block;
  color: #fff;
  padding: 10px 15px;
  position: relative;
}

.recom-box h3 a:after {
  font-family: FontAwesome;
  content: "\f061";
  position: absolute;
  right: 10px;
  top: 22%;
}

.recom-box h3 a:hover {
  background: #d8c689;
  text-decoration: none;
}

.recom-box p {
  padding: 0 0 20px;
}

.recom-box a {
  text-align: left;
}

/*----- aside -----*/
#side-area li {
  width: 90%;
  margin-left: 10%;
  padding: 0;
}

#side-area dl {
  margin-bottom: 30px;
  border-right: #ebdcd5 1px solid;
  border-left: #ebdcd5 1px solid;
  border-bottom: #ebdcd5 1px solid;
}

#side-area dt {
  font-size: 15px;
  color: #490a13;
  padding: 10px 20px;
  border-top: solid 5px #490a13;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 0px 3px 0px rgba(185, 185, 185, 0.58) inset;
  background: #f4e9e1;
}

#side-area dt:before {
  font-family: FontAwesome;
  content: "\f0dd";
  margin-right: 10px;
}

#side-area dd {
  padding: 10px 20px;
  border-bottom: solid 0.5px #ebdcd5;
}

#side-area a {
  color: #5a1019;
}

#side-area a:before {
  font-family: FontAwesome;
  content: "\f152";
  margin-right: 5px;
}

#side-area a:hover {
  color: #3eb1d0;
  text-decoration: none;
}

#side-area a img {
  border: 4px solid #ebdcd5;
  width: 100%;
  margin-bottom: 5px;
}

#side-area a:hover img {
  border: 4px solid #fff;
}

/*----- footer -----*/
#footer-area {
  width: 100%;
  background: #4d1211;
}

#footer-area ul {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 0 50px;
  background: #5a1017;
  display: flex;
  justify-content: space-around;
}

#footer-area li {
  width: 40%;
}

#footer-area dl {
  line-height: 3em;
}

#footer-area dt {
  background: #ebe1be;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  color: #5a1017;
  border-radius: 20px;
  margin-bottom: 9px;
}

#footer-area dd {
  margin: 0 20px;
}

#footer-area a {
  color: #fff;
}

#footer-area a:before {
  font-family: FontAwesome;
  content: "\f152";
  margin-right: 5px;
}

.footer-copy {
  width: 100%;
  margin: 0 auto;
  font-size: 80%;
  text-align: left;
  padding: 10px 20px;
  color: #5a1019;
  font-weight: bold;
  background: #fef6ed;
}

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

/*----- 404 -----*/
.no404 {
  border-top: solid 1px #ebdcd5;
  padding: 3em 2em 760px;
}

.no404 b {
  font-size: 46px;
  display: block;
  margin-bottom: 10px;
  color: #5a1019;
}

/*----- pan nav -----*/
#pankuzu-bar {
  margin-bottom: 10px;
}

#pankuzu-bar li {
  display: inline-block;
  margin-right: 5px;
}

/*----- SNS -----*/
#social-area {
  width: 100%;
  margin: 50px 0;
  text-align: center;
}

#social-area dt {
  width: 96%;
  text-align: center;
  display: block;
  font-size: 14px;
  padding: 6px 15px;
  margin: 0 auto 10px;
  background: #ebe1be;
  color: #5a1019;
  border-radius: 15px;
}

#social-area dd {
  width: 24%;
  float: left;
  margin: 0 0.5%;
}

#social-area dd .fa {
  font-weight: bold;
}

#social-area dd a {
  flex: 1 1 auto;
  margin: 10px;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  font-weight: bold;
}

#social-area dd a:hover {
  transition: 0.3s;
  color: #fff;
  text-decoration: none;
}

#social-area dd a#twitter:hover {
  background: #00acee;
}

#social-area dd a#hatena:hover {
  background: #2d4c86;
}

#social-area dd a#facebook:hover {
  background: #3b5998;
}

#social-area dd a#ggl-plus:hover {
  background: #dd4b39;
}

/*----- 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;
}

/*下層などflex内で要素が増える時*/
#wrapper:has(#pankuzu-bar) {
  flex-wrap: wrap;
}

/*パンくずが含まれる時のみ*/
#pankuzu-bar {
  width: 100%;
}

/*パンくず*/