@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto,Noto+Sans+JP:400,700|Noto+Serif+JP:400,700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1rem;
  text-align: justify;
  text-justify: inter-ideograph;
}

img {
  display: block;
  margin: 0;
  padding: 0;
}

.responsiveBox {
  width: 100%;
  margin: 0;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .responsiveBox {
    width: auto;
    margin: 0 20px;
  }
}

@media (min-width: 1025px) {
  .responsiveBox {
    width: 1025px;
    margin: 0 auto;
  }
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #0075b3;
}

a:hover {
  opacity: 0.8;
}

/*ヘッダー*/
.l-header_wrap {
  /*border-bottom: 4px solid #0075b3;*/
	background-color: #0c2275;
}

.l-header {
  background: #0c2275;
  height: 60px;
  top: 0;
  left: 0;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .l-header {
    height: auto;
  }
}

@media (min-width: 1025px) {
  .l-header {
    height: auto;
  }
}

/*ドロワー*/
.l-drawer {
  position: relative;
}

@media (min-width: 1025px) {
  .l-drawer {
    display: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
  }
}

.l-drawer__checkbox {
  display: none;
}

.l-drawer__icon {
  cursor: pointer;
  display: block;
  width: 56px;
  height: 56px;
  position: fixed;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-drawer__icon-parts, .l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  background-color: #000;
  display: block;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  content: ' ';
}

.l-drawer__icon-parts:before {
  top: 10px;
}

.l-drawer__icon-parts:after {
  top: -16px;
}

.l-drawer__overlay {
  background: #000;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}

.l-drawer__menu {
  background: #ffffff;
  color: #000;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: -100%;
}

.l-drawer__menu img {
  width: 200px;
  height: auto;
  margin: 10px auto;
}

.l-drawer__item.parent_cat {
  background-color: #eee;
  width: 100%;
  clear: both;
}

.l-drawer__item.child_cat {
  float: left;
  width: calc(100% / 3);
  text-align: center;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}

.l-drawer__item.latest_post {
  text-align: center;
  margin-bottom: 1em;
}

.l-drawer__item.latest_post::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  margin-left: 0.5em;
}

.l-drawer__item.latest_post svg {
  fill: #333;
  vertical-align: middle;
  height: 17px;
  width: auto;
  margin-right: 0.5em;
}

.l-drawer__item strong {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  display: block;
}

.l-drawer__item p {
  font-size: 17px;
  font-size: 1.0625rem;
  text-align: center;
  padding: 0.3em 0;
}

.l-drawer__item a {
  padding: 0.6em 0;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  display: inline-block;
}

.l-drawer__icon {
  z-index: 4;
}

.l-drawer__menu {
  z-index: 3;
}

.l-drawer__overlay {
  z-index: 2;
}

.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts {
  background: transparent;
}

.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}

.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

.l-drawer__checkbox:checked ~ .l-drawer__overlay {
  opacity: 0.3;
  pointer-events: auto;
}

.l-drawer__checkbox:checked ~ .l-drawer__menu {
  left: 0;
}

