/*
Theme Name: Type25F
Theme URI: http://example.com/type25f/
Author: 作成者名
Author URI: http://example.com/
Description: モダンでシンプルなWordPressテーマ「Type25F」。2025年向けに最適化されたレスポンシブデザイン。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: type25f
Tags: responsive-layout, custom-menu, featured-images, blog
*/

/* **************************************************
	reset
************************************************** */
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  word-break: break-all;
}
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}
body {
  width: 100%;
  height: 100%;
  font-family: 'Zen Maru Gothic', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #696964;
  /* background-color: #f8f8f8; */
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
input,
button,
select,
textarea {
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
a {
  color: #696964;
  text-decoration: none;
  word-break: break-all;
}
a:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/* Chrome, Safari, Edge 対応 */
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
input[type="search"]::-moz-search-clear-button {
    display: none;
}
/* **************************************************
	common
************************************************** */
#page {
  width: 100%;
  padding: 0;
  margin: 0;
}
/* サイト全体の共通コンテナスタイル */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}


/* アンカーリンクのスクロール位置調整 */
[id] {
    scroll-margin-top: 100px; /* ヘッダーの高さに合わせて調整 */
}

/* 見出し要素 */
/*
h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #008000;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.9rem;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    font-weight: 500;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

h5 {
    font-size: 1.2rem;
    font-weight: 500;
}

h6 {
    font-size: 1.1rem;
    font-weight: 500;
}
*/

/* br */
.br-pc {
  display: inline !important;
}
.br-sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none !important;
  }
  .br-sp {
    display: inline !important;
  }
}

/* ボタン */
.button {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.0rem;
  padding: 14px 27px 16px 27px;
  color: #ffffff;
  border-radius: 9999px;
  background: #80bc81;
}

/* **************************************************
	ヘッダー 
************************************************** */
.site-header {
  position: fixed; /* 絶対位置から固定位置に変更 */
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の背景 */
  box-shadow: none;
  z-index: 999;
  height: 80px;
}

.header-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 0 35px 0 0;
}

/* サイトタイトル */
.site-branding {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  background: #80bc81;
  border-radius: 0 9999px 9999px 0;
  padding: 9px 46px 13px 47px;
  height: 100%;
}

.site-branding::before {
  position: absolute;
  content: '';
  top: 0;
  right: 99%;
  height: 100%;
  width: 9999px;
  background: #80bc81;
}

.site-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}

.site-title a {
  color: #ffffff;
}

.site-subtitle {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
  letter-spacing: 1px;
}

@media screen and (max-width: 992px) {
  .header-flex-container {
    padding-right: 20px;
  }
  .site-branding {
    padding: 13px 50px 13px 20px;
    gap: 5px;
  }
  .site-title {
    font-size: 2.0rem;
  }
  .site-subtitle {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .header-flex-container {
    padding-right: 80px;
  }
}
@media screen and (max-width: 480px) {
  .site-branding {
    padding: 13px 30px 13px 15px;
    gap: 7px;
  }
  .site-title {
    font-size: 1.6rem;
  }
  .site-subtitle {
    font-size: 1.0rem;
  }
}

/* **************************************************
	グローバルナビゲーション(PC)
************************************************** */
.main-navigation {
    flex: 0 1 auto;
    width: auto;
    margin: 0 auto;
    padding: 0 45px 0 27px;
    /* 
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 1em;*/
}

.main-navigation ul {
  width: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 40px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.main-navigation ul::after {
  content: '';
  display: block;
  flex: 1 1 auto;
  width: 1px;
}

.main-navigation li {
    position: relative;
}


.main-navigation a {
  display: block;
  color: #696964;
  padding: 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  transition: all 0.3s;
}

.btn-hd-contact {
  flex: 0 0 auto;
  display: block;
  font-size: 1.6rem;
  line-height: 2.0rem;
  letter-spacing: 1px;
  padding: 14px 27px 16px 68px;
  color: #ffffff;
  border-radius: 9999px;
  background: #80bc81 url(./documents/hd-icon-mail.svg) no-repeat left 25px center;
  background-size: 33px;
}
.btn-hd-contact span{
  display: inline-block;
}

/*  */
@media screen and (max-width: 992px) {
  .main-navigation {
    padding: 0 20px;
  }
  .main-navigation ul {
    gap: 0 0.5em;
  }
  .main-navigation a {
    font-size: 1.4rem;
  }
  .btn-hd-contact {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .btn-hd-contact {
    width: 54px;
    height: 54px;
    content: '';
    padding: 0;
    background: #80bc81 url(./documents/hd-icon-mail.svg) no-repeat center center;
    background-size: 27px;
  }
  .btn-hd-contact span{
    display: none;
  }
}

/* **************************************************
	グローバルナビゲーション(SP)
************************************************** */
/* グロナビを開いている間背景を固定するクラス */
.bg_fixed {
  overflow: hidden;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* グロナビ(SP) */
#sp-menu-wrap {
  opacity: 0;
  transition: 0.3s;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  overflow-y: auto;
  z-index: -1;
  background-color: transparent;
  padding: 0;
  flex-wrap: nowrap;
  align-self: stretch;
}

#sp-menu-wrap.active {
  display: block;
  z-index: 9999;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

.sp-menu-bg {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.sp-menu-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background-color: #ffffff;
  margin: 0 0 0 auto;
  padding: 80px 0 0;
  transition: 0.5s;
  right: -300px;
}
#sp-menu-wrap.active .sp-menu-container{
  right: 0;
}

#sp-menu {
  border-top: 1px solid #ccc;
}
#sp-menu li{
  border-bottom: 1px solid #ccc;
}
#sp-menu li a{
  display: block;
  padding: 0.8em 1em;
}


