@charset "utf-8";

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

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

body {
  background-color: #fff;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Lucida Grande", "segoe UI", "ヒラギノ丸ゴ ProN W4",
    "Hiragino Maru Gothic ProN", Meiryo, Arial, sans-serif;
  color: #333;
  background: #f5f5ed;
}

strong,
b {
  font-size: 1rem;
}

em,
address {
  font-style: normal;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.sub-entry ul,
.sub-entry ol,
.sub-entry table,
.sub-entry blockquote,
.sub-entry pre,
address {
  margin: 20px 0;
}

.sub-entry table {
  border-collapse: collapse;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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

li {
  line-height: 1.2;
}

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

h2,
h3,
h4,
h5,
h6 {
  font-size: 130%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 8px 10px;
  color: #094;
}

a:hover {
  opacity: 0.7;
}

/* ページの幅 */
.wrap-in {
  display: flex;
  justify-content: space-between;
  width: 100%;
  /*960px*/
  max-width: 960px;
  margin: 0 auto;
}

/* ヘッダー */
.slogan {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(135deg,
      rgba(69, 142, 108, 1) 0%,
      rgba(47, 100, 114, 1) 100%);
}

/* サイトタイトル */
.site-name a {
  display: block;
  font-size: 1.3rem;
  color: #094;
}

.site-name a:hover {
  opacity: 0.8;
}

/* ヘッダーナビ */
.nav-box {
  display: flex;
  padding: 40px 0;
}

.nav-box .site-name {
  display: flex;
  align-items: center;
  width: 29%;
}

.nav-box .g-nav {
  width: 70%;
}

.g-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-nav ul li {
  position: relative;
  width: 24%;
}

.g-nav ul li a {
  position: relative;
  display: block;
  padding: 20px 1px 20px 10px;
  color: #000;
  font-weight: bold;
}

.g-nav ul li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 50px;
  margin-top: -25px;
  border-left: 2px dashed #000;
}

.g-nav ul li:last-child::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50px;
  margin-top: -25px;
  border-left: 2px dashed #000;
}

.g-nav ul li a:hover {
  color: #094;
}

/* メインビジュアル */
.slide {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-in {
  position: relative;
  left: 50%;
  width: 1530px;
  margin-left: -765px;
}

.bx-wrapper {
  background: none;
  border: none;
  box-shadow: none;
}

.bx-wrapper {
  box-shadow: none;
  margin-bottom: 50px;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #094;
}

/* メインカラム */
.cont-box {
  width: 100%;
  /*700px*/
  max-width: 700px;
}

.cont-box .sub-entry {
  margin: 0 0 20px 0;
  padding: 20px;
  border-radius: 15px;
  border: 2px dashed #000;
}

.big-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  text-align: center;
}

/* サブカラム */
.sub-box {

  /*min-*/
  width: 25%;
}

.sub-box ul {
  position: sticky;
  top: 0;
}

.sub-box ul li ul li img {
  margin: 0 0 10px 0;
  width: 100%;
}

.sub-box>ul>li>p {
  margin: 0 0 15px 0;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg,
      rgba(69, 142, 108, 1) 0%,
      rgba(47, 100, 114, 1) 100%);
  border-radius: 5px;
}

.sub-box ul li ul {
  margin: 0 0 15px 0;
  padding: 0 10px;
  border-radius: 4px;
}

.sub-box ul li ul li {
  padding: 0 0 20px 0;
}

.sub-box ul li ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #094;
}

.sub-box ul li ul li a {
  display: block;
  padding: 5px 0 10px;
  color: #000;
}

.sub-box ul li ul li a:hover {
  color: #094;
}

/* 1カラム */
.post-box .wrap-in {
  padding: 10px;
  border: 2px dashed #000;
  border-radius: 15px;
}

.post-box .wrap-in main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.post-box .sub-entry {
  padding: 10px;
  width: 50%;
}

.post-box .sub-entry img {
  float: left;
  width: 50%;
  margin-right: 10px;
  margin-bottom: 10px;
}

.sub-entry .more-btn {
  margin: 10px 0 0;
  text-align: right;
}

.sub-entry .more-btn a {
  display: inline-block;
  width: 150px;
  height: 40px;
  font-size: 16px;
  line-height: 37px;
  text-align: center;
  color: #fff;
  background: #000;
  border-radius: 18px;
  border-bottom: none;
}

.sub-entry .more-btn a:hover {
  color: #fff;
}

/* 1カラム リンク */
.link-box {
  margin: 50px 0;
}

.link-box .links {
  display: block;
  width: 100%;
}

.link-box .links h2 {
  height: 50px;
  padding: 0 30px;
  margin: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  line-height: 50px;
  color: #fff;
  background: linear-gradient(135deg,
      rgba(69, 142, 108, 1) 0%,
      rgba(47, 100, 114, 1) 100%);
  border: none;
}