.l-drawer__icon-parts, .l-drawer__icon-parts:after, .l-drawer__icon-parts:before, .l-drawer__overlay, .l-drawer__menu {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.logo {
  width: 200px;
  margin: 0 auto;
  display: block;
  padding: 10px 0;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .logo {
    padding: 10px 0;
    width: 200px;
  }
}

@media (min-width: 1025px) {
  .logo {
    margin-left: 0;
    padding: 20px 0;
    width: 334px;
  }
}

.logo a {
  text-align: center;
  display: block;
  color: #fff;
  line-height: 36px;
}

.logo a img {
  height: 40px;
  width: auto;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .logo a img {
    margin: 0 auto;
  }
}

@media (min-width: 1025px) {
  .logo a img {
    height: 66px;
	margin-top: 0px;
  }
}

.grid-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.grid-row .grid-item2 {
  width: calc( (100% - 20px * (2 - 1)) / 2 - 0.1px);
  margin-right: 5px;
  margin-left: 5px;
  margin-bottom: 20px;
}

.grid-row {
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: -20px;
}

.grid-row .grid-item3 {
  width: calc( (100% - 30px * (3 - 2)) / 3 - 0.1px);
  margin-right: 5px;
  margin-left: 5px;
  margin-bottom: 20px;
}

.grid-row {
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: -20px;
}

.grid-row .grid-item4 {
  width: calc( (100% - 20px * (2 - 1)) / 2 - 0.1px);
  margin-right: 5px;
  margin-left: 5px;
  margin-bottom: 20px;
}

.grid-row {
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: -20px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .grid-row .grid-item4 {
    width: calc( (100% - 40px * (4 - 3)) / 4 - 0.1px);
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 20px;
  }
  .grid-row {
    margin-right: -5px;
    margin-left: -5px;
    margin-bottom: -20px;
  }
}

@media (min-width: 1025px) {
  .grid-row .grid-item4 {
    width: calc( (100% - 40px * (4 - 3)) / 4 - 0.1px);
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 20px;
  }
  .grid-row {
    margin-right: -5px;
    margin-left: -5px;
    margin-bottom: -20px;
  }
}

.grid-row .grid-w10p,
.grid-row .grid-w20p,
.grid-row .grid-w30p,
.grid-row .grid-w40p,
.grid-row .grid-w50p,
.grid-row .grid-w60p,
.grid-row .grid-w70p,
.grid-row .grid-w80p,
.grid-row .grid-w90p,
.grid-row .grid-w100p {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .grid-row .grid-w10p,
  .grid-row .grid-w20p,
  .grid-row .grid-w30p,
  .grid-row .grid-w40p,
  .grid-row .grid-w50p,
  .grid-row .grid-w60p,
  .grid-row .grid-w70p,
  .grid-row .grid-w80p,
  .grid-row .grid-w90p,
  .grid-row .grid-w100p {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 1025px) {
  .grid-row .grid-w10p,
  .grid-row .grid-w20p,
  .grid-row .grid-w30p,
  .grid-row .grid-w40p,
  .grid-row .grid-w50p,
  .grid-row .grid-w60p,
  .grid-row .grid-w70p,
  .grid-row .grid-w80p,
  .grid-row .grid-w90p,
  .grid-row .grid-w100p {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .grid-row .grid-w10p {
    width: 10%;
  }
  .grid-row .grid-w20p {
    width: 20%;
  }
  .grid-row .grid-w30p {
    width: 30%;
  }
  .grid-row .grid-w40p {
    width: 40%;
  }
  .grid-row .grid-w50p {
    width: 50%;
  }
  .grid-row .grid-w60p {
    width: 60%;
  }
  .grid-row .grid-w70p {
    width: 70%;
  }
  .grid-row .grid-w80p {
    width: 80%;
  }
  .grid-row .grid-w90p {
    width: 90%;
  }
  .grid-row .grid-w100p {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .grid-row .grid-w10p {
    width: 10%;
  }
  .grid-row .grid-w20p {
    width: 20%;
  }
  .grid-row .grid-w30p {
    width: 30%;
  }
  .grid-row .grid-w40p {
    width: 40%;
  }
  .grid-row .grid-w50p {
    width: 50%;
  }
  .grid-row .grid-w60p {
    width: 60%;
  }
  .grid-row .grid-w70p {
    width: 70%;
  }
  .grid-row .grid-w80p {
    width: 80%;
  }
  .grid-row .grid-w90p {
    width: 90%;
  }
}

.sect__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.5em 1em;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .sect__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 1025px) {
  .sect__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.search-container_wrap {
  background-color: #eee;
}

.search-container {
  padding: 15px 20px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .search-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 15px 20px;
  }
}

@media (min-width: 1025px) {
  .search-container {
    padding: 25px 0;
  }
}

.search-container p {
  text-align: left;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .search-container p {
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .search-container p {
    text-align: center;
  }
}

.search-container__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.search-container__form form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-container__form input {
  width: 67%;
  border: 1px solid #ccc;
  padding: 0.5em;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .search-container__form input {
    width: 80%;
  }
}

@media (min-width: 1025px) {
  .search-container__form input {
    width: 85%;
    padding: 0.75em;
  }
}

.search-container__form button {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #0075b3;
  padding: 0.6em;
  width: 30%;
  border: none;
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: linear .2s;
  transition: linear .2s;
  margin-left: auto;
}

.search-container__form button:hover {
  background-color: #8fd8ff;
  color: #0075b3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .search-container__form button {
    width: 17%;
  }
}

@media (min-width: 1025px) {
  .search-container__form button {
    width: 14%;
    padding: 0.8em 0.5em;
  }
}

.current-post_wrap {
  background-color: #ffe6eb;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post_wrap {
    padding: 30px 20px 60px;
  }
}

@media (min-width: 1025px) {
  .current-post_wrap {
    padding: 30px 0 80px;
  }
}

.current-post {
  margin: 0 0 20px;
  padding-top: 40px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post {
    margin: 0 auto 0;
  }
}

@media (min-width: 1025px) {
  .current-post {
    margin: 0 auto 0;
    padding-top: 30px;
  }
}

.current-post .grid-row {
  margin-right: 0;
  margin-left: 0;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post .grid-w30p {
    width: 40%;
  }
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post .grid-w70p {
    width: 60%;
  }
}

.current-post .sect__title {
  padding: 0;
}

.current-post .sect__title a {
  color: #333;
  position: relative;
  padding-left: 1.5em;
  display: block;
  line-height: 1.3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post .sect__title a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1025px) {
  .current-post .sect__title a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.current-post .sect__title a svg {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: auto;
  fill: #0c2275;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post .sect__title a svg {
    height: 24px;
  }
}

@media (min-width: 1025px) {
  .current-post .sect__title a svg {
    height: 24px;
  }
}

.current-post_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post_img {
    padding: 0;
  }
}

@media (min-width: 1025px) {
  .current-post_img {
    padding: 0;
  }
}

.current-post_img figure {
  width: 100%;
  padding-left: 80px;
  background-image: url(../img/icon_current_blue.png);
  background-size: 70px 70px;
  background-repeat: no-repeat;
  background-position: left top;
}

.current-post_img figure img {
  width: 100%;
  height: auto;
}

.current-post_index {
  padding: 30px 20px 60px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .current-post_index {
    padding: 0 0 0 20px;
  }
}

@media (min-width: 1025px) {
  .current-post_index {
    padding: 0 0 0 20px;
  }
}

.current-post_index ul {
  margin-top: 1.0em;
}

.current-post_index ul li {
  padding: 0.5em 0;
}

.current-post_index ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  padding-left: 1.5em;
  position: relative;
  line-height: 1.3;
  color: #333;
}

