body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロールを無効にする */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #111;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: inherit;
}
input, textarea, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}
table {
  border-collapse: collapse;
}
.fj-wrapper {
  overflow: hidden;
}
.fj-inner {
  width: 88%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .fj-inner {
    width: 90%;
  }
}
.fj-pc {
  display: block;
}
.fj-sp {
  display: none;
}
@media (max-width: 768px) {
  .fj-pc {
    display: none;
  }
  .fj-sp {
    display: block;
  }
}
.fj-sec_h2 {
  font-size: 38px;
  line-height: 1;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}
.fj-sec_h2 a {
  display: flex;
  align-items: center;
}
.fj-sec_h2 a span {
  position: relative;
}
.fj-sec_h2 a span::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #00895d;
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  transition: 0.4s;
}
.fj-sec_h2 a::after {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url(../img/icons/arrow_right_grad.svg) no-repeat center/contain;
  margin-left: 15px;
}
@media (hover: hover) and (pointer: fine) {
  .fj-sec_h2 a:hover {
    color: #00895d;
  }
  .fj-sec_h2 a:hover span::after {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .fj-sec_h2 {
    font-size: 21px;
  }
  .fj-sec_h2 a::after {
    margin-left: 10px;
    width: 21px;
    height: 21px;
  }
}
/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
header {
  z-index: 100;
  width: 100%;
  height: 80px;
  position: fixed !important;
  background: #fff;
  transition: 0.8s cubic-bezier(0.33, 0.09, 0.09, 1);
  transition-property: top, opacity;
}
header .fj-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0 2.2% 0 2.5%;
  position: relative;
}
header .fj-inner #fj-menu_btn {
  display: none;
}
header .fj-inner h1 {
  position: absolute;
  left: 0;
  top: 0;
  padding: 24px 2vw;
  background: #fff;
  border-bottom-right-radius: 30px;
}
header .fj-inner h1 img {
  width: 139px;
}
header .fj-inner h1 img.fj-horizontal {
  display: none;
}
header .fj-inner h1 img.fj-default {
  display: block;
}
header .fj-inner nav {
  display: flex;
  align-items: center;
}
header .fj-inner nav .fj-menu {
  display: flex;
}
header .fj-inner nav .fj-menu > li > a {
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  padding: 0 12px 0 13px;
  display: flex;
  align-items: center;
  height: 60px;
}
@media (hover: hover) and (pointer: fine) {
  header .fj-inner nav .fj-menu > li > a:hover {
    color: #00895d;
  }
}
header .fj-inner nav .fj-mypage {
  display: flex;
  margin-left: 28px;
}
header .fj-inner nav .fj-mypage a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 135px;
  height: 50px;
  font-size: 15px;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}
header .fj-inner nav .fj-mypage a {
  background-color: #f08c1e;
  border-radius: 8px;
}
header .fj-inner nav .fj-mypage a img {
  margin-right: 8px;
}
@media (hover: hover) and (pointer: fine) {
  header .fj-inner nav .fj-mypage a:hover {
    background-color: #c6711c;
  }
}
header .fj-inner nav .fj-logout {
  display: flex;
  margin-left: 20px;
}
header .fj-inner nav .fj-logout a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00895d;
  width: 135px;
  height: 50px;
  font-size: 15px;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  background-color: #FFFFFF;
  border: solid 1px #00895d;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}
