@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-color: #ddd;
  font-size: 16px;
  line-height: 2;
  font-family: "Noto Sans Japanese", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3",
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "ＭＳ\ Ｐゴシック", "sans-serif";
  background: url("../images/brick.png") repeat;
}
a {
  color: #000;
  display: block;
}
a:hover {
  text-decoration: underline;
  transition: 0.2s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
}
h2,
h3,
h4,
h5,
h6, .under h1 {
  font-size: 140%;
  margin-bottom: 25px;
}
h2, .under h1 {
  padding: 10px 15px;
  font-weight: bold;
  color: #000;
  border-left: 10px solid #000;
}
h3, .under h2 {
  border-left: 8px solid #000;
  border-bottom: 2px solid #000;
  padding: 0 0 5px 10px;
}
h4, .under h3 {
  border-left: 8px solid #aaa;
  border-bottom: 2px solid #aaa;
  padding: 0 0 5px 10px;
}
.under h3 {margin-top: 40px;}

h5 {
  border-bottom: 2px solid #aaa;
  padding-bottom: 5px;
  font-size: 120%;
}
h6 {
  border-bottom: 2px dashed #aaa;
  padding-bottom: 5px;
  font-size: 100%;
}
strong {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}
article ul {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;
  border: 3px solid #ddd;
  border-radius: 5px;
}
article ul li {
  position: relative;
}
article ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -16px;
  width: 10px;
  height: 10px;
  background: #000;
}
article ol {
  counter-reset: counter-name;
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
  border: 3px solid #ddd;
  border-radius: 5px;
}
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) ".";
  position: absolute;
  left: 0;
}
blockquote {
  background: #eee;
  padding: 3em 1em;
  position: relative;
  border-radius: 5px;
}
blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #999;
  position: absolute;
}
blockquote:before {
  content: "“";
  left: 0;
  top: 0;
  line-height: 1em;
}
blockquote:after {
  content: "”";
  right: 0;
  bottom: 0;
}
table {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}
table th {
  width: 150px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 1px solid #ccc;
  background: #000;
  color: #fff;
}
table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #ccc;
}
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 dashed #eee;
  margin: 1em 0;
  padding: 1em;
  border-radius: 5px;
}
strong,
b {
  font-size: 100%;
}
em {
  font-style: normal;
  border: 1px dotted #000;
}
del {
  text-decoration: line-through;
}
ins {
  display: inline-block;
}
.alignleft {
  text-align: left;
}
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}