.link-box .link-in {
  padding: 20px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #fff;
  border: 1px solid #000;
  border-top: none;
}

.link-box .link-in h3 {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  background: #fff;
  border-left: none;
  border-bottom: 3px dashed #000;
}

.link-box .link-in h3 a {
  display: block;
  color: #000;
  border: none;
}

.link-box .link-in h3 a:hover {
  color: #094;
}

/* フッター */
footer {
  margin-top: 200px;
  border-top: 5px solid #000;
}

.foot-in {
  width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

.foot-wrap {
  display: flex;
  flex-wrap: wrap;
}

.foot-menu {
  position: relative;
  display: inline-block;
  width: 33%;
  padding: 0 20px;
}

.foot-menu::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  border-left: 1px dashed #094;
}

.foot-menu p {
  margin: 0 0 15px 0;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg,
      rgba(69, 142, 108, 1) 0%,
      rgba(47, 100, 114, 1) 100%);
  border-radius: 5px;
}

.foot-menu ul li a {
  display: block;
  margin: 5px 0;
  padding: 10px 0;
  color: #000;
}

.foot-menu ul li a:hover {
  color: #094;
}

.foot-copy {
  margin-bottom: 30px;
  font-size: 12px;
  text-align: center;
  color: #696969;
}

.foot-btn {
  text-align: right;
}

.top-btn {
  display: inline-block;
  text-align: right;
  color: #094;
  border-bottom: 1px solid #094;
}

/* 基本スタイル */
h2 {
  font-size: 180%;
  border-bottom: 3px solid #094;
}

h3 {
  border-left: 10px solid #094;
}

h4 {
  border: 2px dashed #000;
}

/* 下層用 */
.under h1 {
  font-size: 180%;
  border-bottom: 3px solid #094;
}

.under h2 {
  border-left: 10px solid #094;
}

.under h3 {
  border: 2px dashed #000;
}


h5 {
  border-bottom: 2px dashed #000;
}

strong {
  color: #ff8700;
}

em {
  border-bottom: 1px dashed #094;
}

.sub-entry ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg,
      rgba(69, 142, 108, 1) 0%,
      rgba(47, 100, 114, 1) 100%);
  border-radius: 50%;
}

.sub-entry ol {
  counter-reset: number;
}

.sub-entry ol li,
.sub-entry ul li {
  padding: 5px 0;
}

.sub-entry ol li::before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg,
      rgba(69, 142, 108, 1) 0%,
      rgba(47, 100, 114, 1) 100%);
  border-radius: 50%;
}

blockquote {
  position: relative;
  padding: 50px 20px;
  border: 1px dashed #094;
}

blockquote::before {
  content: "“";
  position: absolute;
  top: 10px;
  font-size: 35px;
  color: #094;
}

blockquote::after {
  content: "”";
  position: absolute;
  bottom: -10px;
  font-size: 35px;
  color: #094;
}

address {
  padding: 15px;
  border: 1px solid #094;
  border-left: 10px solid #094;
}

ins {
  padding: 0 2px;
  border: 1px solid #094;
  border-bottom: 3px solid #094;
}

.sub-entry a {
  padding: 2px 5px;
  color: #ff8700;
  border: 2px dashed #000;
}

.sub-entry a:hover {
  color: #000;
  border: 2px dashed #094;
}

.sub-entry img {
  margin-bottom: 5px;
  width: 100%;
}

.sub-entry .more-btn a {
  border: none;
}

pre {
  padding: 10px;
  border: 2px dashed #094;
}

.sub-entry table th {
  padding: 5px 10px;
  background: #094;
  font-weight: normal;
  color: #fff;
  border: 2px solid #000;
}

.sub-entry table td {
  padding: 5px 10px;
  border: 2px solid #000;
}

/* パンくず */
.pan-nav {
  margin: 0 0 20px;
  padding: 8px 0;
  border-bottom: 1px solid #000;
}

.pan-nav li {
  display: inline-block;
}

.pan-nav li::after {
  content: ">>";
  margin: 0 10px;
}

.pan-nav li:last-child::after {
  content: none;
}

.pan-nav li a {
  color: #000;
  border-bottom: 1px solid #094;
}

.pan-nav li a:hover {
  color: #094;
}

/* 404 */
.not-found {
  font-size: 26px;
  line-height: 1.2;
  color: #094;
}

/* SNS */
.sns-box {
  display: flex;
  justify-content: flex-end;
  margin: 60px 0 20px;
}

.sns-btn {
  width: 40px;
  height: 40px;
  margin-right: 5px;
}

.sns-btn a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 50%;
}

.sns-btn a:hover {
  color: #000;
  background: #fff;
  border: 2px solid #000;
  opacity: 1;
  line-height: 31px;
}