header .fj-inner nav .fj-logout a img {
  margin-right: 8px;
  transition: filter 0.3s;
}
header .fj-inner nav .fj-logout a:hover {
  background-color: #00895d;
  color: #fff;
}
header .fj-inner nav .fj-logout a:hover img {
  content: url('../img/icons/logout-white.svg');
}
header .fj-inner #fj-menu_btn {
  display: none;
}
header.fj-scroll {
  position: fixed;
  top: -168px;
  left: 0;
  opacity: 0;
  transition: 0.5s ease;
}
header.fj-fixed {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
}
header.fj-fixed .fj-inner h1::after {
  content: none;
}
header.fj-fixed .fj-inner h1 img.fj-horizontal {
  display: block;
  width: 300px;
}
header.fj-fixed .fj-inner h1 img.fj-default {
  display: none;
}
@media (min-width: 1280px) and (max-width: 1400px) {
  header .fj-inner nav .fj-menu li a {
    padding: 0 7px;
    font-size: 15px;
  }
  header .fj-inner nav .fj-mypage {
    margin-left: 19px;
  }
}
@media (max-width: 1280px) {
  header .fj-inner nav .fj-logout {
    order: 3;
    margin-top: 20px;
  }
  header {
    background: none;
    height: 68px;
  }
  header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  header .fj-inner h1 {
    border-bottom-right-radius: 20px;
    padding: 24.5px 2.5vw;
  }
  header .fj-inner h1 img {
    width: 98px;
  }
  header .fj-inner h1::after {
    top: 68px;
  }
  header .fj-inner nav {
    flex-direction: column;
    position: fixed;
    top: -100%;
    right: 0;
    background: #fff;
    width: 100%;
    max-width: 100%;
    padding: 130px 30px 60px;
    height: 100vh;
    z-index: -1;
    opacity: 1;
    overflow: auto;
  }
  header .fj-inner nav .fj-mypage {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
  header .fj-inner nav .fj-mypage {
    width: 100%;
  }
  header .fj-inner nav .fj-mypage a {
    width: 100%;
    font-size: 14px;
  }
  header .fj-inner nav .fj-mypage a {
    border-radius: 4px;
  }
  header .fj-inner nav .fj-menu {
    flex-direction: column;
    order: 2;
    width: 100%;
  }
  header .fj-inner nav .fj-menu > li {
    border-top: 1px solid #cdcdcd;
    width: 100%;
  }
  header .fj-inner nav .fj-menu > li > a {
    display: flex;
    padding: 15px 0;
    font-size: 16px;
    position: relative;
  }
  header .fj-inner nav .fj-menu > li > a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #00895d;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 50%;
  }
  header .fj-inner nav .fj-menu > li > a::after {
    content: "";
    display: block;
    width: 10px;
    height: 8px;
    background: url(../img/icons/arrow_right_white.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
  }
  header .fj-inner nav .fj-menu > li:last-child {
    border-bottom: 1px solid #cdcdcd;
  }
  header .fj-inner #fj-menu_btn {
    display: block;
    position: absolute;
    top: 11px;
    right: 25px;
    border: 1px solid #00895d;
    width: 120px;
    height: 48px;
    border-radius: 10px;
    z-index: 100;
    cursor: pointer;
  }
  header .fj-inner #fj-menu_btn span {
    position: absolute;
    display: block;
    height: 4px;
    background: #00895d;
    left: 25px;
    transition: 0.3s ease;
  }
  header .fj-inner #fj-menu_btn span:nth-child(1) {
    width: 58px;
    top: 9px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(2) {
    width: 46px;
    top: 20px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(3) {
    width: 66px;
    top: 31px;
  }
  header.fj-open {
    position: fixed;
    left: 0;
  }
  header.fj-open .fj-inner #fj-menu_btn span {
    left: 35px;
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(1) {
    top: 20px;
    width: 48px;
    transform: rotate(45deg);
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(2) {
    opacity: 0;
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(3) {
    top: 20px;
    width: 48px;
    transform: rotate(-45deg);
  }
  header.fj-fixed .fj-inner h1 {
    padding: 16.5px 2.5vw;
    border-bottom-right-radius: 20px;
  }
  header.fj-fixed .fj-inner h1 img.fj-horizontal {
    width: 175px;
  }
}
@media (max-width: 768px) {
  header {
    height: 54px;
  }
  header .fj-inner {
    padding-left: 3%;
  }
  header .fj-inner h1 {
    padding: 17px 17px;
    border-bottom-right-radius: 20px;
  }
  header .fj-inner h1::after {
    width: 15px;
    height: 15px;
    top: 54px;
  }
  header .fj-inner h1 img {
    width: 69px;
  }
  header .fj-inner nav {
    padding-top: 130px;
  }
  header .fj-inner nav .fj-mypage a {
    height: 57px;
  }
  header .fj-inner #fj-menu_btn {
    top: 10px;
    right: 3%;
    width: 60px;
    height: 34px;
    border-radius: 5px;
    border-width: 1px;
  }
  header .fj-inner #fj-menu_btn span {
    height: 2px;
    left: 12px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(1) {
    width: 29px;
    top: 9px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(2) {
    width: 23px;
    top: 15px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(3) {
    width: 33px;
    top: 21px;
  }
  header.fj-open .fj-inner #fj-menu_btn span {
    left: 18px;
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(1) {
    width: 24px;
    top: 15px;
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(3) {
    width: 24px;
    top: 15px;
  }
  header.fj-fixed .fj-inner h1 {
    padding: 15px 3%;
  }
  header.fj-fixed .fj-inner h1 img.fj-horizontal {
    width: 230px;
  }
}
/*--------------------------------------------------------------------------
   breadcrumb
---------------------------------------------------------------------------*/
.fj-breadcrumb ul {
  display: flex;
  align-items: center;
}
/* 通常のliはそのまま横並び */
.fj-breadcrumb ul li {
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap; /* 他のliは折り返し禁止 */
}
/* タイトルだけ折り返し許可 */
.fj-breadcrumb ul li:last-child {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4; /* 折り返し時の行間調整 */
}
.fj-breadcrumb ul li:first-child::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: #00895d;
  border-radius: 50%;
  margin-right: 8px;
}
.fj-breadcrumb ul li:not(:last-child) {
  margin-right: 10px;
}
.fj-breadcrumb ul li:not(:last-child)::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #000;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .fj-breadcrumb ul {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-left: -2vw;
    margin-right: -2vw;
    /*padding: 0 2.5vw;*/
  }
  .fj-breadcrumb ul::-webkit-scrollbar {
    display: none;
  }
  @media (max-width: 768px) {
    .fj-breadcrumb ul li {
      font-size: 12px;
    }
    .fj-breadcrumb ul li:last-child {
      white-space: normal;
      word-break: break-word;
      line-height: 1.4;
    }
  }
  .fj-breadcrumb ul li:not(:last-child) {
    margin-right: 6px;
  }
  .fj-breadcrumb ul li:not(:last-child)::after {
    width: 10px;
    margin-left: 6px;
  }
  .fj-breadcrumb ul li:first-child::before {
    width: 6.5px;
    height: 6.5px;
    margin-right: 5px;
  }
}
/*--------------------------------------------------------------------------
   section_row
---------------------------------------------------------------------------*/
.fj-section_row {
  padding-top: 50px;
}
.fj-section_row .fj-row_inner {
  position: relative;
  max-width: 1440px;
  width: 88%;
  margin: 0 auto 0;
}
.fj-section_row .fj-row_inner aside {
  width: 308px;
  position: absolute;
}
.fj-section_row .fj-row_inner aside ul li a {
  font-size: 15px;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: none;
}
.fj-section_row .fj-row_inner aside ul li a span {
  margin-right: 14px;
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
}
.fj-section_row .fj-row_inner aside ul li a:hover {
  color: #00895d;
}
.fj-section_row .fj-row_inner aside ul li.fj-current a {
  font-weight: bold;
  color: #00895d;
}
.fj-section_row .fj-row_inner aside ul li.fj-current a::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: #00895d;
  margin-right: 13px;
}
.fj-section_row .fj-row_inner aside ul li:not(:last-child) {
  margin-bottom: 20px;
}
.fj-section_row .fj-row_inner section {
  padding-left: 308px;
}
.fj-section_row .fj-row_inner section .fj-inner {
  width: 100%;
}
@media (max-width: 1000px) {
  .fj-section_row .fj-row_inner aside {
    display: none;
  }
  .fj-section_row .fj-row_inner section {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .fj-section_row {
    padding-top: 25px;
  }
  .fj-section_row .fj-row_inner {
    width: 90%;
  }
}
/*--------------------------------------------------------------------------
   footer
---------------------------------------------------------------------------*/
footer {
  background: #222222;
  padding: 100px 0 55px;
  position: relative;
  z-index: 2;
}
footer .fj-inner {
  max-width: 1480px;
  padding: 0 3%;
}
footer .fj-inner .fj-company_nav {
  display: flex;
  justify-content: space-between;
}
footer .fj-inner .fj-company_nav .fj-company {
  font-size: 28px;
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  color: #fff;
}
footer .fj-inner .fj-company_nav nav {
  width: 490px;
}
footer .fj-inner .fj-company_nav nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer .fj-inner .fj-company_nav nav ul li a {
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}
@media (hover: hover) and (pointer: fine) {
  footer .fj-inner .fj-company_nav nav ul li a:hover {
    opacity: 0.8;
  }
}
footer .fj-inner .fj-company_nav nav ul li:not(:nth-child(4n)) {
  margin-right: 35px;
}
footer .fj-inner .fj-company_nav nav ul li:nth-child(n+5) {
  margin-top: 30px;
}
footer .fj-inner .fj-catch_copy {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .fj-inner .fj-catch_copy .fj-copy {
  color: #616161;
  font-size: 12px;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0.08em;
}
@media (max-width: 1000px) {
  footer .fj-inner .fj-catch_copy {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .fj-inner .fj-catch_copy .fj-copy {
    margin-top: 40px;
  }
}
@media (max-width: 1280px) {
  footer .fj-inner .fj-company_nav {
    flex-direction: column;
  }
  footer .fj-inner .fj-company_nav .fj-company {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 20px 0 80px;
  }
  footer .fj-inner {
    padding-left: 0;
    padding-right: 0;
  }
  footer .fj-inner .fj-company_nav .fj-company {
    width: 265px;
    margin-bottom: 0;
  }
  footer .fj-inner .fj-company_nav nav {
    display: none;
  }
  footer .fj-inner .fj-catch_copy {
    margin-top: 0;
  }
  footer .fj-inner .fj-catch_copy .fj-copy {
    font-size: 10px;
    margin-top: 10px;
  }
}
/*--------------------------------------------------------------------------
   side-menu
---------------------------------------------------------------------------*/
.fj-side-menu {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #00895d;
  border-radius: 10px 0 0 10px;
  overflow: visible;
  z-index: 1000;
}
.fj-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #fff;
  width: 110px;
}
.fj-menu-item:last-child {
  border-bottom: none;
}
.fj-menu-item .fj-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .fj-side-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00895d;
    border-radius: 0;
    transform: none;
    height: 60px;
  }
  .fj-menu-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: none;
    width: auto;
    font-size: 12px;
  }
  .fj-menu-item .fj-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
  }
}
@media (max-width: 1024px) {
  .fj-sp_arrow {
    position: relative;
  }
  .fj-sp_arrow::after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url(../img/icons/arrow_sp.svg) no-repeat center/contain;
    position: absolute;
    bottom: -25px;
    right: -8px;
  }
}
.fj-notification {
  position: absolute;
  background-color: #f4253c;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .fj-notification {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
.fj-side-menu .fj-menu-item {
  position: relative;
}
.fj-side-menu .fj-menu-item .fj-notification {
  top: 13px;
  left: 5px;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .fj-side-menu .fj-menu-item .fj-notification {
    top: 8px;
    right: 15px;
    left: auto;
    transform: translate(50%, -50%);
  }
}
/*--------------------------------------------------------------------------
   mv
---------------------------------------------------------------------------*/
#fj-mv {
  padding: 198px 0 100px;
  position: relative;
}
#fj-mv .fj-inner {
  max-width: 1680px;
}
#fj-mv .fj-inner .fj-sec_ttl {
  text-align: right;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  font-family: "PT Sans", sans-serif;
}
#fj-mv .fj-inner .fj-ttl_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
#fj-mv .fj-inner .fj-ttl_row .fj-ttl {
  color: #00895d;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  font-weight: bold;
}
#fj-mv .fj-inner h2 {
  font-size: 52px;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  margin-bottom: 30px;
}
#fj-mv .fj-flow_txt {
  font-size: 180px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  color: #f2f5f7;
  white-space: nowrap;
  position: absolute;
  bottom: 10px;
  z-index: -1;
}
#fj-mv .fj-flow_txt span {
  display: inline-block;
  margin-right: 68px;
}
@media (max-width: 768px) {
  #fj-mv {
    padding: 114px 0 75px;
  }
  #fj-mv .fj-inner .fj-sec_ttl {
    font-size: 11px;
  }
  #fj-mv .fj-inner .fj-ttl_row {
    margin-bottom: 10px;
  }
  #fj-mv .fj-inner .fj-ttl_row .fj-ttl {
    font-size: 14px;
  }
  #fj-mv .fj-inner h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 25px;
  }
  #fj-mv .fj-flow_txt {
    bottom: 10px;
    font-size: 100px;
  }
  #fj-mv .fj-flow_txt span {
    margin-right: 32px;
  }
}
.fj-d02 {
  transition-delay: 0.2s;
}
.fj-d03 {
  transition-delay: 0.3s;
}
.fj-f-up {
  opacity: 0;
  transform: translate(0, 20px);
  transition-duration: 0.6s;
  transition-timing-function: ease;
}
.fj-f-up.fj-is-inview {
  opacity: 1;
  transform: translate(0);
}
.fj-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}
.fj-page-btn {
  color: #333;
  font-size: 16px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.fj-page-btn:disabled {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}
.fj-page-numbers {
  display: flex;
  gap: 5px;
}
.fj-page-number {
  color: #333;
  font-size: 16px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.fj-page-number.active {
  background-color: #00895d;
  color: white;
  font-weight: bold;
  border-color: #00895d;
}
.fj-page-number:hover:not(.active) {
  background-color: #dfe6e9;
}
.fj-page-numbers li {
  display: inline-block;
}
.fj-page-numbers a, .fj-page-numbers .current {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}
.fj-page-numbers .current {
  background-color: #00895d;
  color: white;
  font-weight: bold;
}
.fj-page-numbers a:hover {
  background-color: #dfe6e9;
}
.fj-page-btn {
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333;
  cursor: pointer;
}
.fj-page-btn:disabled {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .fj-pagination {
    flex-direction: row;
    gap: 10px;
  }
  .fj-page-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
  .fj-page-number {
    font-size: 14px;
    padding: 6px 10px;
  }
}
.page-numbers {
  color: #333;
  font-size: 16px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.page-numbers.current {
  background-color: #00895d;
  color: white;
  font-weight: bold;
  border-color: #00895d;
}
.page-numbers:hover:not(.current) {
  background-color: #dfe6e9;
}
.next {
  color: #333;
  font-size: 16px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.next:disabled {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}