.current-post_index ul li a:hover {
  color: #0075b3;
}

.current-post_index ul li a svg {
  position: absolute;
  top: 2px;
  left: 0;
  width: auto;
  height: 14px;
  fill: #0075b3;
}

.current-post_index__archive {
  display: block;
  width: 100%;
  margin: 1em auto 0 80px;
  padding: 0.3em 1em;
  text-align: center;
  border-radius: 3px;
  background-color: #0075b3;
  color: #fff;
}

.current-post_index__archive::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-left: 0.5em;
}

.backnumber {
  padding: 60px 20px 80px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .backnumber {
    padding: 0;
    margin-bottom: 60px;
  }
}

@media (min-width: 1025px) {
  .backnumber {
    padding: 0;
    margin-bottom: 60px;
  }
}

.backnumber .sect__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .backnumber .sect__title {
    padding-top: 30px;
  }
}

@media (min-width: 1025px) {
  .backnumber .sect__title {
    padding-top: 50px;
  }
}

.backnumber .sect__title::after {
  font-family: sans-serif;
  font-weight: normal;
  content: "Back Number";
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
  display: block;
}

.backnumber .grid-row {
  margin-top: 1em;
}

.backnumber figure {
  width: 100%;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .backnumber figure {
    overflow: hidden;
  }
}

