@charset "utf-8";

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

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

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

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

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

@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

body {
  font-size: 14px;
  line-height: 2;
  font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体",
    "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}

/* top page */

/* header */
header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
}

header .header-ttl {
  width: 30%;
  padding: 20px;
  background: #ffd000;
}

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

header .site-ttl {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.3;
}

header p.catch-copy {
  margin-bottom: 10px;
  font-size: 10px;
}

nav.gnav {
  width: 70%;
}

nav.gnav>ul {
  display: flex;
  justify-content: space-around;
  margin: 0 10px;
}

nav.gnav ul#gnav-menu>li {
  display: block;
  position: relative;
  width: 24%;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  line-height: 50px;
}

.slicknav_menu {
  display: none;
}

#gnav-menu li a {
  position: relative;
  padding: 0 10px;
  display: block;
  color: #000;
  line-height: 1.5;
}

#gnav-menu li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 0;
  border-bottom: 3px solid #000;
  transition: all 0.3s ease;
}

#gnav-menu li a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  display: block;
  width: 0;
  border-bottom: 3px solid #000;
  transition: all 0.3s ease;
}

#gnav-menu li a:hover::before,
#gnav-menu li a:hover::after {
  width: 50%;
  border-bottom: 3px solid #000;
}

/* slider */
#mainvisual {
  width: 1000px;
  margin: 0 auto;
}

.bx-wrapper {
  width: 100%;
  max-width: 100% !important;
  margin: 50px auto;
  border: none;
  box-shadow: none;
}

.bx-wrapper img {
  width: 100%;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  margin: 0 8px;
  width: 13px;
  height: 13px;
  background: #ccc;
  border-radius: 0;
}

/* contents area */
.container-outer {
  background: #eee;
  padding: 50px 0 200px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.container section h2 {
  margin-bottom: 20px;
  font-size: 21px;
  text-align: center;
  padding: 20px;
  color: #000;
  background-color: #ffd000;
}

.container section article a {
  float: right;
  display: block;
  margin: 0 20px 20px 0;
  width: 120px;
  height: 35px;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
  text-align: center;
  background: #000;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.container section article a:hover {
  font-weight: bold;
  color: #000;
  background: #ffd000;
}

.container p {
  padding: 20px;
  font-size: 14px;
  line-height: 2;
}

/* section */
.container section {
  float: left;
  width: 680px;
  background-color: #fff;
}

.container article .art-box {
  padding: 0 20px;
}

.article img {
  float: left;
  margin: 20px;
  max-width: 300px;
}

.article .art-R {
  width: 280px;
  float: right;
}

.art-R a {
  display: block;
  text-align: right;
}

main section article.article p {
  display: block;
}

main section article.article p img {
  display: inline-block;
  float: none;
}

/* link */
.link-box {
  padding: 3%;
}

.container section article.link-box h3 a {
  float: none;
  display: inline;
  /*inline-block*/
  margin: 0;
  padding: 2px 0;
  width: auto;
  height: auto;
  font-size: 21px;
  color: #000;
  background: linear-gradient(transparent 65%, #ffd000 65%);
  border-radius: 0;
  line-height: 1;
}

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

.container section article.link-box a {
  text-align: left;
}

/* article */
article.mainEntry img {
  max-width: 100%;
  box-sizing: border-box;
  width: -webkit-fill-available;
}

article.mainEntry div.mainEntry {
  float: left;
  padding: 20px;
}

/* aside */
aside.side-menu {
  float: right;
  /*min-*/
  width: 300px;
  background-color: #fff;
  position: sticky;
  top: 0;
  height: fit-content;
}

.side-container li ul li {
  padding: 5px 20px;
  vertical-align: middle;
}

.side-container a {
  display: block;
  padding: 10px 0;
  line-height: 2;
  color: #000;
}

.side-container a:hover {
  color: #ffd000;
}

.side-container p a {
  display: block;
  padding-left: 70px;
  height: 40px;
  line-height: 40px;
}

.side-link img {
  float: left;
  max-width: 60px;
}

.side-menu>p {
  padding: 10px 0;
  font-size: 21px;
  text-align: center;
  color: #fff;
  background-color: #000;
}

ul.side-container li h2 {
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  background: #000;
}

p.side-link img {
  vertical-align: middle;
}

.side-link p {
  padding: 10px 0;
}

.side-sub-menu li a {
  line-height: 1.5;
}

/* footer */
footer {
  position: relative;
  padding: 50px 30px;
  background: #231815;
}

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

.footer-inner>ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

footer .ft-ttl,
footer .ft-copy {
  font-size: 10px;
  text-align: center;
}

footer a.top-btn {
  position: absolute;
  top: -25px;
  right: 20px;
  display: block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 25px;
  color: #000;
  background: #ffd000;
  border-radius: 50%;
}

footer .ft-menu {
  width: 33%;
  padding-right: 5%;
}

footer .ft-menu p {
  margin: 0 0 20px;
  font-weight: bold;
  color: #fff;
}

footer .ft-menu a {
  display: block;
  line-height: 25px;
  color: #fff;
}

footer .ft-menu a:hover {
  color: #ffd000;
}

footer .ft-ttl {
  margin-top: 30px;
  color: #fff;
}

/* under */

/* pan nav */
#panav {
  margin: 0 0 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  color: #000;
}

#panav span::after {
  content: ">";
}