/* メニュー開閉ボタン */
#sp-menu-toggle {
  position: fixed;
  width: 60px;
  height: 60px;
  z-index: 999999;
  top: 10px;
  right: 10px;
}

/* メニュー開閉ボタン */
#sp-menu-toggle {
  display: none;
  position: fixed;
  top: 14px;
  right: 10px;
  width: 54px;
  height: 54px;
  z-index: 99999;
  background-color: #61A77D;
  border-radius: 999px;
}
.sp-menu-trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.sp-menu-trigger:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

.sp-menu-trigger span {
  position: absolute;
  background: #FFF;
  top: 17px;
  right: 15px;
  transition: all 0.4s;
  border-radius: 3px;
  width: 24px;
  height: 3px;
  -webkit-tap-highlight-color: transparent;
}
.sp-menu-trigger span:nth-of-type(2) {
  top: 26px;
}
.sp-menu-trigger span:nth-of-type(2):after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  transition: all 0.4s;
  background: #FFF;
}
.sp-menu-trigger span:nth-of-type(3) {
  top: 35px;
}
.sp-menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
.sp-menu-trigger.active span:nth-of-type(2) {
  width: 28px;
  transform: rotate(-45deg);
  top: 25px;
  right: 13px;
}
.sp-menu-trigger.active span:nth-of-type(2):after {
  width: 28px;
  transform: rotate(90deg);
}
.sp-menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) scale(0);
}

@media screen and (max-width: 992px) {

}
@media screen and (max-width: 768px) {
  #sp-menu-toggle {
    display: block;
  }
}


/* メインコンテンツ */
#site-content {
  width: 100%;
  margin: 0;
  padding: 80px 0 0;
}



/* **************************************************
	フッター
************************************************** */
footer {
  padding: 46px 0 20px;
  text-align: center;
  background-color: #ffffff;
}

.footer-logo {
   margin-bottom: 19px;
}

.footer-logo .custom-logo {
    max-width: 220px;
    height: auto;
}

.footer-copyright {
  font-size: 1.0rem;
  line-height: 1.5;
  text-align: center;
}

#page_top {
  position: fixed;
  bottom: 352px;
  right: 24px;
  width: 64px;
  height: 64px;
  z-index: 999;

}
#page_top a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 100;
  font-size: 0;
  line-height: 0;
  border-radius: 9999px;
  background: #80BC81 url('./documents/page-top.png') no-repeat center center;
  background-size: cover;
  -webkit-tap-highlight-color:transparent;
}

@media screen and (max-width: 768px) {
  #page_top {
    bottom: 10px;
    right: 10px;
  }
  #page_top a:hover {
    opacity: 1.0;
  }
}

/* **************************************************
  投稿ページ一覧
************************************************** */