@media (min-width: 1025px) {
  .backnumber figure {
    overflow: hidden;
  }
}

.backnumber figure img {
  width: 100%;
  height: auto;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .backnumber figure img {
    width: 100%;
    max-height: 250px;
  }
}

@media (min-width: 1025px) {
  .backnumber figure img {
    width: auto;
    height: 350px;
  }
}

.backnumber figure figcaption {
  display: block;
  width: 100%;
  color: #333;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .backnumber figure figcaption {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: .5em;
  }
}

@media (min-width: 1025px) {
  .backnumber figure figcaption {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 1em;
  }
}

.pagination {
  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;
  margin: 0;
  padding: 30px 0;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #e6f1f7;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .pagination {
    padding-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .pagination {
    padding-bottom: 40px;
  }
}

.pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px 12px;
  border: 1px solid #0075b3;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
}

/* ページ番号 */
.pagination .pager {
  width: 32px;
  display: none;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .pagination .pager {
    display: inline-block;
  }
}

@media (min-width: 1025px) {
  .pagination .pager {
    display: inline-block;
  }
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current a {
  color: #fff;
  background-color: #0075b3;
}

.pagination a:hover {
  opacity: 1;
}

/* 前へ */
.pagination a.prev {
  margin-right: 5px;
}

/* 次へ */
.pagination a.next {
  margin-left: 5px;
}

/* 最初へ */
/* 最後へ */
/* Page x / y */
.pagination span.page_num {
  display: none;
}

footer {
  background-color: #0075b3;
  margin-top: 0;
}

footer .ftNav {
  display: block;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  footer .ftNav {
    width: 70%;
    margin: 0 auto;
  }
}

@media (min-width: 1025px) {
  footer .ftNav {
    width: 70%;
    margin: 0 auto;
  }
}

footer .ftNav .grid-row {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding: 30px 0;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  footer .ftNav .grid-row {
    padding: 60px 0;
  }
}

@media (min-width: 1025px) {
  footer .ftNav .grid-row {
    padding: 60px 0;
  }
}

footer .ftNav .grid-item2 {
  margin: .5em 0;
  text-align: center;
  width: 100%;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  footer .ftNav .grid-item2 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    width: 50%;
  }
}

@media (min-width: 1025px) {
  footer .ftNav .grid-item2 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    width: 50%;
  }
}

