@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: url("../images/bg.gif") repeat;
  color: #231414;
  font-size: 14px;
  line-height: 170%;
  font-family: "Noto Sans Japanese";
}

a {
  color: #231414;
  display: block;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

h2,
h3,
.under h2,
h4,
.under h3 {
  font-size: 140%;
  margin: 10px 0;
}

h5,
h6 {
  font-size: 120%;
  margin: 10px 0;
}

h1 {
  text-align: center;
}

/* +下層用 */
h2,
.under h1 {
  border-bottom: solid 3px #231414;
  padding-bottom: 10px;
  text-align: center;
}

.under h1 {
  font-size: 140%;
  margin: 10px 0;
}

h4,
.under h3 {
  background: #fff;
  padding: 5px;
}

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

h5 {
  background: #d6be9a;
  padding: 5px;
}

h6:before {
  content: "● ";
}

strong {
  background: #caa633;
  padding: 3px;
}

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

article ul {
  margin: 20px 0;
  background: #fff;
  padding: 0.5em 1em 0.5em 3em;
  position: relative;
}

article ul li {
  line-height: 1.5;
  padding: 0.5em 0;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f075";
  position: absolute;
  left: 1.4em;
  color: #caa633;
}

article ol {
  background: #f9f2e0;
  counter-reset: counter-name;
  padding: 0.5em 1em 0.5em 2em;
  border: solid 2px #caa633;
}

article ol li {
  margin: 0;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

article ol li:before {
  counter-increment: counter-name;
  content: counter(counter-name) ".";
  color: #caa633;
  position: absolute;
  left: 0;
}

blockquote {
  background: #231414;
  padding: 3em 1em;
  position: relative;
  color: #fff;
}

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

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

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

table {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 12px;
}

table th {
  width: 150px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 2px solid #452727;
  background: #231414;
  color: #caa633;
  text-align: center;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 2px solid #452727;
  background: #fff;
}

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

.aligncentcol2er {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
/* header */
#head-layout {
  background: url("../images/top_bg.png") repeat-x top;
}

section {
  width: 100%;
  margin: 0;
  padding: 0 0 10px;
}

#head_layoutInner {
  max-width: 940px;
  margin: 0 auto;
  background: url("../images/site_icon.png") center 125px no-repeat;
}

#head_layoutInner .hp-ttl a {
  font-size: 30px;
  padding-top: 50px;
}

#head_layoutInner .hp-ttl2 a {
  font-size: 22px;
  padding-top: 50px;
}

#head_layoutInner p.head-copy {
  text-align: center;
  padding: 5px 0;
}

.head-nav {
  max-width: 900px;
  margin: 105px auto 20px;
}

.head-nav>ul {
  display: flex;
  justify-content: space-around;
}

.head-nav ul>li {
  display: block;
  /* width: 200px; */
  font-weight: bold;
  text-align: center;
}

.button {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  position: relative;
  z-index: 2;
  border-top: 3px solid #231414;
  color: #231414;
  line-height: 50px;
  overflow: hidden;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button:hover {
  color: #d6be9a;
}

.button::after {
  top: -100%;
  width: 100%;
  height: 100%;
}

.button:hover::after {
  top: 0;
  background-color: #231414;
}

.slicknav_menu {
  display: none;
}

/* slider */
.bx-wrapper {
  margin: 0 auto 30px;
  border: none;
  box-shadow: none;
}

/* contents area */
#outline {
  max-width: 880px;
  margin: 0 auto;
}

/* 2column */
.layout-two-column {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 25px;
}

.layout-two-column article {
  width: 420px;
  border: solid 6px #231414;
  padding: 30px;
  text-align: center;
}

.layout-two-column article img {
  width: 100%;
  margin: 0;
}

.layout-two-column article p {
  text-align: left;
}

.readMore {
  display: inline-block;
  position: relative;
  padding: 0.5em 4em;
  margin-top: 30px;
  text-decoration: none;
  transition: 0.4s;
}

.readMore:before,
.readMore:after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}

.readMore:before {
  border-left: solid 2px #231414;
  border-top: solid 2px #231414;
  border-bottom: solid 2px #231414;
  left: 0;
}

.readMore:after {
  content: "";
  border-top: solid 2px #231414;
  border-right: solid 2px #231414;
  border-bottom: solid 2px #231414;
  right: 0;
}

