@charset "UTF-8";
/*フェードインアニメーションの指定*/
.tekkyo.animate__animated.animate__bounceInDown, .tekkyo.animate__animated.animate__fadeinUp {
  animation-delay: 0.3s;
  animation-duration: 1s;
}

.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  animation-name: fadeInDown2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes sub_main {
  0% {
    background-position: center top;
    opacity: 0;
  }
  100% {
    background-position: center bottom;
    opacity: 1;
  }
}
@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*バウンドアニメーション*/
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

/*左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

.sp_only {
  display: none;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

.fw_b {
  font-weight: bold;
}

.pb_50 {
  padding-bottom: 50px;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.flex_bw {
  display: flex;
  justify-content: space-between;
}

/*============================
共通
============================*/
html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
}

body {
  margin: 0 auto;
  letter-spacing: 1px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color: #333;
  font-size: 1.6em;
  background-color: #e4f5e1;
}

/* 扉ページここから */
.opening_page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 白い背景 */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 10000;
  padding: 10px;
}

.opening_page_inner {
  text-align: center;
  opacity: 0;
  animation: fadeIn 2s forwards; /* ローディングページ表示後のフェードイン */
}

.opening_page_logo img {
  max-width: 100%;
  height: auto;
}

.opening_page_text {
  font-size: 20px;
  margin-top: 20px;
}

#main_vis,
main,
#pagetop,
footer {
  visibility: visible; /* 修正 */
  opacity: 1; /* 修正 */
  transition: opacity 3s ease;
  z-index: 1; /* 修正 */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: -99;
  }
}
/*追従メニューバーここから*/
.g-nav {
  width: 100%;
  z-index: 10;
}

.fixed {
  position: fixed;
  top: 5%;
  left: 0;
}

/*パーツ*/
.link_btn {
  text-align: left;
  margin-top: 20px;
}
.link_btn a {
  background-color: #333;
  font-size: 18px;
  padding: 12px 60px 12px 40px;
  transition: 0.5s;
  position: relative;
  height: inherit;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  cursor: pointer;
  color: #fff;
}
.link_btn a:after { /*くのじマーク*/
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-52%);
  right: 30px;
  top: 48%;
  position: absolute;
  content: "";
  transition: 0.5s;
}
.link_btn a:hover:after {
  right: 20px;
}

/*メインビジュアルここから*/
header {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed; /* 絶対的な位置指定 */
  top: 3%; /* 画面上端に配置 */
  width: 100%;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}
header .header_inner .header_left {
  padding-left: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_inner .header_left h1 a {
  transition: 0.5s;
}
header .header_inner .header_left h1 a:hover {
  opacity: 0.6;
}
header .header_inner .header_left h1 a img {
  width: max(12vw, 180px);
  height: auto;
}
header .header_inner .header_left p {
  font-size: 14px;
  margin-left: 15px;
}

#main_vis {
  position: relative;
  overflow: hidden;
}
#main_vis .main_pc {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
  animation: animationZoom 5s ease-in-out forwards;
}
@keyframes animationZoom {
  100% {
    transform: scale(1.2);
  }
}
#main_vis .main_sp {
  display: none;
}
#main_vis .main_text_wrap {
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  position: absolute;
  top: 45%;
  left: 0;
  width: 55%;
  transform: translateY(-35%);
  text-align: center;
  background-color: rgba(50, 165, 23, 0.8);
  padding: 45px 120px 45px 50px;
}
#main_vis .main_text_wrap .main_text_inner {
  position: relative;
}
#main_vis .main_text_wrap .main_text_inner .main_text_1 {
  font-size: clamp(40px, 3.6vw, 60px);
  color: #fff;
  border-bottom: 1px solid #fff;
}
#main_vis .main_text_wrap .main_text_inner .main_text_2 {
  font-size: clamp(40px, 3.6vw, 60px);
  color: #fff;
}
#main_vis .main_text_wrap .main_text_inner .main_text_gold {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
#main_vis .main_text_wrap .main_text_inner .main_text_gold span {
  font-size: clamp(20px, 2vw, 47px);
  font-weight: bold;
}
#main_vis .main_text_wrap .main_text_inner .main_text_gold:before {
  content: "";
  width: clamp(120px, 10vw, 170px);
  height: clamp(120px, 10vw, 170px);
  background-image: linear-gradient(rgb(230, 187, 33) 15%, rgb(252, 244, 176) 40%, rgb(227, 194, 31) 70%, rgb(243, 222, 126));
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#main_vis .main_text_wrap .main_text_inner .main_text_gold:after {
  content: "";
  width: clamp(115px, 9.7vw, 160px);
  height: clamp(115px, 9.7vw, 160px);
  box-shadow: 0 0 0 3px #f1d970; /* グラデーションを指定 */
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%) rotate(45deg);
}

