@charset "UTF-8";
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
ul,
li,
dd,
dl {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

ul,
li,
dt,
dd,
dl {
  list-style-type: none;
}

.entrymodal-wrapper {
  width: 1324px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

/*-----モーダル-----*/
.entrymodal__close {
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  color: #fff;
  font-size: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.entrymodal__close:hover {
  opacity: 0.7;
}

.entrymodal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
}

.entrymodal {
  border: solid 20px #0099ce;
  padding: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}

@media only screen and (max-width: 430px) {
  .entrymodal {
    border: solid 10px #0099ce;
    padding: 20px;
  }
}
.entrymodal__title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  color: #000000;
}

@media only screen and (max-width: 430px) {
  .entrymodal__title {
    font-size: 24px;
  }
}
.entrymodal__title span {
  position: relative;
  display: inline-block;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 430px) {
  .entrymodal__title span {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.entrymodal__title span br {
  display: none;
}

@media only screen and (max-width: 430px) {
  .entrymodal__title span br {
    display: block;
  }
}
.entrymodal__title span::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #0099ce;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 430px) {
  .entrymodal__title span::before {
    width: 40px;
  }
}
.entrymodal__button1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4%;
  margin-bottom: 4%;
}

@media only screen and (max-width: 430px) {
  .entrymodal__button1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 12px;
  }
}
.entrymodal__button1__left,
.entrymodal__button1__right {
  border: solid 2px #0099ce;
  width: 48%;
  text-align: center;
  border-left: solid 10px #0099ce;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 430px) {
  .entrymodal__button1__left,
  .entrymodal__button1__right {
    width: 100%;
    border-left: solid 6px #0099ce;
  }
}
.entrymodal__button1__left a,
.entrymodal__button1__right a {
  padding: 25px 15px;
  color: #333333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: block;
  position: relative;
}

@media only screen and (max-width: 430px) {
  .entrymodal__button1__left a,
  .entrymodal__button1__right a {
    font-size: 16px;
    padding: 15px 10px;
  }
}
.entrymodal__button1__left a:hover,
.entrymodal__button1__right a:hover {
  background-color: #e1ecf0;
}

