@charset "UTF-8";
/* 2, Contents */
/* 基本 */
.l-container {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container {
    width: 100%;
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 600px;
    margin-inline: auto;
  }
}

/* 小さい幅 */
.l-container-small {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 1090px) {
  .l-container-small {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-container-small {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 0 20px;
  }
}
/* ヘッダー用 */
.l-container-header {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SP&paddingなし */
@media screen and (max-width: 767px) {
  .l-container-sp-padding {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
/* 下層ページ */
.l-container-page {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  .l-container-page {
    width: 100%;
    padding: 0 20px;
  }
}
/* 投稿ページ */
.l-container-post {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 20px 0 20px;
}

@media screen and (max-width: 1090px) {
  .l-container-post {
    width: 100%;
    padding: 50px 20px 0 20px;
  }
}
/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  margin: auto;
  padding: 0px;
  z-index: 777;
  background-color: #fff;
}
@media screen and (max-width: 1090px) {
  header {
    height: 50px;
  }
}

/* IE 用 */
@media all and (-ms-high-contrast: none) {
  header {
    position: relative;
  }
}
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: #fff;
}

.l-header__left {
  padding: 9px 0 0 15px;
}
@media screen and (max-width: 1200px) {
  .l-header__left {
    padding: 9px 0 0 0px;
  }
}
@media screen and (max-width: 1090px) {
  .l-header__left {
    padding: 0px 0 0 0px;
  }
}

.l-header__branding a:hover {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .l-header__branding a img {
    width: 300px;
  }
}
@media screen and (max-width: 1090px) {
  .l-header__branding a img {
    width: 212px;
  }
}

.l-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0px;
  padding: 13px 20px 0 0;
}

@media screen and (max-width: 1090px) {
  .l-header__right {
    display: none;
  }
}
.l-header__contact > a {
  display: block flex;
  align-items: center;
  position: relative;
  width: 150px;
  height: 40px;
  background-color: #006737;
  color: #fff;
  border: 2px solid #006737;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 0 40px;
}
.l-header__contact > a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 16px;
  height: 13px;
  background: url("../img/icon-mail.png") no-repeat 50% 50%;
  background-size: cover;
}
.l-header__contact > a:hover {
  background-color: #fff;
  color: #006737;
  border: 2px solid #006737;
  opacity: 1;
}
.l-header__contact > a:hover::before {
  background: url("../img/icon-mail-white.png") no-repeat 50% 50%;
  background-size: cover;
}

.l-header__contact-sp > a {
  display: block flex;
  align-items: center;
  position: relative;
  width: 150px;
  height: 40px;
  margin: 30px auto 0 auto;
  background-color: #006737;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 0 40px;
}
.l-header__contact-sp > a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 16px;
  height: 13px;
  background: url("../img/icon-mail.png") no-repeat 50% 50%;
  background-size: cover;
}

.l-nav-sp {
  display: none;
}

@media screen and (max-width: 1090px) {
  .l-nav-sp {
    display: block;
  }
}
/* --------------------------
ブログ 全体
--------------------------- */
.l-single-content__content-outer {
  margin-bottom: 150px;
}

.l-single-content p {
  margin-bottom: 1.5em;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

.l-single-content img {
  margin-bottom: 1em;
}

.l-single-content ul,
.l-single-content ol {
  margin-bottom: 1.5em;
  line-height: 1.5;
}

.l-single-content h2 {
  margin: 2em 0 1em 0;
  font-size: 20px;
  line-height: 1.5;
}

.l-single-content h3 {
  margin: 2em 0 1em 0;
  font-size: 18px;
  line-height: 1.5;
}

.l-single-content h4 {
  margin: 2em 0 1em 0;
  font-size: 18px;
  line-height: 1.5;
}

.l-single-content h5 {
  margin: 2em 0 1em 0;
  font-size: 16px;
  line-height: 1.5;
}

.l-blog-content-row {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 60px;
  margin: 43px 0 100px 0;
}

@media screen and (max-width: 1090px) {
  .l-blog-content-row {
    grid-template-columns: 1fr;
    margin: 43px 0 150px 0;
  }
}
.l-blog-content-row--single {
  gap: 100px 60px;
}
.l-blog-content-row--single .l-blog-post-wrap {
  width: 100%;
  max-width: 752px;
}

/* ブログ 記事一覧
--------------------------- */
/* リストのリンク */
.l-blog-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 50px 0 20px 0;
  padding: 0px;
  text-align: center;
  line-height: 1;
  gap: 15px;
}

