@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* -------------------------------------
 *	ページレイアウト
--------------------------------------- */
/* -------------------------------------

　■ページ全体の変更方法（初期は幅950に設定されています）
  ・A にページ全体の幅を指定する
  ・B + 40 = A になるように B の値を指定する
  ・C + D + 40 + 20 = A になるように C と D の値を指定する

  ※サイドメニューの幅は C　、記事の枠の幅は D の値を変更
  ※余白(padding)の値を変えない場合の方法です
--------------------------------------- */
@media screen and (max-width: 767px) {
  #header_navi li {
    width: 25%;
  }
}
#content {
  padding-bottom: 50px;
}

.main_content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main_content a, .main_content a:link, .main_content a:visited {
  text-decoration: underline;
}

/*　右側の幅（サイドメニューの枠）　*/
#side {
  float: right;
  width: 230px; /* C */
  margin: 20px 20px 50px 0;
}
@media screen and (max-width: 767px) {
  #side {
    float: none;
    width: auto;
    margin: 10px 5% 10px 5%;
  }
  #side a {
    display: inline;
  }
}

/*　左側の幅（記事の枠）*/
#main {
  width: 700px; /* D */
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  #main {
    width: auto;
    float: none;
    padding: 4%;
  }
}

.main_column {
  padding: 20px;
}
.main_column p {
  margin-bottom: 1.7em;
  overflow: hidden;
}

/* --------------------------------------
　メイン
--------------------------------------- */
.entry_content {
  margin: 0 0 15px 0;
  border-bottom: solid 1px #7a7a7a;
  padding: 5px;
}
.entry_content:last-child {
  border-bottom: none;
}

/* 次の記事・前の記事 */
#entryNavi {
  margin: 0 0 15px 0;
}
#entryNavi .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 30px;
}
#entryNavi .pagination li {
  margin: 0 1rem;
}
#entryNavi .pagination .current {
  /*
  &:before{
  	content: "";
  	background: #c1000f;
  	background-size: contain;
  	width: 8px;
  	height: 8px;
  	display: block;
  	border-radius: 10px;
  	position: absolute;
  	top: -10px;
  }*/
}
#entryNavi .pagination .current a {
  text-decoration: none;
  color: #7a7a7a;
}
@media screen and (max-width: 767px) {
  #entryNavi a {
    display: inline;
  }
}

/* 記事の日時 */
.entry-date {
  margin-bottom: 10px !important;
}

/* 記事のタイトル */
.entry-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
}
.entry-title a {
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .entry-title {
    font-size: 21px;
  }
}

/* LOVEボタン */
.entryLove {
  margin: 5px 0;
}

/* 記事本文 */
.entryBody {
  margin: 15px 0 0 0;
  overflow: hidden;
}

/* 記事の情報 */
.entryState {
  margin-bottom: 20px;
}
.entryState li {
  display: inline-block;
  padding-left: 5px;
}
.entryState li a {
  display: inline-block;
  line-height: 1;
}

/* --------------------------------------
　記事の装飾
--------------------------------------- */
/* 画像 */
.pict {
  border: 1px #000000 solid;
  padding: 3px;
}

/* リスト */
.entryBody li {
  list-style: circle;
  margin: 0 0 0 15px;
}

/* --------------------------------------
　サイドメニュー
--------------------------------------- */
#side {
  font-size: 14px;
  /* サイドメニューの内容 */
}
#side .box_ttl {
  font-size: 14px;
  font-weight: bolder;
  margin: 0 0 10px 0;
}
#side .sideContents {
  margin: 0 0 30px 0;
}
#side input[type=text] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.7;
  margin-right: 10px;
  color: #333;
}

/* カレンダー */
.calendar_head {
  background-color: #f0f0f0 !important;
}
.calendar_head th:last-child {
  color: #0066CC;
}
.calendar_head th:first-child {
  color: #CC0000;
}

.calendar {
  margin: 0 0 60px 0;
}
.calendar table {
  background-color: #FFF;
  color: #000;
  width: 100%;
  position: relative;
}
.calendar table th, .calendar table td {
  text-align: center;
  line-height: 30px;
}
.calendar table th a, .calendar table td a {
  text-decoration: underline;
  color: #009 !important;
  background-color: #eee;
  font-weight: 700;
}
.calendar table th a:hover, .calendar table td a:hover {
  color: #069 !important;
}
.calendar table #prev, .calendar table #next {
  width: 40px;
  margin: 0 10px;
}
.calendar tfoot {
  position: absolute;
  bottom: -2.3em;
  left: 0;
  right: 0;
  margin: auto;
  padding: 5px 3px;
  background-color: #FFF;
}
.calendar tfoot tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.calendar .week th {
  width: 27px;
  font-weight: 400;
}

.service_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}
.service_button .fb_iframe_widget span {
  background: #fff;
  border: 1px solid #3C579D;
  cursor: pointer;
  border-radius: 3px;
  font-size: 11px;
  height: 17px;
  display: block;
  padding: 1px 5px;
  margin-left: 15px;
}
.service_button ._6a._6b {
  color: #fff !important;
  font-size: 10px !important;
}

.old_blog {
  display: block;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  border: solid 1px #fff;
}
/*# sourceMappingURL=blog.css.map */