.entrymodal__button1__left a::before,
.entrymodal__button1__right a::before {
  background-image: url();
  position: absolute;
  content: "";
  background-image: url(../img/blog/btn-yaji02b.png);
  background-size: cover;
  width: 10px;
  height: 13px;
  background-position: center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.entrymodal__button2 {
  padding: 10px;
  background-color: #0099ce;
}

.entrymodal__button2__main {
  border: dashed 1px #ffffff;
  text-align: center;
}

.entrymodal__button2__main a {
  color: #ffffff;
  padding: 30px 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: block;
  position: relative;
}

@media only screen and (max-width: 430px) {
  .entrymodal__button2__main a {
    font-size: 16px;
    padding: 20px 10px;
  }
}
.entrymodal__button2__main a br {
  display: none;
}

@media only screen and (max-width: 430px) {
  .entrymodal__button2__main a br {
    display: block;
  }
}
.entrymodal__button2__main a:hover {
  opacity: 0.78;
}

.entrymodal__button2__main a::before {
  background-image: url();
  position: absolute;
  content: "";
  background-image: url(../img/blog/btn-yaji01b.png);
  background-size: cover;
  width: 36px;
  height: 36px;
  background-position: center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

@media only screen and (max-width: 430px) {
  .entrymodal__button2__main a::before {
    width: 24px;
    height: 24px;
  }
}
/*-----トップニュース-----*/
.topnews {
  width: 860px;
  margin: 80px auto;
}
@media only screen and (max-width: 430px) {
  .topnews {
    width: 90%;
  }
}
.topnews__btn {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.topnews dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  margin-bottom: 40px;
}
.topnews dl dt {
  font-size: 14px;
  font-weight: 600;
  color: #0099ce;
  line-height: 1;
}
.topnews dl dd {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.topnews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 1px #eeeeee;
  padding: 28px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 430px) {
  .topnews__list {
    padding: 16px 0;
  }
}
.topnews__list:nth-of-type(1) {
  border-top: solid 1px #eeeeee;
}
.topnews__list__left a {
  text-decoration: none;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media only screen and (max-width: 430px) {
  .topnews__list__left a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 12px;
  }
}
.topnews__list__left span.date {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
}
.topnews__list__left span.date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #ddd;
}
.topnews__list__right img {
  width: 36px;
}
@media only screen and (max-width: 430px) {
  .topnews__list__right img {
    width: 24px;
  }
}

/*-----ヘッダー-----*/
.site-state {
  position: relative;
}

.g-container {
  padding: 0;
  position: relative;
}

.g-page-head:before {
  background: rgba(1, 190, 255, 0.6);
}

.blog {
  margin-top: 6px;
  position: relative;
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .blog {
    margin-top: -54px;
  }
}
@media only screen and (max-width: 430px) {
  .blog {
    margin-top: -28px;
  }
}
.blog__header {
  background-color: #1e85c0;
  height: 280px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog__header span {
  font-size: 36px;
  color: #ffffff;
  font-weight: 500;
}

h2.list-title {
  font-size: 24px;
  font-weight: bold;
  color: #0099ce;
  border: solid 1px #0099ce;
  padding: 16px;
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 430px) {
  h2.list-title {
    font-size: 18px;
  }
}

h3.sidebar-title {
  font-size: 14px;
  border-left: solid 4px #9e9e9e;
  background-color: #f2f2f2;
  padding: 16px 10px 12px 14px;
  line-height: 100%;
  font-weight: bold;
  margin: 0 0 24px 0;
}

h3.sidebar-title:first-child {
  margin-top: 0px;
}

.sidebar-cont {
  margin: 0 auto 24px;
}

/*-----新着記事一覧-----*/
.new-list li {
  display: block;
  margin: 0;
  border-bottom: 1px solid #f2f2f2;
}

.new-list li:first-child {
  margin: 0 0 0 0 !important;
}

.new-list li:last-child {
  border: none !important;
}

.new-list li img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.new-list-cont {
  overflow: hidden;
  margin: 16px auto;
}

.new-list-cont-l {
  float: left;
  width: 35%;
  font-size: 0;
}

.new-list-cont-r {
  float: right;
  width: 60%;
}

.new-list-cont-r p {
  display: block;
  margin: 0 0 6px 0;
}

.new-list-cont-r p:last-child {
  margin: 0 0 0 0 !important;
}

.new-data {
  font-size: 11px;
  margin: 0 0 4px 0;
  color: #ccc;
  font-weight: 600;
}

.new-title {
  color: #333;
  font-size: 1.4rem;
  line-height: 100%;
  font-weight: 600;
}

.new-category {
  display: block;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  background-color: #dd4453;
  color: #fff;
  margin: 5px 10px 10px 0;
  padding: 2px 15px;
  float: right;
}

.new-category a,
.new-category a:hover {
  color: #fff !important;
}

.new_excerpt {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

/*-----一覧ページ-----*/
.box-news {
  border-bottom: solid 1px #eeeeee;
}
.box-news:last-child {
  border: none;
}
.box-news a {
  text-decoration: none;
  color: #333333;
}
.box-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
}
.box-news__inner__left {
  margin-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
@media only screen and (max-width: 430px) {
  .box-news__inner__left {
    row-gap: 12px;
  }
}
.box-news__inner__right img {
  width: 32px;
}
@media only screen and (max-width: 430px) {
  .box-news__inner__right img {
    width: 24px;
  }
}
.box-news__diary {
  font-size: 14px;
  color: #666666;
}
@media only screen and (max-width: 430px) {
  .box-news__diary {
    font-size: 12px;
  }
}
.box-news__diary span {
  position: relative;
  display: inline-block;
  padding-left: 50px;
}
.box-news__diary span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #ddd;
}
.box-news__desc {
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (max-width: 430px) {
  .box-news__desc {
    font-size: 14px;
    line-height: 1.5;
  }
}

a.box-list-lnk {
  color: #333;
}

.list-l-thum {
  float: left;
  width: 30%;
  margin: 0 5% 0 0;
}

.list-l-thum-photo {
  overflow: hidden;
  position: relative;
}

.list-l-thum-photo img {
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.list-r-txt {
  float: right;
  width: 65%;
}

.list-r-txt-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 140%;
}

.list-r-txt-title a {
  color: #333;
}

.list-r-txt-diary {
  font-size: 12px;
  font-weight: bold;
  color: #999;
}

.list-r-txt-cont {
  font-size: 14px;
  position: relative;
  height: 100px;
  overflow: hidden;
  line-height: 180%;
  letter-spacing: 1px;
}

.list-r-txt-cont:before,
.list-r-txt-cont:after {
  position: absolute;
  background: #fff;
}

.list-r-txt-cont:before {
  content: "･･･";
  bottom: 0;
  right: 0;
  color: #333;
}

.list-r-txt-cont:after {
  content: "";
  width: 100%;
  height: 100%;
}

.list-r-txt-btn {
  text-align: right;
}

.list-r-txt-btn a {
  font-weight: 600;
  font-size: 12px;
  border: solid 1px #cccccc;
  padding: 4px 24px 2px;
  display: inline-block;
  background-color: #fff;
  color: #191919;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
  text-decoration: none;
}

.list-r-txt-btn a:before {
  font-weight: normal;
  position: absolute;
  font-size: 15px !important;
  line-height: normal;
  top: 6px;
  right: 3px;
  font-family: "Material Icons";
  content: "keyboard_arrow_right";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  color: #000;
}

.list-r-txt-btn a:hover {
  background-color: #191919;
  color: #fff;
}

.list-r-txt-btn a:hover:before {
  color: #fff;
}

.list-r-txt div {
  margin: 0 auto 12px;
}

/*-----投稿ページ（レイアウト）-----*/
.basic-cont {
  width: 1367px;
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1024px) {
  .basic-cont {
    width: 90%;
  }
}
@media only screen and (max-width: 430px) {
  .basic-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    margin: 40px auto;
  }
}
.basic-cont__left {
  width: 80%;
}
@media only screen and (max-width: 430px) {
  .basic-cont__left {
    width: 100%;
  }
}
.basic-cont__left__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.basic-cont__left__back a {
  font-size: 18px;
  line-height: 1;
  background-color: #e6e6e6;
  border: solid 2px #333333;
  text-decoration: none;
  color: #333333;
  padding: 28px 0;
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .basic-cont__left__back a {
    width: 100%;
    padding: 20px 0;
    font-size: 15px;
  }
}
.basic-cont__left__back a:hover {
  opacity: 0.78;
}
.basic-cont__left__back a::before {
  position: absolute;
  content: "";
  background-image: url(../img/blog/btn-yaji02.png);
  background-size: cover;
  width: 10px;
  height: 13px;
  background-position: center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.basic-cont__right {
  width: 20%;
}
@media only screen and (max-width: 430px) {
  .basic-cont__right {
    width: 100%;
  }
}
.basic-cont__right__sidebar {
  background-color: #0099ce;
  color: #ffffff;
  padding: 12px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 32px;
}
.basic-cont__right__archive {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  line-height: 1;
  padding-left: 12px;
}
.basic-cont__right__archive li {
  padding: 0;
  margin: 0;
}
.basic-cont__right__archive a {
  text-decoration: none;
  color: #333333;
  position: relative;
  padding-left: 30px;
}
.basic-cont__right__archive a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #ddd;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  padding-bottom: 16px;
  border-bottom: solid 1px #eeeeee;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 40px;
}
@media only screen and (max-width: 430px) {
  .page-title {
    font-size: 24px;
  }
}

.page-cont {
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
  text-justify: auto;
}
.page-cont p {
  margin: 0 0 24px 0;
}
.page-cont p a {
  text-decoration: underline;
  color: #333333;
}
.page-cont p a:hover {
  text-decoration: none;
}

.page-data {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
}
.page-data span {
  position: relative;
  padding-left: 30px;
}
.page-data span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #ddd;
}

.page-photo-thumnail {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
  background-color: #eee;
}

.page-photo-thumnail img {
  height: 360px;
  /*width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;*/
}

.page-navigation {
  overflow: hidden;
  margin: 40px auto;
}

.page-navigation div a {
  font-weight: bold;
  font-size: 12px;
  border: solid 1px #cccccc;
  padding: 8px 24px 6px;
  display: inline-block;
  background-color: #fff;
  color: #191919;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
  line-height: 100%;
  text-decoration: none;
}

.page-navigation div a:hover {
  background-color: #191919;
  color: #fff;
}

.page-navigation-l {
  float: left;
}

.page-navigation div.page-navigation-l a:before {
  font-weight: normal;
  position: absolute;
  font-size: 15px !important;
  line-height: normal;
  top: 6px;
  left: 3px;
  font-family: "Material Icons";
  content: "keyboard_arrow_left";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  color: #000;
}

.page-navigation div.page-navigation-l a:hover:before {
  color: #fff;
}

.page-navigation-r {
  float: right;
}

.page-navigation div.page-navigation-r a:before {
  font-weight: normal;
  position: absolute;
  font-size: 15px !important;
  line-height: normal;
  top: 6px;
  right: 3px;
  font-family: "Material Icons";
  content: "keyboard_arrow_right";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  color: #000;
}

.page-navigation div.page-navigation-r a:hover:before {
  color: #fff;
}

hr.page-line {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 60px auto;
  text-align: center;
  width: 100%;
}

.box-categorytag {
  overflow: hidden;
}

.box-categorytag p {
  float: left;
  margin: 0 6px 0 0;
}

.box-categorytag p:last-child {
  margin: 0;
}

.ic-basic {
  font-size: 18px !important; /*vertical-align: middle !important;*/
  color: #cccccc !important;
  margin: 0 6px 0 0 !important;
}

.ic-category {
  margin: 0 auto;
  font-size: 12px;
}

.ic-category a {
  color: #fff;
  background-color: #0082bd;
  font-weight: bold;
  display: inline-block;
  padding: 3px 10px 2px;
  margin: 0 6px 0 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  text-decoration: none;
}

.ic-category a:hover {
  background-color: #004a6c;
}

.ic-tag {
  font-size: 12px;
}

.ic-tag a {
  color: #5f5f5f;
  border: solid 1px #cccccc;
  font-weight: bold;
  display: inline-block;
  padding: 2px 10px 1px;
  margin: 0 6px 0 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  text-decoration: none;
}

.ic-tag a:hover {
  background-color: #e4e4e4;
}

/*-----投稿ページ（見出しテンプレート）-----*/
.editor {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
}

.editor h1 {
  font-size: 26px;
  font-weight: 600;
  color: #0099ce;
  padding: 20px 0;
  border-top: solid 3px #0099ce;
  border-bottom: solid 3px #0099ce;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .editor h1 {
    font-size: 20px;
    padding: 10px 0;
    border-top: solid 2px #0099ce;
    border-bottom: solid 2px #0099ce;
  }
}
@media only screen and (max-width: 430px) {
  .editor h1 {
    font-size: 16px;
    padding: 8px 0;
    margin-bottom: 24px;
  }
}