/*メインコンテンツここから*/
h2 {
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(25px, 3.5vw, 55px);
  font-weight: bold;
  position: relative;
  line-height: 1.3;
  margin-bottom: 30px;
}
h2 span {
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  color: #707070;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: bold;
  display: block;
}
h2:before {
  content: "";
  width: 4px;
  height: 50px;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #32A517;
  position: absolute;
}

.contents1 {
  background-color: rgba(0, 0, 0, 0.8);
  background-image: none;
  width: 80%;
  margin-left: 20%;
  margin-bottom: 30px;
  padding: 2vw 3vw 3vw 3vw;
  color: #fff;
  transform: translateY(-100px);
  position: relative;
  z-index: 2;
}
.contents1 .contents1_inner h2 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  text-align: left;
  padding-bottom: 10px;
}
.contents1 .contents1_inner h2 span {
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 1.6vw, 25px);
  color: #fff;
  display: inline-block;
}
.contents1 .contents1_inner h2:before {
  display: none;
}
.contents1 .contents1_inner .news_box {
  margin-bottom: 20px;
}
.contents1 .contents1_inner .news_box dl {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-left: 28px;
  margin-bottom: 10px;
}
.contents1 .contents1_inner .news_box dl:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid #fff;
  border-right: 0;
  position: absolute;
  left: 0;
  top: 6px;
}
.contents1 .contents1_inner .news_box dl dt {
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  margin-right: 65px;
}
.contents1 .contents1_inner .news_box dl dd a {
  transition: 0.5s;
}
.contents1 .contents1_inner .news_box dl dd a:hover {
  color: rgb(50, 165, 23);
}
.contents1 .contents1_inner .link_btn {
  text-align: right;
}
.contents1 .contents1_inner .link_btn a {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.3);
}

.contents2 {
  margin-bottom: 9vw;
}
.contents2 .contents2_inner {
  background-color: #c7d1c5;
  padding: 60px 40px 70px 40px;
}
.contents2 .contents2_inner ul {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.contents2 .contents2_inner ul li figure {
  position: relative;
  overflow: visible;
  z-index: 0;
}
.contents2 .contents2_inner ul li figure:before {
  content: "";
  position: absolute;
  top: 12px; /* 上方向に5mmずらす */
  left: 12px; /* 左方向に5mmずらす */
  width: 100%;
  height: 100%;
  background-color: #1b8204; /* 緑の色 */
  z-index: -1; /* テキストや画像の背面に配置 */
}
.contents2 .contents2_inner ul li figure figcaption {
  position: absolute;
  color: #fff;
  width: 100%;
  background-color: rgba(50, 165, 23, 0.8);
  padding: 12px;
  bottom: 20%;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 1.5vw, 23px);
}
.contents2 .contents2_inner ul li figure figcaption:after {
  top: 40%;
  right: 10%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  transition: 0.5s;
}
.contents2 .contents2_inner ul li figure figcaption:hover:after {
  right: 5%;
}
.contents2 .contents2_inner ul .service_link_gray figure:before {
  background-color: #32a517; /* 緑の色 */
  z-index: -1; /* テキストや画像の背面に配置 */
}
.contents2 .contents2_inner ul .service_link_gray figure figcaption {
  background-color: rgba(51, 51, 51, 0.8);
}

.contents3 {
  background-image: linear-gradient(90deg, rgb(50, 165, 23), rgb(25, 83, 12));
  padding: 90px 4vw;
}
.contents3 .contents3_inner {
  margin: 0 auto;
}
.contents3 .contents3_inner .contents3_inner_img {
  text-align: center;
}
.contents3 .contents3_inner .contents3_inner_box {
  background-color: #fff;
  max-width: 920px;
  width: 80%;
  margin: 0 auto;
  padding: 30px 40px 70px 40px;
  position: relative;
}
.contents3 .contents3_inner .contents3_inner_box h2 {
  text-align: left;
  display: flex;
  align-items: center;
}
.contents3 .contents3_inner .contents3_inner_box h2 span {
  display: inline-block;
  margin-left: 30px;
  border-left: 4px solid #32A517;
  padding-left: 30px;
  line-height: 45px;
}
.contents3 .contents3_inner .contents3_inner_box h2:before {
  display: none;
}
.contents3 .contents3_inner .contents3_inner_box .contents3_inner_text {
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(14px, 2vw, 20px);
}
.contents3 .contents3_inner .contents3_inner_box .link_btn {
  position: absolute;
  right: 5%;
  bottom: -15px;
}