.l-blog-pagenation .page-numbers {
  display: inline-block;
  width: 45px;
  height: 45px;
  padding-top: 10px;
  background-color: #cecece;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers {
    width: 30px;
    height: 30px;
    padding-top: 9px;
    font-size: 14px;
  }
}
.l-blog-pagenation .page-numbers.current {
  background-color: #006737;
  color: #fff;
}

.l-blog-pagenation .page-numbers.prev,
.l-blog-pagenation .page-numbers.next {
  display: none;
  width: 100px;
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev,
  .l-blog-pagenation .page-numbers.next {
    width: 74px;
    font-size: 12px;
  }
}
.l-blog-pagenation .page-numbers.prev {
  position: absolute;
  top: 20px;
  left: 50px;
  padding-left: 5px;
}

@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev {
    left: 0px;
  }
}
.l-blog-pagenation .page-numbers.prev::after {
  content: "";
  position: absolute;
  top: 44%;
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #006737;
  border-right: 1px solid #006737;
  transform: rotate(-135deg);
}

.l-blog-pagenation .page-numbers.next {
  position: absolute;
  top: 20px;
  right: 50px;
  padding-right: 5px;
}

@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.next {
    right: 0px;
  }
}
.l-blog-pagenation .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #006737;
  border-right: 1px solid #006737;
  transform: rotate(45deg);
}

/* ブログ 個別記事
--------------------------- */
.l-single-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 1px solid #131313;
  border-bottom: 1px solid #131313;
  margin: 120px 0 240px 0;
  padding: 0px 0px;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .l-single-pagenation {
    font-size: 14px;
  }
}
.l-single-pagenation__prev,
.l-single-pagenation__next {
  width: 33.3%;
}

.l-single-pagenation__prev > a,
.l-single-pagenation__next > a {
  display: inline-block;
  position: relative;
}

.l-single-pagenation__prev a {
  padding-left: 35px;
}

.l-single-pagenation__prev a::after {
  content: "";
  position: absolute;
  top: 44%;
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(-135deg);
}

.l-single-pagenation__next a {
  padding-right: 35px;
}

.l-single-pagenation__next a::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
}

.l-single-pagenation__center {
  width: 33.3%;
}

.l-single-pagenation__center a {
  display: inline-block;
  width: 280px;
  height: 100%;
  padding: 20px 0;
  background-color: #f6f6f6;
}

@media screen and (max-width: 767px) {
  .l-single-pagenation__center a {
    width: 100%;
  }
}
/* page */
/* --------------------------
カスタム投稿 全体
--------------------------- */
.l-custom-title {
  position: relative;
  margin: 45px 0 90px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-custom-title {
    margin: 45px 0 30px 0;
  }
}
.l-custom__content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 20px 0 150px;
}

@media screen and (max-width: 767px) {
  .l-custom__content-wrap {
    padding: 20px 0 80px;
  }
}
.l-custom__content-wrap--single {
  padding-top: 40px;
}

.l-custom__content {
  width: 900px;
}

@media screen and (max-width: 1200px) {
  .l-custom__content {
    margin: auto;
  }
}
.l-custom__sidebar {
  margin-left: 13px;
  width: 230px;
}

@media screen and (max-width: 767px) {
  .l-custom__sidebar {
    width: 100%;
    margin-left: 0px;
  }
}
.l-custom-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
  padding: 20px 10px;
  text-align: center;
  line-height: 1;
  gap: 25px;
  border-top: 1px solid #c9c9c9;
}

@media screen and (max-width: 1200px) {
  .l-custom-pagenation {
    margin: 110px 0 150px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-custom-pagenation {
    margin: 50px 0 100px 0;
    padding: 20px 0px;
  }
}
.l-custom-pagenation .page-numbers {
  display: inline-block;
  width: 45px;
  height: 45px;
  padding-top: 10px;
  color: #fff;
  background-color: #cecece;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-custom-pagenation .page-numbers {
    width: 30px;
    height: 30px;
    padding-top: 6px;
    font-size: 14px;
  }
}
.l-custom-pagenation .page-numbers.current {
  background-color: #eca2a2;
}

.l-custom-pagenation .page-numbers.dots {
  background-color: transparent;
  color: #636f68;
}

.l-single-custom-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 1px solid #494c50;
  border-bottom: 1px solid #494c50;
  margin: 110px 0 250px 0;
  padding: 0px 0px;
  text-align: center;
  line-height: 1;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .l-single-custom-pagenation {
    margin: 80px 0 160px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-single-custom-pagenation {
    font-size: 14px;
  }
}
.l-single-custom-pagenation__prev,
.l-single-custom-pagenation__next {
  width: 33.3%;
}

.l-single-custom-pagenation__prev > a,
.l-single-custom-pagenation__next > a {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2.7px;
  color: #000;
}