.editor h2 {
  position: relative;
  color: #0099ce;
  font-weight: 600;
  padding: 20px 18px 18px;
  background: #efefef;
  margin-bottom: 52px;
}
@media only screen and (max-width: 768px) {
  .editor h2 {
    font-size: 18px;
    padding: 12px;
  }
}
@media only screen and (max-width: 430px) {
  .editor h2 {
    font-size: 16px;
    padding: 12px;
    line-height: 1.6;
    margin-bottom: 32px;
  }
}

.editor h2:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #efefef;
  width: 0;
  height: 0;
}

.editor h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
  border-left: 6px solid #0099ce;
  border-bottom: 1px dotted #333;
  padding: 0 0 10px 15px;
}
@media only screen and (max-width: 768px) {
  .editor h3 {
    font-size: 18px;
    border-left: 4px solid #0099ce;
    padding: 0 0 6px 10px;
  }
}
@media only screen and (max-width: 430px) {
  .editor h3 {
    font-size: 16px;
    margin-bottom: 24px;
    padding: 0 0 2px 8px;
  }
}

.editor h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  background-color: #0099ce;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .editor h4 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 430px) {
  .editor h4 {
    font-size: 16px;
    margin-bottom: 24px;
    padding: 10px;
  }
}

.editor h5 {
  font-size: 22px;
  font-weight: 600;
  color: #0099ce;
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0099ce;
}
@media only screen and (max-width: 768px) {
  .editor h5 {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 430px) {
  .editor h5 {
    margin-bottom: 20px;
  }
}

.editor h6 {
  font-size: 22px;
  font-weight: 600;
  color: #0099ce;
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 2px dotted #0099ce;
}
@media only screen and (max-width: 768px) {
  .editor h6 {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 430px) {
  .editor h6 {
    margin-bottom: 20px;
  }
}

.editor ul {
  list-style-type: disc !important;
  padding-left: 1.5em;
  font-size: 1.3rem;
}

.editor ol {
  list-style-type: decimal !important;
  padding-left: 1.5em;
  font-size: 1.3rem;
}

.editor a {
  color: #0099ce;
  text-decoration: underline;
}

.editor a:hover {
  text-decoration: none;
}

.editor p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "YuGothic", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  margin-bottom: 30px;
}
@media only screen and (max-width: 430px) {
  .editor p {
    font-size: 14px;
  }
}

.editor table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: "YuGothic", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.editor table th,
.editor table td {
  background-color: #fff;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  line-height: 1.4;
  padding: 15px;
  text-align: left;
}

.editor table th {
  background-color: #e4e4e4;
  letter-spacing: 2px;
  text-align: center;
  width: 50%;
}

.editor table td {
  width: 50%;
}

.editor .scrollTbl {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

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

/*-----関連記事-----*/
.box-relation {
  width: 100%;
  margin: 0 auto 36px;
  padding: 0;
}

.box-relation ul {
  overflow: hidden;
  margin: 0 -3.3333% 0 0;
}

.box-relation ul li {
  float: left;
  width: 30%;
  margin: 0 3.3333% 3.3333% 0;
}

.box-relation ul li div {
  margin: 0 auto 12px;
}

.box-relation ul li div:last-child {
  margin: 0 auto 0;
}

.box-relation ul li div.relation-title {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.box-relation ul li a {
  font-size: 13px;
  color: #000;
}

.box-relation ul li div.relation-photo img {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 140px;
}

/*-----ページネーション-----*/
.pager {
  text-align: center;
}

.wp-pagenavi {
  margin-top: 80px;
}
@media only screen and (max-width: 430px) {
  .wp-pagenavi {
    margin-top: 40px;
  }
}

.wp-pagenavi a {
  padding: 4px 10px !important;
  background-color: #e8e8e8;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background-color: #0099ce;
  color: #fff;
  letter-spacing: 0;
  line-height: 0;
  padding: 4px 10px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #333;
  border: none !important;
  padding: 0;
  margin: 4px !important;
}

/*-----引用符-----*/
blockquote {
  position: relative;
  padding: 30px 25px 25px 50px;
  margin: 0 auto 24px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -3px;
  content: "“";
  font-family: sans-serif;
  color: #cfcfcf;
  font-size: 90px;
  line-height: 1;
}

blockquote p:last-child {
  margin: 0 auto 0;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
  margin: 10px 0 0 0;
}

/*-----SNSボタン設置-----*/
.fa-hatena:before {
  font-family: Verdana;
  font-weight: bold;
  content: "B!";
}

.share {
  /*margin-top: 40px;
   margin-bottom: 40px;*/
  margin: 24px auto 40px;
}

.share ul {
  margin: 0 -1% 0 0;
  padding: 0;
  list-style: none;
}

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

.share li {
  float: left;
  margin: 0 1% 0 0;
}

.share li a {
  font-size: 14px;
  display: inline-block;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}

.share li a img {
  width: 25px;
}

.share li a:hover {
  opacity: 0.8;
}

.share li a:visited {
  color: #fff;
}

.tweet a {
  background-color: #55acee;
}

.facebook a {
  background-color: #315096;
}

.googleplus a {
  background-color: #dd4b39;
}

.line a {
  background-color: #00b900;
}

.hatena a {
  background-color: #008fde;
}

/*-----ウィジェット＿カレンダー-----*/
#sidebar .widget_calendar {
  margin-bottom: 40px;
}

table#wp-calendar {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto 30px;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
}

table#wp-calendar caption {
  padding: 8px 0 5px;
  width: auto;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  border-bottom: solid 1px #ccc;
  border-top: solid 1px #ccc;
  -moz-border-radius: 3px 3px 0 0;
}