.contents4 {
  padding: 120px 5vw;
  background: url("../img/bgi_gray.png") no-repeat;
}
.contents4 .contents4_inner {
  background-color: #fff;
  max-width: 1600px;
  padding: 140px 60px 80px 60px;
}
.contents4 .contents4_inner .works_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}
.contents4 .contents4_inner .works_box dl dt {
  margin-bottom: 15px;
}
.contents4 .contents4_inner .works_box dl dt figure {
  overflow: hidden;
  position: relative;
}
.contents4 .contents4_inner .works_box dl dt figure img {
  transition: 0.5s;
}
.contents4 .contents4_inner .works_box dl dt figure img:hover {
  transform: scale(1.2);
}
.contents4 .contents4_inner .works_box dl dt figure figcaption {
  position: absolute;
  top: 0;
  text-align: center;
  color: #fff;
  width: 100%;
  background-color: rgba(50, 165, 23, 0.8);
  padding: 12px;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 1.5vw, 23px);
}
.contents4 .contents4_inner .works_box dl dd {
  text-align: center;
}
.contents4 .contents4_inner .link_btn {
  text-align: center;
}

.contents5 {
  background-color: #19530C;
  max-width: 1200px;
  margin: 0 auto 140px auto;
  padding: 4vw 6vw;
  text-align: center;
  position: relative;
}
.contents5 h2 {
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
}
.contents5 h2 span {
  display: inline-block;
  margin-left: 30px;
  border-left: 4px solid #fff;
  padding-left: 30px;
  line-height: 45px;
  color: #fff;
}
.contents5 h2:before {
  display: none;
}
.contents5 .contents5_inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 6vw;
}
.contents5 .link_btn {
  position: absolute;
  right: 5%;
  bottom: -15px;
}

.contents6 {
  background-color: #fff;
  padding: 140px 5vw 90px 5vw;
  margin-bottom: 140px;
}
.contents6 .insta_box {
  margin-bottom: 80px;
}

.contents_contact {
  background: url("../img/top_contact.jpg") no-repeat top;
  background-size: cover;
  padding: 110px 0;
  margin-bottom: 230px;
}
.contents_contact .contents_contact_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contents_contact .contents_contact_inner h2 {
  position: absolute;
  color: #fff;
  left: 100px;
  background-image: linear-gradient(90deg, rgb(50, 165, 23), rgb(25, 83, 12));
  padding: 110px 40px 50px 40px;
  box-shadow: 10px 10px 0 #C6AA1E;
}
.contents_contact .contents_contact_inner h2 span {
  color: #fff;
  font-size: 18px;
}
.contents_contact .contents_contact_inner h2:before {
  background-color: #fff;
  top: 30px;
}
.contents_contact .contents_contact_inner .contact_box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 100px 200px 100px 150px;
  width: 80%;
  margin-left: 20%;
  text-align: center;
}
.contents_contact .contents_contact_inner .contact_box .contact_text {
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contents_contact .contents_contact_inner .contact_box .contact_tel {
  color: #19530C;
  font-size: clamp(40px, 3.8vw, 70px);
  margin-bottom: 30px;
  font-weight: bold;
}
.contents_contact .contents_contact_inner .contact_box .contact_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contents_contact .contents_contact_inner .contact_box .contact_link a {
  color: #707070;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding: 0 50px 0 30px;
}
.contents_contact .contents_contact_inner .contact_box .contact_link a:before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 100%;
  height: 3px;
  background: #19530C;
  transition: all 0.3s;
}
.contents_contact .contents_contact_inner .contact_box .contact_link a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 30px;
  height: 3px;
  background: #19530C;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.contents_contact .contents_contact_inner .contact_box .contact_link a:hover::before {
  right: -5%;
}
.contents_contact .contents_contact_inner .contact_box .contact_link a:hover::after {
  right: -5%;
}

/*ページトップボタン*/
#pagetop {
  text-align: center;
  position: fixed;
  right: 1vw;
  bottom: calc(10px + 1vw);
  z-index: 990;
}
#pagetop .pagetop_btt {
  cursor: pointer;
  transition: 0.3s;
}
#pagetop .pagetop_btt img {
  width: 85%;
  height: 85%;
}
#pagetop .pagetop_btt:hover {
  opacity: 0.9;
  transform: translateY(-7px);
}
/*スマホ用常設ボタン*/
#sp_fixed {
  display: none;
  }

