@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
.cf:after {
  content: "";
  clear: both;
  display: block;
}

@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
body {
  background: #f5f4f0;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体",
    "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}

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

.container {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
}
.container_inner {
  padding: 20px 20px 200px;
}

header .site_name {
  width: 960px;
  margin: 0 auto;
  padding: 30px 0;
  font-size: 30px;
  text-align: center;
  color: #34c1d4;
  line-height: 1.3;
}
header .site_name a {
  color: #34c1d4;
  font-weight: bold;
  /* line-height: 1.3; */
}

#main_nav {
  background: #ffa110;
}
#main_nav ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-evenly;
}
#main_nav ul li {
  width: 25%;
}
#main_nav ul li a {
  display: block;
  padding: 20px 0;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  background-image: linear-gradient(
    rgba(0, 0, 0, 0) 50%,
    rgba(255, 142, 0, 1) 50%
  );
  background-position: 0 0;
  background-size: auto 200%;
  transition: 0.3s;
}
#main_nav ul li a:hover {
  background-position: 0 100%;
}

#main_visual {
  position: relative;
  height: 450px;
  margin: 0 auto;
}
#main_visual img {
  filter: blur(5px);
}
#main_visual p.catch_copy {
  position: absolute;
  top: 20%;
  left: 100px;
  width: 60%;
  font-size: 40px;
  color: #ffa110;
  text-shadow: 2px 2px 1px #fff;
  z-index: 2;
}
.bx-viewport {
  height: 450px !important;
}
.bx-wrapper .bx-viewport .slider li img {
  width: 100%;
}
.bx-wrapper {
  margin: 0;
  border: none;
  box-shadow: none;
}

main section article h2 {
  position: relative;
  margin: 30px 0 20px;
  padding: 10px 0;
  text-align: center;
  border-top: 3px solid #34c1d4;
  border-bottom: 3px solid #34c1d4;
}
main section article h2::before {
  content: "";
  position: absolute;
  top: 3px;
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #34c1d4;
}
main section article h2::after {
  content: "";
  position: absolute;
  bottom: 3px;
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #34c1d4;
}

main section article img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  /* margin: 0 20px 0 20px; */
  float: left;
}
main section article p {
  padding: 0 20px;
}

main section article a {
  color: #34c1d4;
  border-bottom: 1px solid #34c1d4;
}
main section article a:hover {
  color: #ffa110;
  border-bottom: 1px solid #ffa110;
}

main section article.single img.eyecatch {
  float: none;
  display: block;
  width: 80%;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  margin: 0 auto;
}
main section article.single img {
  float: none;
  margin-bottom: 5px;
}

main section article.link_box h2 {
  position: relative;
  margin: 30px 0 20px;
  padding: 10px 0;
  color: #ffa110;
  text-align: center;
  border-top: 3px solid #ffa110;
  border-bottom: 3px solid #ffa110;
}
main section article.link_box h2::before {
  content: "";
  position: absolute;
  top: 3px;
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #ffa110;
}
main section article.link_box h2::after {
  content: "";
  position: absolute;
  bottom: 3px;
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #ffa110;
}
main section article.link_box h3 {
  border: none;
}

footer {
  padding: 30px 0 0;
  margin: 0 auto 10px;
  width: 960px;
  background: #fff;
  border-top: 5px solid #24a6bd;
}
footer > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  width: 960px;
  margin: 0 auto 50px;
}
footer div > div {
  width: 30%;
  margin: 0 30px;
}
footer div > div h2 {
  font-size: 16px;
  color: #34c1d4;
}
footer div div ul {
  display: inline-block;
  width: 100%;
  margin: 10px 0;
  padding: 10px 0;
  border-top: 2px solid #34c1d4;
  border-bottom: 2px solid #34c1d4;
}
footer div div ul li {
  margin-bottom: 10px;
}
footer div div ul li a {
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}
footer div div ul li a:hover {
  color: #ffa110;
  border-bottom: 1px solid #ffa110;
}
.footer_bottom {
  position: relative;
  padding: 10px 0;
  margin: 30px 0 0;
  font-size: 10px;
  text-align: center;
  color: #fff;
  background: #24a6bd;
}
.footer_bottom p {
  display: block;
  width: 100%;
  text-align: center;
}

a.top_button {
  position: absolute;
  top: -45px;
  right: 5px;
  display: inline-block;
  width: 200px;
  height: 40px;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  color: #fff;
  background: #24a6bd;
  border-bottom: 5px solid #1f8da1;
  border-radius: 4px;
}
a.top_button:hover {
  height: 35px;
  border: none;
  background: #ffa110;
  transform: translate3d(0, 5px, 0);
}

#pan_nav {
  padding: 10px 20px 0;
  font-size: 14px;
}
#pan_nav li {
  display: inline-block;
}
#pan_nav li::after {
  content: ">";
}
#pan_nav li:last-child::after {
  content: none;
}
#pan_nav li a {
  color: #333;
  border-bottom: 1px solid #34c1d4;
}
#pan_nav li a:hover {
  color: #34c1d4;
  border-bottom: 1px solid #34c1d4;
}

.entries img.eyecatch {
  display: block;
  width: 80%;
  margin: 0 auto;
}