table#wp-calendar #today {
  display: block;
  font-weight: bold;
  color: #ddb628;
  z-index: 1;
}

table#wp-calendar .pad {
  font-weight: bold;
}

table#wp-calendar th,
table#wp-calendar td {
  padding: 2px auto;
  vertical-align: middle;
  text-align: center;
}

table#wp-calendar td {
  line-height: 1.8;
  background-color: #fff;
  padding: 5px;
}

table#wp-calendar th {
  font-style: normal;
  font-weight: 600;
  color: #2e3233;
  padding: 8px 5px 5px 5px;
}

table#wp-calendar a {
  font-size: 12px;
  color: #2e3233;
  padding: 0;
  display: block;
  padding: 4px 0 1px 0;
  background-color: #ddb628;
}

/*-----プラグイン書き換え-----*/
#npcatch img {
  padding: 0 10px 0 0 !important;
}

#npcatch li {
  border-bottom: solid 1px #e5e5e5;
  margin: 0 0 16px 0 !important;
}

#npcatch li:last-child {
  border-bottom: none;
}

#npcatch li a {
  color: #333;
  padding: 0 !important;
  margin: 0 0 16px 0 !important;
}

#npcatch li a span.title {
  font-size: 14px;
  line-height: 120%;
}

#npcatch li a span.title:hover {
  text-decoration: underline;
}