@media screen and (max-width: 767px) {
  .l-single-custom-pagenation__prev > a,
  .l-single-custom-pagenation__next > a {
    padding-top: 2px;
    font-size: 14px;
  }
}
.l-single-custom-pagenation__prev a {
  padding-left: 35px;
}

.l-single-custom-pagenation__prev a::after {
  content: "";
  position: absolute;
  top: 44%;
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(-135deg);
}

.l-single-custom-pagenation__next a {
  padding-right: 35px;
}

.l-single-custom-pagenation__next a::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
}

.l-single-custom-pagenation__center {
  width: 33.3%;
}

.l-single-custom-pagenation__center a {
  display: inline-block;
  width: 280px;
  height: 100%;
  padding: 20px 0;
  background-color: #f6f6f6;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2.7px;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 767px) {
  .l-single-custom-pagenation__center a {
    padding: 20px 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .l-single-custom-pagenation__center a {
    width: 100%;
  }
}
.c-custom-heading__title {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 10px 33px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 3px solid #475555;
}

@media screen and (max-width: 767px) {
  .c-custom-heading__title {
    padding: 0 0 10px 25px;
    font-size: 18px;
    border-bottom: 2px solid #475555;
  }
}
.c-custom-heading__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 32px;
  border-radius: 2px;
  background-color: #66a5d1;
}

@media screen and (max-width: 767px) {
  .c-custom-heading__title .p-block03__title::before {
    width: 8px;
    height: 28px;
  }
}
/* page */
/* Sidebar */
.l-sidebar-wrap {
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 1090px) {
  .l-sidebar-wrap {
    margin: auto;
  }
}
.widget_categories,
.widget_tag_cloud {
  border: solid 1px #e2dede;
  padding: 20px;
  margin-bottom: 40px;
}

.wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.widget_categories > ul,
.widget_tag_cloud > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.widget_categories > ul li,
.widget_tag_cloud > ul li {
  width: calc(50% - 5px);
  margin-bottom: 0px;
}

.widget_categories > ul li a,
.widget_tag_cloud > ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #006737;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.79;
  letter-spacing: 1.4px;
  text-align: left;
  padding: 5px;
}

.widget_categories .wp-block-tag-cloud a,
.widget_tag_cloud .wp-block-tag-cloud a {
  display: block;
  position: relative;
  width: calc(50% - 5px);
  margin: 0;
  font-size: 10px !important;
  color: #006737;
}

.widget_categories .wp-block-tag-cloud a::before,
.widget_tag_cloud .wp-block-tag-cloud a::before {
  content: "#";
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.wp-block-heading {
  position: relative;
  padding: 11px 10px 12px 10px;
  background-color: #006737;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

.widget_recent_entries ul li {
  padding: 18px 0 20px 0;
  line-height: 1.75;
  border-bottom: 1px dotted #636f68;
}

.widget_recent_entries ul li:first-of-type {
  padding: 0 0 20px 0;
}

footer {
  position: relative;
}

.l-footer-block01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 70px 0 60px 0;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer-block01 {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01__brand {
    position: relative;
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01__right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01__address {
    text-align: center;
  }
}

.l-footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .l-footer-menu {
    gap: 0px;
  }
}
.l-footer-menu__item {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-footer-menu__item {
    width: 100%;
  }
}
.l-footer-menu__list {
  list-style-type: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-footer-menu__list {
    margin-bottom: 30px;
  }
}
.l-footer-menu__list > li > a {
  font-size: 20px;
  font-weight: bold;
  color: #006737;
}
.l-footer-menu__list--pt2 li {
  margin-bottom: 30px;
}
.l-footer-menu__list-children {
  padding: 10px 0 0 20px;
}
.l-footer-menu__list-children > li > a {
  font-size: 16px;
}

.l-footer-block02 {
  padding: 15px 0 15px 0;
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer-block02 {
    padding: 25px 0 25px 0;
  }
}

.l-footer-block02__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-footer-block02__inner {
    justify-content: center;
  }
}

.l-footer-block02__left {
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .l-footer-block02__left {
    width: 100%;
    margin-bottom: 14px;
  }
}
.l-footer-block02__list {
  display: flex;
  gap: 0 40px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-footer-block02__list {
    justify-content: center;
  }
}

.l-footer-block02__list li {
  position: relative;
  line-height: 1;
}

.l-footer-block02__list li:first-of-type::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -20px;
  width: 1px;
  height: 14px;
  background-color: #fff;
}

.l-footer-block02__list li a {
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

.l-footer-block02__right {
  width: fit-content;
  line-height: 1;
}

.l-footer-block02__copyright {
  font-size: 14px;
  color: #fff;
  font-style: normal;
  line-height: 1;
}