/*フッターここから*/
footer .footer_wrap .footer_inner {
  position: relative;
  background-color: #C7D1C5;
  border-top: 1px solid #999;
  padding: 130px 40px 20px 40px;
}
footer .footer_wrap .footer_inner .footer_banners {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  position: absolute;
  top: -32%;
  left: 50%;
  transform: translateX(-50%);
}
footer .footer_wrap .footer_inner .footer_banners p {
  width: calc(33.3333333333% - 20px);
  background: url("../img/banner_link1.png") no-repeat top;
  background-size: cover;
}
footer .footer_wrap .footer_inner .footer_banners p a {
  font-weight: bold;
  width: 100%;
  color: #fff;
  position: relative;
  font-size: 26px;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  padding: 20px 20px 50px 20px;
  display: block;
  height: 165px;
}
footer .footer_wrap .footer_inner .footer_banners p a span {
  font-size: 20px;
  width: 100%;
  display: block;
}
footer .footer_wrap .footer_inner .footer_banners p a:before {
  content: "";
  position: absolute;
  border-right: 8vw solid rgba(50, 165, 23, 0.85);
  border-top: 165px solid transparent;
  right: 0;
  top: 0;
}
footer .footer_wrap .footer_inner .footer_banners p a:after { /*くのじマーク*/
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 40px;
  bottom: 20px;
  position: absolute;
  content: "";
  transition: 0.5s;
}
footer .footer_wrap .footer_inner .footer_banners p a:hover:after {
  right: 30px;
}
footer .footer_wrap .footer_inner .footer_banners p:nth-child(2) {
  background-image: url("../img/banner_link2.png");
}
footer .footer_wrap .footer_inner .footer_banners p:nth-child(3) {
  background-image: url("../img/banner_link3.png");
}
footer .footer_wrap .footer_inner .footer_address {
  text-align: center;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}
footer .footer_wrap .footer_inner .footer_address dl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
footer .footer_wrap .footer_inner .footer_address dl dt a {
  transition: 0.5s;
}
footer .footer_wrap .footer_inner .footer_address dl dt a img {
  width: 80%;
}
footer .footer_wrap .footer_inner .footer_address dl dt a:hover {
  opacity: 0.7;
}
footer .footer_wrap .footer_inner .footer_address dl dd {
  font-size: 14px;
}
footer .footer_wrap .footer_inner .footer_address p {
  font-size: 18px;
  font-weight: bold;
}
footer .footer_wrap .footer_links {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 20px 20px 17px 20px;
  font-size: 14px;
  font-weight: normal;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}
footer .footer_wrap .footer_links ul li {
  position: relative;
  margin-bottom: 3px;
}
footer .footer_wrap .footer_links ul li:before {
  width: 12px;
  height: 12px;
  border-top: 2px solid #32A517;
  border-right: 2px solid #32A517;
  transform: rotate(45deg);
  left: -25px;
  top: 7px;
  position: absolute;
  content: "";
}
footer .footer_wrap .footer_links ul li a {
  transition: 0.5s;
}
footer .footer_wrap .footer_links ul li a:hover {
  color: #32A517;
}
footer .footer_wrap .footer_links ul li.footer_links_type2 {
  padding-left: 25px;
}
footer .footer_wrap .footer_links ul li.footer_links_type2:before {
  width: 12px;
  height: 3px;
  background-color: #A9F297;
  border: none;
  transform: none;
  left: 0;
  top: 10px;
  position: absolute;
  content: "";
}
footer .footer_wrap .copyright {
  background-image: linear-gradient(90deg, rgb(50, 165, 23), rgb(25, 83, 12));
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  padding: 10px;
}
footer .footer_link_sp {
  display: none;
}
/*20240207*/
.wp-pagenavi {
    text-align: center;
}
.archives_contents_inner .wp-pagenavi span.current ,.archives_contents_inner .larger, .archives_contents_inner.smaller ,.archives_contents_inner.first ,.archives_contents_inner.last {
	width: 30px;
    height: 40px;
    background-color: #32A517;
    margin: 0 8px 5px 0;
    color: #fff;
    font-weight: bold;
    line-height: 40px;
    cursor: pointer;
    transition: 0.5s;
    text-align: center;
	padding: 0.5em;
}
.archives_contents_inner.wp-pagenavi span.current{
	background-color: rgba(25, 83, 12, 0.8);
}