#npcatch li a span.title span.date {
  display: block;
  font-size: 11px;
  margin: 4px 0 0 0;
}

span.wpcf7-not-valid-tip {
  font-weight: bold !important;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 2px solid #ffafbf !important;
  color: #f00;
  font-size: 16px;
  line-height: 160%;
  font-weight: bold;
  background-color: #fff1f1;
  display: inline-block;
  margin: 0 auto !important;
  padding: 14px 16px 10px !important;
  width: 100%;
  text-align: center;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

select.wpcf7c-conf,
input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background-color: #e4e4e4 !important;
  color: #333 !important;
  border: 1px solid #d6c897 !important;
}

.wpcf7c-conf {
  background-color: #e8f0fe !important;
}

.wpcf7c-btn-back {
  font-size: 16px;
  background-color: #fff;
  border: none;
  text-decoration: underline;
  margin: 16px auto 30px;
  cursor: pointer;
}

.wpcf7c-btn-back:hover {
  text-decoration: none;
}

.form-kakunin-title {
  font-size: 20px;
  font-weight: bold;
  color: #191919 !important;
  padding: 16px;
  background-color: #e6e6e6;
  position: relative;
}

.form-kakunin-title:after {
  position: absolute;
  content: "▼";
  left: 50%;
  bottom: -20px;
  line-height: normal;
  color: #e6e6e6;
  z-index: 10;
  display: inline-block;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-style: normal;
  font-size: 16px;
}