#panav span:last-child::after {
  content: none;
}

#panav span a {
  display: inline-block;
  padding: 10px 0;
  font-size: 12px;
  color: #000;
}

#panav span a:hover {
  color: #ffd000;
}

img.eyecatch {
  display: block;
  margin: 20px auto;
  width: 100%;
}

.container .main-area main {
  float: left;
  max-width: 680px;
  background-color: #fff;
}

/* +下層用 */
.main-area h2,
.under h1 {
  padding: 20px;
  font-size: 21px;
  color: #000;
  background-color: #ffd000;
}

.subEntry,
.button-area {
  padding: 20px;
}

.subEntry h3,
.under h2 {
  padding: 15px 0 5px;
  font-size: 18px;
  color: #ed894a;
}

.container main .subEntry p {
  padding: 0 0 20px 0;
}

.subEntry img {
  margin-bottom: 2px;
}

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

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

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

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

.title-fill {
  text-align: center;
  display: block;
  background-color: #444;
  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;
}

/* text */
strong {
  font-size: 16px;
  background: linear-gradient(transparent 65%, #ffd000 65%);
}

em {
  font-size: 14px;
  background: linear-gradient(transparent 80%, #eee 80%);
}

b {
  font-size: 14px;
}

del {
  font-size: 14px;
  text-decoration: line-through;
}

address {
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #eee 60%);
}

pre {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 20px;
  border: 1px solid #ffd000;
}

ins {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
}

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

/* +下層用 */
.subEntry h2,
.subEntry h3,
.subEntry h4,
.subEntry h5,
.subEntry h6,
.mainEntry h2,
.mainEntry h3,
.mainEntry h4,
.mainEntry h5,
.mainEntry h6,
.under h1,
.under h2,
.under h3,
  {
  margin: 30px 0 20px;
  font-size: 21px;
}

.subEntry h3,
.mainEntry h3,
.under h2 {
  padding: 10px 20px 10px;
  color: #000;
  background: #eee;
  border-radius: 10px;
}

.subEntry h4,
.mainEntry h4 {
  padding: 0 15px;
  border-left: 5px solid #ffd000;
  border-bottom: 2px solid #eee;
}

.under h3 {
  border-left: 5px solid #ffd000;
  border-bottom: 2px solid #eee;
}

.subEntry h5,
.mainEntry h5 {
  padding: 0 20px;
  border-bottom: 2px solid #ffd000;
}

.subEntry h6,
.mainEntry h6 {
  padding: 0 20px;
  background: linear-gradient(transparent 60%, #ffd000 60%);
}

/* 下層用 */
.under h1 {
  margin-bottom: 20px;
  font-size: 21px;
  text-align: center;
  padding: 20px;
  color: #000;
  background-color: #ffd000;
}

.under h2 {
  padding: 10px 20px 10px;
  color: #000;
  background: #eee;
  border-radius: 10px;
}

.under h3 {
  /* padding: 0 15px; */
  border-left: 5px solid #ffd000;
  border-bottom: 2px solid #eee;
}

.subEntry ul,
.mainEntry ul {
  margin: 20px 0;
}

.subEntry ul li::before,
.mainEntry ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.subEntry ol,
.mainEntry ol {
  counter-reset: number;
  margin: 20px 0;
}

.subEntry ol li::before,
.mainEntry ol li::before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.subEntry blockquote,
.mainEntry blockquote {
  margin: 20px 0;
  padding: 20px;
  background: #eee;
  border-radius: 10px;
}

.subEntry a,
.container section article.mainEntry a {
  float: none;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  line-height: 1;
  font-size: 14px;
  color: #000;
  border-bottom: 1px solid #ffd00f;
  border-radius: 0;
  background: #fff;
}

.subEntry a:hover,
.container section article.mainEntry a:hover {
  font-weight: normal;
  color: #ffd000;
}

.subEntry table,
.mainEntry table {
  margin: 20px 0;
  border-collapse: collapse;
}

.subEntry table th,
.mainEntry table th {
  padding: 5px 20px;
  background: #ffd000;
}

.subEntry table td,
.mainEntry table td {
  padding: 5px 20px;
  font-size: 14px;
  border: 1px solid #eee;
}

.notFound b {
  display: block;
  padding: 0 20px;
  font-size: 30px;
  background: linear-gradient(transparent 50%, #ffd000 50%);
}