/* main */
main {
  float: left;
  max-width: 620px;
  margin: 0 0 100px;
  padding: 0 30px;
  border: solid 6px #231414;
  background-image: linear-gradient(-45deg,
      #dbc793 25%,
      #eee4cc 25%,
      #eee4cc 50%,
      #dbc793 50%,
      #dbc793 75%,
      #eee4cc 75%,
      #eee4cc);
  /* 幅8px、高さ8pxで背景画像のサイズを指定 */
  background-size: 8px 8px;
}

.layout-three-column {
  background: #fff;
  padding: 20px;
  text-align: right;
  border: solid 2px #d6be9a;
}

.layout-three-column img {
  float: left;
  max-width: 220px;
  margin-right: 10px;
}

.layout-three-column p {
  text-align: left;
}

main section {
  margin: 25px 0;
}

/* おすすめリンク */
.link-column p {
  padding: 0 0 20px;
}

.link-column a {
  text-align: left;
}

.link-column h3 a {
  position: relative;
  padding: 0.25em 0.5em;
  text-decoration: none;
  border-bottom: solid 3px #fff;
  border-left: solid 3px #fff;
  transition: 0.3s;
}

.link-column h3 a::after {
  content: ">";
  margin-left: 10px;
}

.link-column h3 a:hover {
  padding-left: 0.7em;
  padding-right: 0.3em;
}

/* #sideMenu-layout */
#sideMenu-layout {
  float: right;
  /*min-*/
  width: 220px;
  text-align: center;
  position: sticky;
  top: 0;
}

#sideMenu-layout li {
  background: #231414;
}

#sideMenu-layout li dl {
  margin-bottom: 20px;
}

#sideMenu-layout li dt {
  display: inline-block;
  position: relative;
  padding: 4px 30px;
  margin: 20px 0;
  text-decoration: none;
  transition: 0.4s;
  color: #caa633;
}

#sideMenu-layout li dt:before,
#sideMenu-layout li dt:after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}

#sideMenu-layout li dt:before {
  border-left: solid 2px #caa633;
  border-top: solid 2px #caa633;
  border-bottom: solid 2px #caa633;
  left: 0;
}

#sideMenu-layout li dt:after {
  content: "";
  border-top: solid 2px #caa633;
  border-right: solid 2px #caa633;
  border-bottom: solid 2px #caa633;
  right: 0;
}

#sideMenu-layout li dd a {
  display: inline;
  line-height: 340%;
}

#sideMenu-layout li:nth-child(1) dd:before {
  content: "> ";
  color: #caa633;
}

#sideMenu-layout li dd {
  border-bottom: dashed #d6be9a 1px;
}

#sideMenu-layout li a {
  color: #caa633;
}

#sideMenu-layout img {
  max-width: 90%;
  margin: 10px 5% 0;
}

#sideMenu-layout a img {
  border: 3px solid #fff;
}

#sideMenu-layout a:hover img {
  border: 3px solid #caa633;
}

/* .footer-layout */
.footer-layout {
  width: 100%;
  background: #231414;
  color: #caa633;
}

.footer-layout a {
  color: #caa633;
}

.footer-layout ul {
  width: 800px;
  margin: 0 auto;
}

.footer-layout dl {
  font-size: 12px;
  display: -webkit-flex;
  /* Safari */
  display: flex;
}

.footer-layout dt {
  line-height: 350%;
  width: 100px;
  text-align: right;
}

.footer-layout dt:after {
  content: ":";
  padding: 0 10px;
}

.footer-layout dd {
  line-height: 350%;
}

.footer-layout dd a:after {
  content: "|";
  padding: 0 10px;
}

.footer-copy {
  text-align: center;
  padding: 5px 0;
  font-size: 70%;
  color: #d6be9a;
  background: #0f0707;
}

.page-btn {
  width: 940px;
  margin: 0 auto;
  text-align: right;
}

/* under */
.n-found b {
  font-size: 200%;
}

.n-found {
  height: 800px;
  padding-top: 20px;
}

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

.pankuzu a {
  display: inline;
  font-size: 85%;
}

.pankuzu font {
  color: #ccc;
}

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

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

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

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

.title-fill {
  text-align: center;
  display: block;
  background-color: #caa633;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 6px 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;
}