/* top page */
/* header */
.topArea {
  width: 100%;
  padding: 50px 0 50px;
  background-color: #000;
}
.topArea a {
  color: #000;
}
.topArea .siteTitle a {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.topArea p.siteCopy {
  margin-bottom: 10px;
  color: #fff;
  font-size: 70%;
}
.navcontainer {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 155px;
  max-width: 1100px;
  z-index: 1000;
}
.navcontainer > ul {
  display: flex;
}
.navcontainer ul#navcontainer-menu > li {
  display: block;
  position: relative;
  width: 25%;
  font-size: 14px;
  text-align: center;
  border-left: 1px solid #000;
  padding: 0;
}
ul#navcontainer-menu li a:hover {
  background-color: #ddd;
  text-decoration: none;
}
ul#navcontainer-menu li:first-child {
  border-left: none;
}
#navcontainer-menu li ul.sub-menu {
  display: none;
  position: absolute;
  padding: 0;
  z-index: 9999;
}
.slicknav_menu {
  display: none;
}
#navcontainer-menu li a {
  display: block;
  color: #000;
  font-size: 16px;
  padding: 5px 0;
}
.bx-wrapper,
.linkBx,
.page_Cont,
aside,
section {
  box-shadow: 0px 7px 6px -2px #888;
  -moz-box-shadow: 0px 7px 6px -2px #888;
  -webkit-box-shadow: 0px 7px 6px -2px #888;
}
/* slider */
.mainVarea {
  margin: 0 auto;
  position: relative;
}
.bx-wrapper {
  margin: 0 auto;
  border: none;
}
/* contents area */
.mainWrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.readmore {
  text-align: right;
}
.readmore a {
  padding: 3px 3rem;
  display: inline-block;
  border: 1px solid #000;
  background-color: #ddd;
  color: #000;

  border-radius: 5px;
}
.readmore a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
/* main */
.mainwrap {
  position: absolute;
  top: -47px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.outwrap {
  position: relative;
}
.outwrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
main {
  float: left;
  width: 67%;
  margin-bottom: 100px;
}
article img {
  max-width: 100%;
  margin-bottom: 10px;
}
.page_Cont {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #000;
  padding: 20px;
}
.page_Cont img {
  float: left;
  max-width: 340px;
  margin-right: 10px;
}
article {
  margin-bottom: 30px;
}
.writings {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 5px;
}
/* おすすめリンク */
.linkBx {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #000;
}
.link_to {
  float: left;
  width: 42%;
  margin: 0 4%;
}
.linkBx h2 {
  background-color: #000;
  color: #fff;
  font-weight: normal;
}
.linkBx h3 {
  border: none;
  margin-bottom: 15px;
  padding: 0;
}
.linkBx h3 a {
  padding: 5px 15px;
  display: block;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #ddd;
}
.linkBx h3 a::before {
  content: ">";
  position: relative;
  margin-right: 5px;
}
.linkBx h3 a:hover {
  text-decoration: none;
  background-color: #000;
  color: #fff;
}
.linkBx p {
  padding: 0 10px 20px;
}
.linkBx a {
  text-align: left;
}
/* aside */
aside {
  float: right;
  width: 30%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #000;
  position: sticky;
  top: 0;
}
aside li > div {
  background-color: #000;
  font-size: 20px;
  padding: 3px 15px;
  border-bottom: 1px solid #b1a395;
  color: #fff;
}
aside a {
  padding: 10px 0;
  color: 000;
}
aside img {
  float: left;
  max-width: 100px;
  margin-right: 10px;
}
.side_link a {
  margin-bottom: 10px;
}
.side-mainWrapper li ul li {
  padding-left: 20px;
}
ul.side-mainWrapper li ul li:last-child {
  padding-bottom: 20px;
}
/* footer */
footer {
  background: #000;
  padding: 50px 0 10px;
  color: #fff;
}
footer p {
  font-size: 21px;
}
footer a {
  color: #fff;
  font-size: 85%;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .mainWrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}
.foot-copy {
  font-size: 70%;
  text-align: center;
}
.to-top {
  width: 60px;
  position: fixed;
  bottom: 10px;
  right: 0px;
  z-index: 1;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
  color: #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  box-shadow: 0px 7px 6px -2px #000;
  -moz-box-shadow: 0px 7px 6px -2px #000;
  -webkit-box-shadow: 0px 7px 6px -2px #000;
}
.to-top :hover {
  text-decoration: none;
  background-color: #000;
  color: #fff;
}
.to-top p {
  font-size: 90%;
  padding: 10px;
}
.ftmenu {
  width: 27%;
  margin-right: 3%;
}
/* under */
.not_found {
  font-size: 200%;
  color: #000;
}
/* pan nav */
.pan-nav {
  margin: 10px 0;
}
.pan-nav a {
  display: inline;
}
.pan-nav font {
  color: #000;
}
/* SNS */
.btn-area {
  width: 100%;
  margin: 5px 0;
}
.topsns {
  margin-bottom: 50px;
}
.sns-mainWrapper {
  display: flex;
  justify-content: space-between;
}
.btn-area > div {
  text-align: center;
}
.btn-area:after {
  content: "";
  clear: both;
  display: block;
}
.title-F {
  text-align: center;
  display: block;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 6px 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}
.button-whole {
  width: 23%;
  box-sizing: border-box;
  margin: 0 0.1%;
}
.button-whole a {
  border-radius: 5px;
}
.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;
}
/* 下層 */
.mainwrap2 {
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.wrap404 {
  margin: 30px auto 50px;
}