div.wpcf7-mail-sent-ok {
  text-align: center;
  border: 2px solid #f7e700 !important;
  color: #675206;
  font-size: 16px;
  line-height: 160%;
  font-weight: bold;
  background-color: #fff9e5;
  display: inline-block;
  margin: 16px auto !important;
  padding: 14px 16px 10px !important;
  width: 100%;
  text-align: center;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

div.wpcf7-response-output {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.yarpp-related h3 {
  padding: 0 0 0 30px !important;
  margin: 0 0 30px 0 !important;
  font-size: 24px !important;
  position: relative;
}

.yarpp-related h3:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #333;
  /* transform: translate(0%, -50%); */
}

.yarpp-related ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ccc;
}

.yarpp-related ul li:last-child {
  border: none;
}

.yarpp-related ul li a {
  position: relative;
  color: #333;
  font-weight: 500;
  padding: 0 0 0 30px;
}

.yarpp-related ul li a:before {
  position: absolute;
  font-size: 12px !important;
  line-height: normal;
  top: 50%;
  left: 14px;
  font-family: "Material Icons";
  content: "keyboard_arrow_right";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  color: #333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.yarpp-related ul li a:hover {
  color: #ccc;
}

/*-----ウィジェットメニュー関連-----*/
.menu-navimenu-container ul#menu-navimenu {
  border: solid 1px #e5e5e5;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.menu-navimenu-container ul#menu-navimenu li {
  border-bottom: solid 1px #e5e5e5;
}

.menu-navimenu-container ul#menu-navimenu li:last-child {
  border-bottom: none;
}

.menu-navimenu-container ul#menu-navimenu li a {
  color: #333;
  padding: 16px 12px 12px 12px;
  font-size: 14px;
  line-height: 160%;
  display: block;
}

.menu-navimenu-container ul#menu-navimenu li a:hover {
  background-color: #333;
  color: #fff;
}

/*-----404-----*/
.box-404 {
  text-align: center;
}

.box-404-cont {
  padding: 100px 0 100px 0;
}

.box-404-cont p:nth-child(1) {
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 16px;
}

@media only screen and (max-width: 480px) {
  div.wpcf7-validation-errors,
  div.wpcf7-acceptance-missing {
    font-size: 12px;
  }
  .form-kakunin-title {
    font-size: 12px;
  }
  /*-----投稿ページ（レイアウト）-----*/
  .page-cont p br {
    display: none;
  }
  /*-----関連記事-----*/
  .box-relation ul li div.relation-photo img {
    height: auto;
  }
  .yarpp-related h3 {
    padding: 0 0 0 24px !important;
    margin: 0 0 24px 0 !important;
    font-size: 18px !important;
  }
}