footer .ftNav .grid-item2 a {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  footer .ftNav .grid-item2 a {
    text-decoration: none;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  footer .ftNav .grid-item2 a {
    text-decoration: none;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

footer .ftNav .grid-item2 a:hover {
  text-decoration: underline;
}

footer .copyright {
  text-align: center;
  padding: 0.8em 0;
  color: #333;
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #fff;
}

footer .dbook {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 10px 18px;
  line-height: 1.4;
}

footer .dbook svg {
  fill: #fff;
  height: 17px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.4em;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background-color: #0075b3;
  border: 1px solid #e6f1f7;
  opacity: .8;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  color: #fff;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .scroll-top {
    bottom: 20px;
  }
}

@media (min-width: 1025px) {
  .scroll-top {
    bottom: 20px;
  }
}

.scroll-top:focus {
  outline: none;
}

.scroll-top .fas {
  color: #e6f1f7;
}

.scroll-top:hover {
  cursor: pointer;
}

.monthly-post {
  margin-top: 30px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post .grid-row {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .monthly-post .grid-row {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

.monthly-post__heading {
  margin-bottom: 80px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__heading {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .monthly-post__heading {
    margin-left: auto;
    margin-right: auto;
  }
}

.monthly-post__heading .grid-row {
  margin-right: 0;
  margin-left: 0;
}

.monthly-post__heading .grid-row .grid-w70p,
.monthly-post__heading .grid-row .grid-w100p {
  padding: 0 20px;
}

.monthly-post__heading .sect__title {
  color: #333;
  position: relative;
  padding: 0 0 0 1.5em;
  display: block;
  line-height: 1.3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__heading .sect__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1025px) {
  .monthly-post__heading .sect__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.monthly-post__heading .sect__title svg {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: auto;
  fill: #0075b3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__heading .sect__title svg {
    height: 24px;
  }
}

@media (min-width: 1025px) {
  .monthly-post__heading .sect__title svg {
    height: 24px;
  }
}

.monthly-post__img {
  width: 50%;
  margin: 20px auto;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__img {
    width: 50%;
    margin-top: 0;
    padding-left: 15px;
  }
}

@media (min-width: 1025px) {
  .monthly-post__img {
    width: 40%;
    margin-top: 0;
  }
}

.monthly-post__img img {
  width: 100%;
}

.monthly-post__text {
  margin-top: 1em;
  padding: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__text {
    padding-left: 0;
  }
}

@media (min-width: 1025px) {
  .monthly-post__text {
    padding-left: 0;
  }
}

.monthly-post .monthly-post__article_wrap {
  background-color: #e6f1f7;
}

.monthly-post__article {
  margin-left: auto;
  margin-right: auto;
}

.monthly-post__article .sect__title {
  padding: 2em 20px;
  text-align: center;
  background-color: #e6f1f7;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__article .sect__title {
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }
}

@media (min-width: 1025px) {
  .monthly-post__article .sect__title {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
}

.monthly-post__article .sect__title strong {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  margin-left: 0.3em;
}

.monthly-post__article_list {
  background-color: #fff;
  padding-bottom: 30px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__article_list {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1025px) {
  .monthly-post__article_list {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.monthly-post__article_list li {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.monthly-post__article_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #ddd;
  padding: 20px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__article_list li a {
    padding: 20px 0;
  }
}

@media (min-width: 1025px) {
  .monthly-post__article_list li a {
    padding: 40px 0;
  }
}

.monthly-post__article_list li a figure {
  width: 30%;
  margin: 0 auto 0.5em;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__article_list li a figure {
    width: 20%;
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .monthly-post__article_list li a figure {
    width: 20%;
    margin: 0;
  }
}

.monthly-post__article_list li a figure img {
  width: 100%;
  height: auto;
}

.monthly-post__article_list li a p {
  width: 70%;
  color: #333;
  padding-right: 1em;
  line-height: 1.3;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: normal;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__article_list li a p {
    width: 80%;
  }
}

@media (min-width: 1025px) {
  .monthly-post__article_list li a p {
    width: 80%;
    font-size: 16px;
    font-size: 1rem;
  }
}

.monthly-post__article_list li a p.no-thumb {
  width: 100%;
  padding-right: 0;
}

.monthly-post__article_list li a p strong {
  display: block;
  font-weight: bold;
  position: relative;
  padding-left: 1.5em;
  font-size: 17px;
  font-size: 1.0625rem;
  margin-bottom: 0.5em;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__article_list li a p strong {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 1025px) {
  .monthly-post__article_list li a p strong {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.monthly-post__article_list li a p strong svg {
  position: absolute;
  top: 3px;
  left: 0;
  fill: #0075b3;
  height: 16px;
  width: auto;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .monthly-post__article_list li a p strong svg {
    height: 18px;
  }
}

@media (min-width: 1025px) {
  .monthly-post__article_list li a p strong svg {
    height: 20px;
  }
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.wp-block-bod-modal-block {
  padding-bottom: 20px;
}

.single-article {
  margin-top: 0;
}

.single-article strong,
.single-article b {
  font-weight: bold;
}

.single-article .single-article_wrap {
  padding-top: 50px;
  background-color: #e6f1f7;
}

.single-article__detail {
  margin-left: 0;
  margin-right: 0;
  background-color: #fff;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__detail {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (min-width: 1025px) {
  .single-article__detail {
    margin-left: auto;
    margin-right: auto;
    width: 1025px;
    overflow: hidden;
  }
}

.single-article__detail .sect__title {
  color: #333;
  position: relative;
  padding: 0 0 0.5em 1.5em;
  display: block;
  line-height: 1.3;
  margin: 40px 20px 0;
  border-bottom: 1px solid #0075b3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__detail .sect__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1025px) {
  .single-article__detail .sect__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.single-article__detail .sect__title svg {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: auto;
  fill: #0075b3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__detail .sect__title svg {
    height: 24px;
  }
}

@media (min-width: 1025px) {
  .single-article__detail .sect__title svg {
    height: 24px;
  }
}

.single-article__text {
  margin: 1em 20px 0;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__text {
    font-size: 16px;
    font-size: 1rem;
    width: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 0 20px;
  }
}

@media (min-width: 1025px) {
  .single-article__text {
    font-size: 16px;
    font-size: 1rem;
    width: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 0 20px;
  }
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__text.no-thumb {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .single-article__text.no-thumb {
    width: 100%;
  }
}

.single-article__text h2 {
  font-size: 18px;
  margin-bottom: 15px;
  padding: 0.5em;
  /*文字周りの余白*/
  color: #010101;
  /*文字色*/
  background: #eaf3ff;
  /*背景色*/
  border-bottom: solid 3px #516ab6;
  /*下線*/
}

.single-article__text h3 {
  font-size: 17px;
  margin-bottom: 15px;
  padding: 0.4em 0.5em;
  /*文字の上下 左右の余白*/
  color: #494949;
  /*文字色*/
  background: #ededed;
  /*背景色*/
  border-left: 5px solid #364e96;
}

.single-article__text h4 {
  font-size: 16px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  /*上下の余白*/
  border-bottom: solid 4px #ddd;
  /*下線*/
}

.single-article__text h4::before {
  content: "■";
  color: #7db4e6;
  /*左線*/
  margin-right: 0.3em;
}

.single-article__text h5 {
  border-bottom: solid 2px #cce4ff;
  position: relative;
  margin-bottom: 15px;
}

.single-article__text h5:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #5472cd;
  bottom: -2px;
  width: 20%;
}

.single-article__text h6 {
  /*線の種類（点線）1px 線色*/
  border-bottom: dashed 1px #6594e0;
  margin-bottom: 15px;
}

.single-article__date_wrap {
  background-color: #e6f1f7;
}

.single-article__date {
  line-height: 1;
  display: inline-block;
  padding: 1em 1.5em;
  background-color: #0075b3;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}

.single-article__date::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f133";
  margin-right: 0.5em;
}

.single-article__img {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  margin-top: 1em;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__img {
    padding-right: 20px;
    margin-bottom: 1em;
    width: 35%;
    float: right;
  }
}

@media (min-width: 1025px) {
  .single-article__img {
    padding-right: 20px;
    margin-bottom: 1em;
    width: 35%;
    float: right;
  }
}

.single-article__img img {
  width: 100%;
  height: auto;
}

.single-article__nav {
  background-color: #fff;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__nav {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (min-width: 1025px) {
  .single-article__nav {
    width: 1025px;
    margin-left: auto;
    margin-right: auto;
  }
}

.single-article__nav .grid-row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 40px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__nav .grid-row {
    margin-bottom: 0;
    margin-top: 0;
  }
}

@media (min-width: 1025px) {
  .single-article__nav .grid-row {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.single-article__nav .grid-row .grid-item2 {
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  width: 50%;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__nav .grid-row .grid-item2 {
    margin-bottom: 0;
  }
}

@media (min-width: 1025px) {
  .single-article__nav .grid-row .grid-item2 {
    margin-bottom: 0;
  }
}

.single-article__nav .grid-row .grid-item2 a {
  background-color: #fff;
  border: 1px solid #eee;
  display: block;
  padding: 1em;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-size: 0.75rem;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__nav .grid-row .grid-item2 a {
    padding: 1.5em;
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 1025px) {
  .single-article__nav .grid-row .grid-item2 a {
    padding: 1.5em;
    font-size: 16px;
    font-size: 1rem;
  }
}

.single-article__nav .grid-row .grid-item2 a.disabled {
  display: none;
}

.single-article__nav .grid-row .grid-item2 a.single-article__nav_prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  margin-right: 0.5em;
  font-size: 14px;
  font-size: 0.875rem;
}

.single-article__nav .grid-row .grid-item2 a.single-article__nav_next::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  margin-left: 0.5em;
  font-size: 14px;
  font-size: 0.875rem;
}

.single-article__nav_lastmonth {
  background-color: #e6f1f7;
  padding-top: 20px;
  padding-bottom: 40px;
}

.single-article__nav_lastmonth a {
  width: 200px;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  padding: 0.8em;
  text-align: center;
  background-color: #0075b3;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article__nav_lastmonth a {
    font-size: 16px;
    font-size: 1rem;
    width: 260px;
  }
}

@media (min-width: 1025px) {
  .single-article__nav_lastmonth a {
    font-size: 16px;
    font-size: 1rem;
    width: 260px;
  }
}

.single-article__nav_lastmonth a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  margin-left: 0.5em;
}

.single-article__nav_lastmonth a svg {
  fill: #fff;
  height: 17px;
  width: auto;
  margin-right: 0.5em;
  vertical-align: middle;
}

.single-article .yarpp-related .monthly-post__article .sect__title {
  background-color: #fff;
  padding-bottom: 10px;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article .yarpp-related .monthly-post__article .sect__title {
    padding: 30px 20px 0;
    margin-bottom: 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1025px) {
  .single-article .yarpp-related .monthly-post__article .sect__title {
    padding: 30px 0 0;
    margin-bottom: 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1025px) {
  .single-article .yarpp-related .monthly-post__article .monthly-post__article_list {
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article .yarpp-related .monthly-post__article .monthly-post__article_list li {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .single-article .yarpp-related .monthly-post__article .monthly-post__article_list li {
    width: 100%;
  }
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .single-article .yarpp-related .monthly-post__article .monthly-post__article_list li a {
    min-height: 150px;
  }
}

@media (min-width: 1025px) {
  .single-article .yarpp-related .monthly-post__article .monthly-post__article_list li a {
    min-height: 150px;
  }
}

.bod-block-popup-overlay.active {
  background-color: rgba(33, 33, 33, 0.5) !important;
}

.bod-block-popup {
  border-radius: 0 !important;
}

.bod-block-popup h2 {
  display: none !important;
}

.bod-block-popup-closer {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.wp-block-bod-modal-block .trigger_image {
  margin: 1.5em auto;
  width: 90%;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .wp-block-bod-modal-block .trigger_image {
    width: 70%;
  }
}

@media (min-width: 1025px) {
  .wp-block-bod-modal-block .trigger_image {
    width: 50%;
  }
}

.wp-block-image {
  margin-bottom: 0 !important;
}

.wp-block-table {
  overflow: auto;
}

.wp-block-table table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
  margin-bottom: 1em;
}

.wp-block-table th,
.wp-block-table td {
  white-space: nowrap;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 0.5em;
}

@media (min-width: 1025px) {
  .wp-block-table th,
  .wp-block-table td {
    white-space: normal;
  }
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .wp-block-table th,
  .wp-block-table td {
    white-space: normal;
  }
}

.search-result {
  margin-top: 0;
}

@media (min-width: calc( 600px + 1px)) and (max-width: calc( 1025px - 1px)) {
  .search-result .monthly-post__article .sect__title {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.search-result .monthly-post__article .sect__title strong {
  color: #0075b3;
}

@media (min-width: 1025px) {
  .search-result .monthly-post__article .sect__title strong {
    display: block;
    width: 1025px;
    margin-right: auto;
    margin-left: auto;
  }
}

.search-result .monthly-post__article .sect__title strong::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  margin-right: 0.5em;
}

@media (min-width: 1025px) {
  .search-result .monthly-post__article_list {
    width: 1025px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
}
/*# sourceMappingURL=style.css.map */