/* **************************************************
	固定ページ・投稿ページ
************************************************** */
/* 固定ページ・投稿ページ共通 */
.content-area {
  margin: 0 ;
}
.content-header {
  background-color: #80BC81;
  color: #ffffff;
}
.content-header-inner{
  width: 100%;
  max-width: 1480px;
  min-height: 120px;
  height: 100%;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.content-header-title {
  flex: 0 0 auto;
  font-size: 3.2rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  width: 100%;
}


.entry-footer {
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
}

/* 固定ページ */
.article-page-wrap {
  width: 100%;
  max-width: 1040px;
  padding: 40px 20px 60px;
  margin: 0 auto;
}

.page-content {

}

/* 2カラム共通 */
.article-post-wrap {
  display: flex;
  max-width: 1400px;
  padding: 60px 20px 60px;
  justify-content: space-between;
  margin: 0 auto;
  gap: 60px;
}

.article-post-wrap main{
  flex: 0 1 auto;
  width: 100%;
}

.article-post-wrap aside{
  flex: 0 0 auto;
  width: 300px;
}

@media screen and (max-width: 993px) {
  .article-post-wrap {
    flex-direction: column;
    gap: 60px;
  }

  .article-post-wrap main{
  }

  .article-post-wrap aside{
    border-top: 1px solid #B4B4B1;
    padding: 60px 0 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .article-post-wrap {
    padding: 40px 20px 60px;
  }
  .article-post-wrap aside {
    padding: 40px 0 0;
  }
}

/* 投稿ページ一覧 */
.entry-panel_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 3%;
  max-width: 1080px;
  padding: 0;
  margin: 0 auto;
}

.entry-panel {
  position: relative;
  flex: 0 1 auto;
  width: calc( 94% / 3 );
  padding: 20px;
  /* border-radius: 8px;
  background: #80bc81;
  color: #ffffff; */
  border: 1px solid #B4B4B1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.entry-panel:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.entry-panel .thumbnail {
  /* border-radius: 8px; */
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 0 10px;
}

.entry-panel .thumbnail:before{
	content: "";
	display: block;
	padding-top: 64.2%;
}

.entry-panel .thumbnail img {
  display: block;
	position: absolute;
	max-width: none;
	max-height: none;
	height: 100%; /* verticalで再調整 */
	width: auto;/* verticalで再調整 */
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.entry-panel .thumbnail img.vertical {
	height: auto;/* verticalで再調整 */
	width: 100%;/* verticalで再調整 */
}

.entry-panel .entry-date {
	font-size: 1.4rem;
	line-height: 1.6rem;
	margin-bottom: 8px;
}

.entry-panel .entry-title {
  font-size: 2.0rem;
  line-height: 3.0rem;
  margin: 0 0 10px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.entry-panel .entry-content {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-top: auto;
  min-height: 4.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.entry-panel .entry-content p{
	padding: 0;
  margin: 0;
}
.entry-panel .entry-more-text {
  padding: 8px 0 0;
  text-decoration: underline;
}
.entry-panel .entry-cats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.entry-panel .entry-cats-list li {
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  font-size: 1.4rem;
  color: #80BC81;
  /* background-color: #ffffff; */
  border:1px solid #80BC81;
  border-radius: 999px;
  padding: 0 1em 1px;
}

.entry-panel a {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


@media screen and (max-width: 1200px) {
  .entry-panel {
    width: calc( 97% / 2 );
  }
}
@media screen and (max-width: 768px) {
  .entry-panel_wrap {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .entry-panel {
    width: 100%;
  }

  .entry-panel .entry-title {
    -webkit-box-orient: inherit;
    -webkit-line-clamp: inherit;
  }

  .entry-panel .entry-content {
    -webkit-box-orient: inherit;
    -webkit-line-clamp: inherit;
    min-height: inherit;
  }

}


/* 投稿ページ */
.entry .entry-header {
  margin: 0;
}

.entry .entry-date {
  line-height: 1;
  margin-bottom: 5px;
}

.entry .entry-title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 0 10px;
}
.entry .entry-category {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.entry .entry-category span{
  flex: 0 0 auto;
  display: inline-block;
  color: #80BC81;
  border: 1px solid #80BC81;
  padding: 0 15px;
  border-radius: 999px;
  max-width: 100%;
}

.entry .entry-content {
    margin: 40px 0;
}

.entry .entry-content h1,
.entry .entry-content h2,
.entry .entry-content h3,
.entry .entry-content h4,
.entry .entry-content h5,
.entry .entry-content h6 {
  font-weight: bold;
}

.entry .entry-content p {
   margin-bottom: 1rem;
}

.entry .entry-content a {
  color: blue;
  text-decoration: underline;
}

.entry .entry-content ul {
  list-style: inherit;
  padding: 0 0 0 1.5em;
}

.entry .entry-content .wp-block-buttons a {
  color: #ffffff;
  text-decoration: none;
}

/* タグ */
.entry .entry-tag {
  display: flex;
  margin-bottom: 40px;
}

.entry .entry-tag .tag-title{
  flex: 0 0 auto;
  width: auto;
}

.entry .entry-tag .tag-list{
  flex: 0 1 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}

.entry .entry-tag .tag-list li{
  flex: 0 01 auto;
  width: auto;
}

/* ページング */
.article-foot .paging {
  display: flex;
  border-top: 1px solid #B4B4B1;
  padding: 20px 0 20px;
}

.article-foot .paging .previous-link {
  flex: 0 1 auto;
  width: 50%;
  border-right: 1px solid #B4B4B1;
  position: relative;
}

.article-foot .paging .previous-link a::before {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 10px;
  left: 2px;
  content: '';
  height: 15px;
  width: 15px;
  border-top: 2px solid #80bc81;
  border-left: 2px solid #80bc81;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.article-foot .paging .previous-link a {
  display: block;
  padding: 0 25px 10px 25px;
  font-weight: 700;
}

.article-foot .paging .next-link {
  flex: 0 1 auto;
  width: 50%;
  margin: 0 0 0 auto;
  border-left: 1px solid #B4B4B1;
  position: relative;
}

.article-foot .paging .next-link a {
  display: block;
  padding: 0 25px 10px 25px;
  font-weight: 700;
  text-align: right;
}

.article-foot .paging .next-link a::after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 10px;
  right: 2px;
  content: '';
  height: 15px;
  width: 15px;
  border-top: 2px solid #80bc81;
  border-right: 2px solid #80bc81;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.article-foot .paging .previous-link + .next-link {
  border-left: transparent;
}

.article-foot .return {
  text-align: center;
}

.article-foot .return .back {
  display: inline-block;
  border: 2px solid #80bc81;
  color: #80bc81;
  background-color: #fff;
  font-weight: 700;
  line-height: 2.4rem;
  padding: 5px 2em;
  border-radius: 9999px;
  min-width: 160px;
}

.post-navigation {
 display: flex;
}

@media screen and (max-width: 768px) {
  .article-post-wrap {
    gap: 40px;
  }
  .entry .entry-title {
    font-size: 2.2rem;
  }
  .entry .entry-content {
    margin: 20px 0;
  }
}


/* ページネーション */
/* **************************************************
	ページネーション
************************************************** */
.pagination_pc {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 0;
}
.pagination_pc ul li {
  display: inline-block;
  padding: 0;
  vertical-align: top;
}
.pagination_pc ul li a {
  display: block;
  width: 40px;
  height: 30px;
  margin: 0 5px;
  font-size: 1.4rem;
  line-height: 1;
  padding: 6px;
  font-weight: bold;
  text-align: center;
  background: #FFF;
  border: solid 1px #B4B4B1;
  border-radius: 4px;
  /* color: #333; */
}
.pagination_pc ul li a.page-numbers.prev {
  position: relative;
  border: none;
  width: 30px;
  height: 30px;
  margin: 0;
}
.pagination_pc ul li a.page-numbers.prev:after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  right: 5px;
  transform: translate(0, -50%) rotate(45deg);
  height: 15px;
  width: 15px;
  border-bottom: 2px solid #80BC81;
  border-left: 2px solid #80BC81;
}
.pagination_pc ul li a.page-numbers.next {
  position: relative;
  border: none;
  width: 30px;
  height: 30px;
  margin: 0;
}
.pagination_pc ul li a.page-numbers.next:after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 5px;
  transform: translate(0, -50%) rotate(45deg);
  height: 15px;
  width: 15px;
  border-top: 2px solid #80BC81;
  border-right: 2px solid #80BC81;
}
.pagination_pc ul li span.current {
  display: block;
  width: 40px;
  height: 30px;
  margin: 0 5px;
  line-height: 30px;
  font-weight: bold;
  text-align: center;
  background: #80BC81;
  border-radius: 4px;
  color: #FFF;
}
.pagination_pc ul li span.dots {
  display: block;
  width: 40px;
  height: 30px;
  margin: 0;
  padding: 0;
  line-height: 30px;
  text-align: center;
}

.pagination_sp {
  display: none ;
}

@media screen and (max-width: 768px) {

  .pagination_pc {
    display: none !important;
  }

  .pagination_sp {
    display: block;
    width: 100%;
    text-align: center;
  }

  .pagination_sp .pagenum {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px 0 13px;
    border-top: 1px solid #B4B4B1;
    border-bottom: 1px solid #B4B4B1;
  }

  .pagination_sp .pager {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .pagination_sp .pager .prev, .pagination_sp .pager .next {
    width: 48%;
    width: -webkit-calc(( 100% - 15px ) / 2);
    width: calc(( 100% - 15px ) / 2);
    min-height: 40px;
    border-radius: 999px;
    background-color: #80BC81;
  }

  .pagination_sp .pager .prev a, .pagination_sp .pager .next a {
    width: 100%;
    height: 100%;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    display: grid;
    place-items: center;
    position: relative;
    font-size: 1.4rem;
    line-height: 2rem;
  }
  
  .pagination_sp .pager .prev {
    margin-right: auto;
  }

  .pagination_sp .pager .prev a {
    padding: 5px 10px 5px 35px;
  }

  .pagination_sp .pager .prev a:after {
    /* くの字　*/
    position: absolute;
    display: block;
    top: 50%;
    left: 12px;
    content: '';
    height: 9px;
    width: 9px;
    border-bottom: 2px solid #FFF;
    border-left: 2px solid #FFF;
    transform: rotate(45deg) translateY(-74%);
  }

  .pagination_sp .pager .next {
    margin-left: auto;
  }

  .pagination_sp .pager .next a {
    padding: 5px 35px 5px 10px;
  }
  
  .pagination_sp .pager .next a:after {
    /* くの字　*/
    position: absolute;
    display: block;
    top: 50%;
    right: 22px;
    content: '';
    height: 9px;
    width: 9px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg) translateY(-74%);
  }

}


/* **************************************************
	サイドバー
************************************************** */
.widget-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.widget {
  font-size: 1.7rem;
  line-height: 3.0rem;
} 
.widget ul,
.widget ol {
  list-style: none;
}
.widget-area ul li, 
.widget-area ol li {
  border-bottom: 1px solid #B4B4B1;
}

.widget-area ul li a, 
.widget-area ol li a{
  display: inline-block;
  padding: 10px 8px;
}

.widget .wp-block-heading {
  padding: 0 0 8px;
  color: #80bc81;
  border-bottom: solid 2px #80bc81;
}

/* 検索 */
.wp-block-search label {
  display: none;
}
.wp-block-search .wp-block-search__input::placeholder {
color: #B4B4B1;
}

.wp-block-search .wp-block-search__input {
  border: 1px solid #B4B4B1;
  border-radius: 3px;
}
.wp-block-search .wp-block-search__inside-wrapper {
  position: relative;
}
.wp-block-search .wp-block-search__button {
  position: absolute;
  top: 0;
  right: 0;
  background: url(./documents/btn_search.png) no-repeat right 3px center;
  background-size: 40px 40px;
  width: 40px;
  height: 100%;
  border: none;
  display: inline-block;
  padding: 0;
  font-size: 0;
}


/* 検索 */
/* placeholder */
form#searchform .search input[type="text"][name="s"]::placeholder {
  color: #333;
  font-weight: bold;
}
form#searchform .search #searchsubmit {

}

@media screen and (max-width: 993px) {

}

/* **************************************************
	404ページ
************************************************** */
.article-404 {
  text-align: center;

}

.article-404 p {
  margin-bottom: 60px;

}

.article-404 .back-to-home{
  text-align: center;
  
}