strong {
  font-size: 1.3em;
  background: linear-gradient(transparent 60%, #ffa110 60%);
}
em {
  font-size: 1.1em;
  color: #34c1d4;
  font-style: normal;
  font-weight: bold;
}
b {
  font-size: 1em;
}
del {
  text-decoration: line-through;
}
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;
  margin: 20px 0;
  padding: 20px;
  color: #34c1d4;
  border: 1px solid #34c1d4;
}
address {
  font-size: 1.3em;
  font-style: normal;
  font-weight: bold;
  color: #ffa110;
}
ins {
  font-style: normal;
  font-size: 1.1em;
  color: #333;
  border-bottom: 1px solid #34c1d4;
}
.entries a {
  color: #34c1d4;
  border-bottom: 1px solid #34c1d4;
}
.entries a:hover {
  color: #ffa110;
  border-bottom: 1px solid #ffa110;
}

.alignleft {
  text-align: left;
}
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}

.entries ul {
  margin: 20px 0;
}
.entries ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 1px solid #333;
  border-radius: 50%;
}
.entries ol {
  margin: 20px 0;
  counter-reset: count;
}
.entries ol li::before {
  counter-increment: count;
  content: counter(count);
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  margin-right: 5px;
  color: #fff;
  text-align: center;
  line-height: 1.2em;
  background: #333;
  border-radius: 50%;
}

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

.entries table {
  margin: 20px 0;
  border-collapse: collapse;
}
.entries table th {
  padding: 10px 20px;
  border: 1px solid #333;
  background: #e5f7fa;
}
.entries table td {
  padding: 10px 20px;
  border: 1px solid #333;
  background: #fff;
}

/* +下層用 */
.entries h2, .under h1 {
  position: relative;
  margin: 30px 0 20px;
  padding: 10px 0;
  text-align: center;
  border-top: 3px solid #34c1d4;
  border-bottom: 3px solid #34c1d4;
}
.under h1 {
font-size: 1.5em;
}
.entries h2::before, .under h1::before  {
  content: "";
  position: absolute;
  top: 3px;
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #34c1d4;
}
.entries h2::after, .under h1::after  {
  content: "";
  position: absolute;
  bottom: 3px;
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #34c1d4;
}
.entries h3, .under h2 {
  margin: 30px 0 20px;
  padding: 5px 10px;
  font-size: 18px;
  border-left: 10px solid #34c1d4;
  border-bottom: 2px solid #34c1d4;
}
.entries h4, .under h3 {
  margin: 30px 0 20px;
  padding: 5px 10px;
  font-size: 18px;
  color: #fff;
  background: #afafaf;
}
.entries h5 {
  margin: 30px 0 20px;
  font-size: 16px;
  padding: 5px 10px;
  color: #fff;
  background: #ffa110;
}
.entries h6 {
  margin: 30px 0 20px;
  font-size: 16px;
  padding: 5px 10px;
  border-left: 3px solid #333;
}

/* 下層用 */


.button-area-title {
  margin: 50px 0 20px;
  padding: 10px 0;
  color: #fff;
  background: #333;
  text-align: center;
}
.sns-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.button-whole {
  width: 24%;
}
.entries .button-whole a {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 4px;
}
.entries .button-whole a:hover {
  height: 40px;
  line-height: 40px;
  color: #fff;
  transform: translate3d(0, 5px, 0);
}
#twitter {
  background-color: #00acee;
  border-bottom: 5px solid #0096cf;
}
#hatena {
  background-color: #2d4c86;
  border-bottom: 5px solid #283566;
}
#facebook {
  background-color: #3b5998;
  border-bottom: 5px solid #384381;
}
#ggl-plus {
  background-color: #dd4b39;
  border-bottom: 5px solid #aa4437;
}
#twitter:hover,
#hatena:hover,
#facebook:hover,
#ggl-plus:hover {
  border: none;
}

.not_found {
  padding: 50px 0;
}
.not_found b {
  font-size: 30px;
  color: #34c1d4;
}

/*top menu*/
.top_menu > ul {
  display: none;
}
.top_menu .slicknav_nav {
  color: #34c1d4;
}
.top_menu .slicknav_menu {
  display: block;
  padding: 0;
  background: none;
}
.top_menu .slicknav_btn {
  width: 100%;
  margin: 0;
  padding: 20px;
  background: #34c1d4;
  text-shadow: none;
  border-radius: 0;
}
.top_menu .slicknav_menu .slicknav_menutxt {
  display: block;
  width: 100%;
  text-align: center;
  text-shadow: none;
}
.slicknav_menu .slicknav_icon {
  float: right;
}
.top_menu ul li {
  width: 100%;
}
.top_menu ul li a {
  padding: 10px 0;
}
.top_menu .slicknav_nav a:hover {
  background: none;
  border-radius: 0;
}
.top_menu .slicknav_item.slicknav_row {
  color: #34c1d4;
}
.top_menu .slicknav_item.slicknav_row h2 {
  display: inline-block;
}
.top_menu .side-sub-menu a {
  color: #ffa110;
}
.top_menu .side-sub-menu li a:hover {
  border-bottom: 1px solid #ffa110;
}
.top_menu .side-sub-menu img {
  display: none;
}
