@charset "UTF-8";
.button-wrap {
  display: flex;
  margin-top: 40px;
}
.button-wrap--left {
  justify-content: flex-start;
}
.button-wrap--center {
  justify-content: center;
}
.button-wrap--right {
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .button-wrap {
    justify-content: center;
  }
}

.button {
  display: inline-flex;
  padding: 18px 24px;
  color: white;
  background: #43b443;
  border: 1px solid #43b443;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 220px;
  border-radius: 999px;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
}
.button::after {
  display: flex;
  width: 20px;
  height: 20px;
  font-size: 10px;
  color: #43b443;
  background: white;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .button {
    width: 80%;
    margin: 0 auto;
    padding: 16px 20px;
    max-width: 200px;
  }
}
.button:hover {
  color: #43b443;
  background: white;
}
.button:hover::after {
  color: white;
  background: #43b443;
  transform: translateX(6px);
}
.button--white {
  color: #43b443;
  background: white;
}
.button--white::after {
  color: white;
  background: #43b443;
}
.button--white:hover {
  color: white;
  background: #43b443;
}
.button--white:hover::after {
  color: #43b443;
  background: white;
}
.button--pink {
  border-color: #f7638e;
  background: #f7638e;
}
.button--pink::after {
  color: #f7638e;
}
.button--pink:hover {
  color: #f7638e;
  background: white;
}
.button--pink:hover::after {
  color: white;
  background: #f7638e;
}
.button-mail {
  display: block;
  padding: 1.7rem 3rem;
  font-size: 18px;
  color: #43b443;
  background: white;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .button-mail {
    width: 100%;
    padding: 1.7rem 0;
    min-height: 88px;
  }
}
.button-mail::before {
  display: inline-block;
  font-size: 14px;
  color: #43b443;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  transition: 0.3s;
  font-size: 20px;
  margin-right: 10px;
}
.button-mail:hover {
  color: #43b443;
  background: white;
}
.button-mail:hover::before {
  color: #43b443;
}

.wp-block-button .wp-block-button__link {
  display: inline-block;
  padding: 16px 24px;
  font-size: 14px;
  color: #43b443;
  background: white;
  border: 1px solid #43b443;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
  min-width: 240px;
}
.wp-block-button .wp-block-button__link::after {
  display: inline-block;
  font-size: 14px;
  color: #43b443;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  transition: 0.3s;
  margin-left: 15px;
}
.wp-block-button .wp-block-button__link:hover {
  color: white;
  background: #43b443;
}
.wp-block-button .wp-block-button__link:hover::after {
  color: white;
}
.wp-block-button.anker .wp-block-button__link {
  min-width: auto;
}
.wp-block-button.anker .wp-block-button__link::before {
  display: inline-block;
  font-size: 14px;
  color: #43b443;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  transition: 0.3s;
  margin-right: 0.5rem;
}
.wp-block-button.anker .wp-block-button__link::after {
  content: none;
}
.wp-block-button.anker .wp-block-button__link:hover::before {
  color: white;
}

.about-bg {
  position: relative;
  /* =========================
     背景レイヤー共通
  ========================= */
}
.about-bg::before, .about-bg::after,
.about-bg .bg-line,
.about-bg .bg-line-top,
.about-bg .bg-line-reverse,
.about-bg .bg-line-left {
  position: absolute;
  pointer-events: none;
}
.about-bg {
  /* =========================
     丸いぼかし
  ========================= */
}
.about-bg::before, .about-bg::after {
  content: "";
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 180, 162, 0.3), rgba(212, 238, 22, 0.3));
  filter: blur(30px);
  opacity: 0.9;
  z-index: 0;
}
.about-bg {
  /* 右上 */
}
.about-bg::before {
  top: var(--before-top, 50px);
  right: var(--before-right, 30px);
}
.about-bg {
  /* 左下 */
}
.about-bg::after {
  bottom: var(--after-bottom, -80px);
  left: var(--after-left, 70px);
}
.about-bg {
  /* =========================
     線（SVG背景）共通
  ========================= */
}
.about-bg .bg-line-top,
.about-bg .bg-line-reverse {
  bottom: -345px;
  height: auto;
  z-index: 0;
}
.about-bg {
  /* 右側 */
}
.about-bg .bg-line {
  position: absolute;
  right: 750px;
  bottom: -838px;
  width: 1200px;
  height: auto;
  transform-origin: bottom right;
  transform: scaleX(-1) rotate(31deg);
  opacity: 0.5;
  z-index: 0;
}
.about-bg .bg-line-top {
  top: -99px;
  right: -215px;
  width: 550px;
  transform: rotate(237deg);
}
.about-bg {
  /* 左側（反転） */
}
.about-bg .bg-line-reverse {
  left: -310px;
  width: 900px;
  z-index: 0;
}
.about-bg .bg-line-left {
  top: 190px;
  left: -70px;
  width: 1200px;
  height: auto;
  transform: rotate(31deg);
  opacity: 0.5;
  z-index: 0;
}
.about-bg {
  /* =========================
     コンテンツ前面
  ========================= */
}
.about-bg .main-container {
  position: relative;
  z-index: 1;
}

#front-about {
  --before-top: 55px;
  --before-right: -80px;
  --after-bottom: -120px;
  --after-left: -40px;
}
@media screen and (max-width: 1024px) {
  #front-about .bg-line-left {
    display: none;
  }
}

#front-about-sposyo {
  --before-top: 120px;
  --before-right: 65px;
  --after-bottom: -136px;
  --after-left: 363px;
}

#front-company {
  --before-top: 20px;
  --before-right: 50px;
  --after-bottom: -150px;
  --after-left: 50%;
}

/* =========================
   MV用背景線
========================= */
.mv .bg-line {
  position: absolute;
  top: -100px;
  right: -180px;
  width: 700px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.mv .bg-line-reverse {
  position: absolute;
  top: -85px;
  left: -400px;
  width: 900px;
  height: auto;
  transform: rotate(339deg);
  z-index: 0;
  pointer-events: none;
}

.page-header .bg-line-reverse {
  position: absolute;
  top: -60px;
  right: -340px;
  width: 723px;
  height: auto;
  transform: rotate(3deg);
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .page-header .bg-line-reverse {
    top: 17px;
    right: -242px;
    width: 545px;
  }
}
@media screen and (max-width: 599px) {
  .page-header .bg-line-reverse {
    top: -21px;
    right: -224px;
    width: 380px;
  }
}

/* =========================
   線アニメ初期状態
========================= */
.bg-line path,
.bg-line-reverse path,
.bg-line-left path,
.mv-line-bottom path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

/* =========================
   fadeIn後に線を描画
========================= */
#front-about.fadeInLeft .bg-line-left path {
  animation: drawLine 5s ease forwards;
  animation-delay: 0.8s;
}

#front-about-sposyo.fadeInLeft .bg-line path {
  animation: drawLine 5s ease forwards;
  animation-delay: 1.6s;
}

.mv .bg-line-reverse path {
  animation: drawLine 6s ease forwards;
  animation-delay: 0.3s;
}

.mv .mv-line-bottom path {
  animation: drawLine 6s ease forwards;
  animation-delay: 1s;
}

.page-header .bg-line-reverse path {
  animation: drawLine 6s ease forwards;
  animation-delay: 0;
}

/* =========================
   線描画アニメーション
========================= */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
/* =========================
   下部ライン
========================= */
.mv-line-bottom {
  position: absolute;
  right: -196px;
  bottom: -240px;
  width: 670px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  transform: rotate(8deg);
}

/* =========================
   MV専用装飾調整
========================= */
.mv .about-bg::before {
  top: 180px;
  left: -30px;
  width: 230px;
  height: 230px;
}
.mv .about-bg::after {
  display: none;
}

/* =========================
   fadeIn アニメーション
========================= */
.fadeLeftTrigger {
  opacity: 0;
}

.fadeInLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 30px;
  scroll-behavior: smooth;
}

img,
svg {
  display: block;
  max-width: 100%;
}

p {
  margin-bottom: 1rem;
  line-height: 2;
}

.bg-theme-main-100 {
  background: #f3fbf3;
}

main {
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 60px;
  }
}
main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  word-break: auto-phrase;
}
main h2 {
  position: relative;
  margin: -10px 0 40px;
  padding-top: 3rem;
}
main h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #43b443;
  border-radius: 999px;
}
main h3 {
  position: relative;
  margin: 40px 0 20px;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  main h3 {
    font-size: 1.25rem;
    padding-left: 16px;
  }
}
main h3::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 3px;
  height: calc(100% - 0.3em);
  border-radius: 999px;
  background-color: #43b443;
}
main h3:first-of-type {
  margin-top: 60px;
}
main p.text-center {
  text-align: center;
}
main p.font-medium {
  font-weight: 500;
}
main p.font-semibold {
  font-weight: 600;
}
main p.font-bold {
  font-weight: 700;
}
main ul,
main ol {
  margin: 5px 0 1.5rem 1.5rem;
  list-style-position: outside;
}
main ul li,
main ol li {
  line-height: 2;
}
main ul li::marker,
main ol li::marker {
  color: #43b443;
}
main ul {
  list-style-type: disc;
}
main ul li:not(:last-child) {
  margin-bottom: 8px;
}
main ol {
  list-style-type: decimal;
}
main a {
  overflow-wrap: anywhere;
  word-break: break-word;
}
main .wp-block-table {
  margin: 4rem auto 0;
}
main .wp-block-table table {
  background: white;
}
main .wp-block-table table tr {
  border: none;
}
main .wp-block-table table td {
  border-top: none;
  border-right: none;
  border-left: none;
  line-height: 1.3;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  main .wp-block-table table td {
    padding: 24px 10px;
  }
}
main .wp-block-table table td:first-child {
  width: auto;
  white-space: nowrap;
  border-bottom: 1px solid #43b443;
}
main .wp-block-table table td:last-child {
  border-bottom: 1px solid #e1fae1;
}
main .wp-block-embed-youtube {
  margin: 4rem 0;
}
main .wp-block-embed-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
main hr,
main hr.wp-block-separator {
  margin: 4rem 0;
  border: 1px solid #ccc;
}
main .wp-block-group.is-layout-grid {
  gap: 20px;
}
main .wp-block-columns {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  main .wp-block-column img {
    margin-right: auto;
    margin-left: auto;
  }
}
main figure.wp-block-image.rad-10 img {
  border-radius: 10px;
}

.pagination {
  margin: 40px auto;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination .page-numbers {
  display: flex;
  width: 44px;
  height: 44px;
  color: #43b443;
  background: #fff;
  border: 1px solid #43b443;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}
.pagination .page-numbers:hover {
  color: #fff;
  background: #43b443;
}
.pagination .page-numbers.current {
  color: #fff;
  background: #43b443;
}
.pagination .page-numbers.dots {
  width: auto;
  background: none;
  border: none;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-size: 15px;
}

ul.wp-block-list li {
  line-height: 2;
}
ul.wp-block-list li a[href$=".pdf"],
ul.wp-block-list li a[href$=".doc"],
ul.wp-block-list li a[href$=".docx"],
ul.wp-block-list li a[href$=".xls"],
ul.wp-block-list li a[href$=".xlsx"],
ul.wp-block-list li a[href$=".ppt"],
ul.wp-block-list li a[href$=".pptx"],
ul.wp-block-list li a[href$=".zip"] {
  color: #43b443;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
ul.wp-block-list li a[href$=".pdf"]:hover,
ul.wp-block-list li a[href$=".doc"]:hover,
ul.wp-block-list li a[href$=".docx"]:hover,
ul.wp-block-list li a[href$=".xls"]:hover,
ul.wp-block-list li a[href$=".xlsx"]:hover,
ul.wp-block-list li a[href$=".ppt"]:hover,
ul.wp-block-list li a[href$=".pptx"]:hover,
ul.wp-block-list li a[href$=".zip"]:hover {
  opacity: 0.7;
}
ul.wp-block-list li {
  /* 共通ラベルデザイン */
}
ul.wp-block-list li a[href$=".pdf"]::after,
ul.wp-block-list li a[href$=".doc"]::after,
ul.wp-block-list li a[href$=".docx"]::after,
ul.wp-block-list li a[href$=".xls"]::after,
ul.wp-block-list li a[href$=".xlsx"]::after,
ul.wp-block-list li a[href$=".ppt"]::after,
ul.wp-block-list li a[href$=".pptx"]::after,
ul.wp-block-list li a[href$=".zip"]::after {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1;
  color: #43b443;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: white;
  border: 1px solid #43b443;
  border-radius: 4px;
  vertical-align: 1px;
}
ul.wp-block-list li {
  /* ラベル文字 */
}
ul.wp-block-list li a[href$=".pdf"]::after {
  content: "PDF";
}
ul.wp-block-list li a[href$=".doc"]::after,
ul.wp-block-list li a[href$=".docx"]::after {
  content: "WORD";
}
ul.wp-block-list li a[href$=".xls"]::after,
ul.wp-block-list li a[href$=".xlsx"]::after {
  content: "EXCEL";
}
ul.wp-block-list li a[href$=".ppt"]::after,
ul.wp-block-list li a[href$=".pptx"]::after {
  content: "PPT";
}
ul.wp-block-list li a[href$=".zip"]::after {
  content: "ZIP";
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.fadeLeftTrigger {
  opacity: 0;
}

.fadeInLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.is-disabled a {
  padding: 0;
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.button.is-disabled {
  border-color: #cfcfcf;
  background: #cfcfcf;
  cursor: not-allowed;
  pointer-events: none;
}
.button.is-disabled::after {
  color: #cfcfcf;
}

.grecaptcha-badge {
  visibility: hidden;
}

.container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 40px;
}
@media screen and (max-width: 767px) {
  .main-container {
    padding: 10px 16px;
  }
}
.main-container .wp-block-group:last-child {
  margin-bottom: 5rem;
}

.grid-700 {
  max-width: 700px;
  margin: 0 auto;
}

.grid-750 {
  max-width: 750px;
  margin: 0 auto;
}

.grid-800 {
  max-width: 800px;
  margin: 0 auto;
}

.grid-c4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .grid-c4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-c3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .grid-c3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.text-center {
  text-align: center;
}

.aligncenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alignright {
  display: flex;
  justify-content: flex-end;
}

.align-hcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-11 {
  margin-top: 2.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-40 {
  margin-top: 10rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-11 {
  margin-bottom: 2.75rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-40 {
  margin-bottom: 10rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-11 {
  padding-top: 2.75rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-14 {
  padding-top: 3.5rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-40 {
  padding-top: 10rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-11 {
  padding-bottom: 2.75rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-40 {
  padding-bottom: 10rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-11 {
  padding-left: 2.75rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-14 {
  padding-left: 3.5rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pl-40 {
  padding-left: 10rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-9 {
  padding-right: 2.25rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-11 {
  padding-right: 2.75rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-14 {
  padding-right: 3.5rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pr-20 {
  padding-right: 5rem;
}

.pr-40 {
  padding-right: 10rem;
}

/* =========================
  Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
}

/* =========================
  Mixin
========================= */
/* =========================
  PC Header
========================= */
header#site-header-pc {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 5px 16px;
  background: white;
}
@media screen and (max-width: 1024px) {
  header#site-header-pc {
    display: none;
  }
}
header#site-header-pc #site-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
  Logo
========================= */
h1.site-logo {
  margin: 0;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  h1.site-logo {
    font-size: 1.3rem;
  }
}
h1.site-logo a {
  display: flex;
  align-items: center;
}
h1.site-logo .logo {
  width: 35px;
  margin-right: 8px;
}
h1.site-logo .logo img {
  display: block;
  width: 100%;
}

/* =========================
  Header Right
========================= */
.header-side {
  display: flex;
  align-items: center;
}

/* =========================
  Global Nav
========================= */
.gnav nav {
  width: 100%;
}
.gnav ul.nav_container {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1280px) {
  .gnav ul.nav_container {
    gap: 24px;
  }
}
.gnav ul.nav_container > li {
  position: relative;
  margin: 0;
  text-align: center;
  font-weight: 500;
}
.gnav ul.nav_container > li > a,
.gnav ul.nav_container > li a {
  position: relative;
  display: inline-flex;
  padding: 26px 0;
  font-size: 16px;
  color: #333;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .gnav ul.nav_container > li > a,
  .gnav ul.nav_container > li a {
    font-size: 15px;
  }
}
.gnav ul.nav_container > li > a:hover,
.gnav ul.nav_container > li a:hover {
  color: #43b443;
}
.gnav ul.nav_container > li {
  /* 通常メニュー下線 */
}
.gnav ul.nav_container > li:not(.menu-item-has-children) > a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: #43b443;
  content: "";
  transition: width 0.3s;
}
.gnav ul.nav_container > li:not(.menu-item-has-children) > a:hover::after {
  width: 100%;
}
.gnav ul.nav_container > li {
  /* Dropdown */
}
.gnav ul.nav_container > li.menu-item-has-children:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.gnav ul.nav_container > li.menu-item-has-children > a::after {
  display: inline-block;
  margin-left: 0.35em;
  color: #43b443;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f107";
}
.gnav ul.nav_container > li.menu-item-has-children ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  margin: 0;
  padding: 0;
  background: #2a6f2a;
  border-radius: 5px;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: 0.3s ease;
}
.gnav ul.nav_container > li.menu-item-has-children ul.sub-menu li {
  margin: 0;
}
.gnav ul.nav_container > li.menu-item-has-children ul.sub-menu li:last-child a {
  border-bottom: none;
}
.gnav ul.nav_container > li.menu-item-has-children ul.sub-menu li a {
  display: block;
  padding: 18px 20px;
  font-size: 15px;
  color: white;
  border-bottom: 1px solid #e1fae1;
  text-align: left;
}
.gnav ul.nav_container > li.menu-item-has-children ul.sub-menu li a:hover {
  background: #43b443;
}

/* Current */
.gnav ul li.current_page_item > a,
.gnav ul li.current-menu-item > a {
  color: #43b443;
}

.menu-member > a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  background: url("./images/icon-lock.svg") no-repeat center/contain;
}

/* =========================
  Header Button
========================= */
.head-btn {
  margin-left: 24px;
}
.head-btn a {
  display: flex;
  width: 195px;
  height: 50px;
  font-size: 15px;
  color: white;
  background: #43b443;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .head-btn a {
    width: 160px;
  }
}
.head-btn a::before {
  font-size: 1em;
  color: white;
  margin-right: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  transition: 0.3s;
}
.head-btn a:hover {
  color: #43b443;
  background: white;
  border: 1px solid #43b443;
}
.head-btn a:hover::before {
  color: #43b443;
}

/* =========================
  SP Header
========================= */
header#site-header-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  header#site-header-sp {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 5px 16px;
    background: white;
    display: block;
    min-height: 60px;
  }
}
header#site-header-sp #site-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
  Hamburger
========================= */
#header-nav-toggle {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
#header-nav-toggle #toggle_menu {
  display: flex;
  width: 50px;
  height: 50px;
  color: white;
  background: #43b443;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50px;
}
#header-nav-toggle #toggle_menu::before {
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 600;
  content: "\f0c9";
}
#header-nav-toggle #toggle_menu.active::before {
  content: "\f00d";
}

/* =========================
  SP Navigation
========================= */
nav#sp-navs {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  height: calc(100vh - 60px);
  padding: 1.5rem 1rem 5rem;
  overflow-y: auto;
  background: #f3fbf3;
  overscroll-behavior: none;
}
nav#sp-navs ul.nav_container {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  font-weight: 500;
}
nav#sp-navs ul.nav_container > li {
  border-bottom: 1px solid #e5e5e5;
}
nav#sp-navs ul.nav_container > li:first-child {
  border-top: 1px solid #e5e5e5;
}
nav#sp-navs ul.nav_container > li > a {
  position: relative;
  display: block;
  padding: 16px 45px 16px 10px;
  font-size: 18px;
  transition: 0.3s;
}
nav#sp-navs ul.nav_container > li > a:hover {
  color: #43b443;
}
nav#sp-navs ul.nav_container > li.menu-item-has-children > a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #43b443;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f107";
  transform: translateY(-50%);
}
nav#sp-navs ul.nav_container > li.menu-item-has-children > a.active::before {
  content: "\f106";
}
nav#sp-navs ul.nav_container {
  /* Sub Menu */
}
nav#sp-navs ul.nav_container ul.sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav#sp-navs ul.nav_container ul.sub-menu li a {
  position: relative;
  display: block;
  padding: 5px 0 10px 40px;
  font-size: 18px;
  text-decoration: none;
}
nav#sp-navs ul.nav_container ul.sub-menu li a::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 10px;
  height: 1px;
  background: currentcolor;
  content: "";
  transform: translateY(-50%);
}
nav#sp-navs ul.nav_container ul.sub-menu:last-child {
  padding-bottom: 20px;
}
nav#sp-navs {
  /* CTA */
}
nav#sp-navs #cta {
  background: none;
}
nav#sp-navs #cta .cta-block {
  background-color: #43b443;
}
nav#sp-navs #cta .cta-text {
  gap: 18px;
}
nav#sp-navs #cta .font-medium {
  color: #43b443;
}
nav#sp-navs #cta .button-mail {
  border: 1px solid #43b443;
}
nav#sp-navs .copyright-inner {
  margin-top: 20px;
}

@media (width >= 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
#cta {
  background: #43b443;
}
#cta .cta-inner {
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  #cta .cta-inner {
    padding: 40px 20px;
  }
}
#cta .cta-container {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  #cta .cta-container {
    flex-direction: column;
    padding: 0;
    align-items: center;
    text-align: center;
  }
}
#cta .cta-heading {
  flex-shrink: 0;
}
#cta .cta-desc {
  color: white;
  font-weight: 500;
}
#cta .cta-button {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 1024px) {
  #cta .cta-button {
    max-width: 100%;
  }
}
#cta .cta-button .button-mail {
  width: 100%;
}
#cta .line-left {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #cta .line-left::after {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
#cta .cta-block {
  padding: 15px 39px 8px;
  border: 2px solid white;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  #cta .cta-block {
    width: 100%;
    min-height: 88px;
    padding: 12px 20px;
    text-align: center;
  }
}
#cta .cta-text {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  #cta .cta-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  #cta .cta-text {
    width: 100%;
    gap: 10px;
  }
}
#cta .cta-text .item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  #cta .cta-text .item {
    width: 100%;
  }
}
#cta .cta-text .font-medium {
  margin-bottom: 8px;
  color: white;
  font-weight: 500;
}
#cta .cta-text .cta-tel {
  margin-bottom: 5px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  #cta .cta-text .cta-tel {
    font-size: 24px;
  }
}
#cta .cta-text .cta-tel::before {
  display: inline-flex;
  width: 28px;
  height: 28px;
  font-size: 14px;
  color: #43b443;
  background: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f095";
  transform: translateY(-2px);
}
@media screen and (max-width: 1024px) {
  #cta .cta-text .cta-tel::before {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}
#cta .cta-text .cta-tel {
  display: flex;
  font-size: 24px;
  align-items: center;
  margin-bottom: 0;
  justify-content: center;
}
#cta .cta-text .cta-tel a {
  color: white;
  text-decoration: none;
}
#cta .cta-text .button-mail a {
  display: inline-flex;
  align-items: center;
}
#cta .cta-text .button-mail:hover {
  opacity: 0.7;
}

p.time {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: white;
}

#site-footer #site-footer-inner {
  padding: 3rem 4rem;
}
@media screen and (max-width: 767px) {
  #site-footer #site-footer-inner {
    padding: 4rem 2rem 3rem;
  }
}
#site-footer #site-footer-content {
  display: flex;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1140px;
}
@media screen and (max-width: 1024px) {
  #site-footer #site-footer-content {
    flex-direction: column;
    padding: 0;
  }
}
#site-footer #site-footer-address,
#site-footer #site-footer-menu,
#site-footer #login-box {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  #site-footer #site-footer-address {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}
#site-footer #site-footer-address h1.site-logo {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  #site-footer #site-footer-address h1.site-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
#site-footer #site-footer-address address p {
  margin-bottom: 0;
}
#site-footer #site-footer-address address p.tel::before, #site-footer #site-footer-address address p.fax::before {
  display: inline-block;
  margin-right: 5px;
  color: white;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translateY(-3px);
}
#site-footer #site-footer-menu nav ul.menu {
  display: flex;
  flex-flow: column wrap;
  gap: 0 2.7rem;
  max-height: 200px;
  font-weight: 500;
}
#site-footer #site-footer-menu nav ul.menu .sub-menu {
  margin-top: 7px;
}
#site-footer #site-footer-menu nav ul.menu .sub-menu li {
  margin-left: 0.5em;
}
#site-footer #site-footer-menu nav ul.menu .sub-menu li a {
  position: relative;
  padding-left: 16px;
}
#site-footer #site-footer-menu nav ul.menu .sub-menu li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  background: currentcolor;
  content: "";
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  #site-footer #site-footer-menu nav ul.menu {
    flex-direction: row;
    max-height: none;
  }
}
#site-footer #site-footer-menu nav ul.menu li {
  max-width: 180px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  #site-footer #site-footer-menu nav ul.menu li {
    width: 100%;
  }
  #site-footer #site-footer-menu nav ul.menu li:last-child {
    margin-bottom: 0;
  }
}
#site-footer #site-footer-menu nav ul.menu li a[href] {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
#site-footer #site-footer-menu nav ul.menu li a[href]::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #43b443;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#site-footer #site-footer-menu nav ul.menu li:hover > a[href]::after {
  transform: scaleX(1);
}
#site-footer #login-box {
  display: flex;
}
#site-footer #login-box .news-bottom-box {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 30px 40px;
  background: #f3f3f3;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  max-width: 300px;
  max-height: 175px;
}
#site-footer #login-box .news-bottom-content {
  text-align: center;
  font-weight: 600;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
#site-footer #login-box .news-bottom-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 600;
}
#site-footer #login-box .news-bottom-content p {
  margin-top: 8px;
}
#site-footer #login-box .news-bottom-content .icon-lock {
  width: 23px;
  height: 23px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #site-footer #login-box .news-bottom-box {
    padding: 24px;
    gap: 15px;
  }
}

.copyright {
  position: relative;
  z-index: 1;
  padding: 1rem 4rem 3rem;
  border-top: 2px solid #e5e5e5;
}
@media screen and (max-width: 1024px) {
  .copyright {
    padding: 1rem 0 3rem;
    border-top: none;
  }
}
.copyright .copyright-inner {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
  align-items: center;
  justify-content: space-between;
}
.copyright p {
  margin: 0;
  color: #43b443;
}
.copyright .privacy {
  color: #43b443;
  text-decoration: underline;
}
.copyright .privacy:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .copyright .copyright-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

#back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
#back-top a {
  display: flex;
  width: 80px;
  height: 80px;
  color: #fff;
  background: #43b443;
  border-radius: 50%;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
#back-top a:hover {
  transform: translateY(-4px);
}
@media screen and (max-width: 767px) {
  #back-top {
    display: none !important;
  }
}

.back-top-arrow {
  line-height: 1;
  transform: translateY(-2px);
}
.back-top-arrow i {
  font-size: 1.15rem;
}

.back-top-text {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
}

.footer-pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .footer-pc {
    display: none;
  }
}

.footer-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer-sp {
    display: block;
  }
}

.footer-nav {
  padding: 1.5rem 1rem;
}
.footer-nav ul.nav_container {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  font-weight: 500;
}
.footer-nav ul.nav_container > li {
  border-bottom: 1px solid #e5e5e5;
}
.footer-nav ul.nav_container > li:first-child {
  border-top: 1px solid #e5e5e5;
}
.footer-nav ul.nav_container > li > a {
  position: relative;
  display: block;
  padding: 16px 45px 16px 10px;
  font-size: 18px;
  transition: 0.3s;
}
.footer-nav ul.nav_container > li > a:hover {
  color: #43b443;
}
.footer-nav ul.nav_container > li.menu-item-has-children > a.active::before {
  content: "\f106";
}
.footer-nav ul.nav_container {
  /* Sub Menu */
}
.footer-nav ul.nav_container ul.sub-menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav ul.nav_container ul.sub-menu li a {
  position: relative;
  display: block;
  padding: 0 0 10px 40px;
  font-size: 18px;
  text-decoration: none;
}
.footer-nav ul.nav_container ul.sub-menu li a::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 10px;
  height: 1px;
  background: currentcolor;
  content: "";
  transform: translateY(-50%);
}
.footer-nav ul.nav_container ul.sub-menu:last-child {
  padding-bottom: 20px;
}

h2 {
  position: relative;
  font-size: 2rem;
  color: #333;
  margin-top: -10px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}
h2.line-center {
  position: relative;
  margin-bottom: 60px;
}
h2.line-center::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #43b443;
}
@media screen and (max-width: 767px) {
  h2.line-center::after {
    bottom: -24px;
    width: 30px;
  }
}
h2.line-center::after {
  right: 0;
  margin: 0 auto;
}
h2.line-center {
  margin-top: -10px;
  text-align: center;
}
h2.line-left {
  position: relative;
  margin-bottom: 60px;
}
h2.line-left::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #43b443;
}
@media screen and (max-width: 767px) {
  h2.line-left::after {
    bottom: -24px;
    width: 30px;
  }
}
h2.line-left {
  margin: -10px 0 40px;
}
@media screen and (max-width: 767px) {
  h2.line-left {
    margin-bottom: 15px;
  }
}
h2.white {
  color: #fff;
}
h2.line-left.white::after {
  background-color: #fff !important;
}

.ttl h2 {
  padding-top: 0;
}
.ttl h2::after {
  content: none;
}
.ttl h2.line-center {
  position: relative;
  margin-bottom: 60px;
}
.ttl h2.line-center::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #43b443;
}
@media screen and (max-width: 767px) {
  .ttl h2.line-center::after {
    bottom: -24px;
    width: 30px;
  }
}
.ttl h2.line-center::after {
  right: 0;
  margin: 0 auto;
}
.ttl h2.line-center {
  text-align: center;
}
.ttl h2.line-left {
  position: relative;
  margin-bottom: 60px;
}
.ttl h2.line-left::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #43b443;
}
@media screen and (max-width: 767px) {
  .ttl h2.line-left::after {
    bottom: -24px;
    width: 30px;
  }
}
.ttl h2.white {
  color: #fff;
}
.ttl h2.white::first-letter {
  color: #fff;
}

p.sub-ttl {
  font-size: 18px;
  color: #43b443;
  font-family: Jost, sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  p.sub-ttl {
    font-size: 1.1rem;
  }
}
p.sub-ttl--white {
  color: white;
}

h3 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.2rem;
  }
}
h3.line-center {
  position: relative;
  margin-bottom: 60px;
}
h3.line-center::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #43b443;
}
@media screen and (max-width: 767px) {
  h3.line-center::after {
    bottom: -24px;
    width: 30px;
  }
}
h3.line-center::after {
  right: 0;
  margin: 0 auto;
}
h3.line-center {
  text-align: center;
}
h3.line-left {
  position: relative;
  margin-bottom: 60px;
}
h3.line-left::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #43b443;
}
@media screen and (max-width: 767px) {
  h3.line-left::after {
    bottom: -24px;
    width: 30px;
  }
}
h3.line-left {
  margin: 20px 0 40px;
}

h4,
h5,
h6 {
  font-weight: 600;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 16px;
}

p.medium {
  font-size: 15px;
}
p.small {
  font-size: 13px;
}

.mv {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.mv-inner {
  position: relative;
  display: flex;
  height: 100%;
  z-index: 1;
}

/* 左側 */
.mv-left {
  display: flex;
  width: 40%;
  padding: 0 2% 0 5%;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* 右側 */
.mv-right {
  position: relative;
  width: 80%;
  height: 97%;
  margin-left: -10%;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  z-index: 1;
}
.mv-right .pc-only {
  visibility: visible;
  position: absolute;
  inset: 0;
}
.mv-right .sp-only {
  visibility: hidden;
  position: absolute;
  inset: 0;
}
@media (width <= 768px) {
  .mv-right .pc-only {
    visibility: hidden;
  }
  .mv-right .sp-only {
    visibility: visible;
  }
}

/* スライダー */
.mv-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* コピー */
.maincopy {
  margin-top: 20vh;
}

h2.front-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  margin: auto;
  padding-top: 0;
  font-size: clamp(2.6rem, 2rem + 2vw, 5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  h2.front-ttl {
    gap: 0.5rem;
  }
}
h2.front-ttl .lead {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.6rem);
}
h2.front-ttl::after {
  content: none;
}
h2.front-ttl > span {
  display: inline-block;
  padding: 0 1rem;
  background: white;
  white-space: nowrap;
}
h2.front-ttl .green {
  color: #43b443;
}
h2.front-ttl .pink {
  color: #f7638e;
}

@media screen and (max-width: 1024px) {
  .mv {
    height: 90vh;
  }
  .mv-inner {
    position: relative;
    display: block;
    min-height: 75vh;
  }
  .mv-right {
    width: 85%;
    height: 95%;
    margin-left: auto;
    overflow: hidden;
    border-bottom-left-radius: 30px;
  }
  #main-visual {
    width: 100%;
    height: 100%;
  }
  .mv-left {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 75%;
    padding-left: 0;
    z-index: 10;
  }
  .maincopy {
    margin-top: 0;
  }
  h2.front-ttl > span {
    padding: 0 0.35em;
    background: white;
  }
}
#front-about,
#front-about-sposyo {
  position: relative;
  padding: 80px 0;
}
#front-about .front-about-layout,
#front-about-sposyo .front-about-layout {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 450px;
}
#front-about .front-about-layout.reverse,
#front-about-sposyo .front-about-layout.reverse {
  flex-direction: row-reverse;
}
#front-about .front-about-layout.reverse .front-about-head,
#front-about-sposyo .front-about-layout.reverse .front-about-head {
  margin-left: auto;
}
#front-about .front-about-layout.reverse .front-about-image,
#front-about-sposyo .front-about-layout.reverse .front-about-image {
  right: auto;
  left: 0;
}
@media screen and (width <= 1024px) {
  #front-about .front-about-layout.reverse .front-about-image,
  #front-about-sposyo .front-about-layout.reverse .front-about-image {
    left: 0;
  }
}
#front-about .front-about-head,
#front-about-sposyo .front-about-head {
  position: relative;
  width: 455px;
  z-index: 2;
}
#front-about .front-about-image,
#front-about-sposyo .front-about-image {
  position: absolute;
  top: 50%;
  right: clamp(-220px, 5vw, 0px);
  width: clamp(350px, 42vw, 530px);
  height: auto;
  transform: translateY(-50%);
}
#front-about .front-about-image img,
#front-about-sposyo .front-about-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  #front-about,
  #front-about-sposyo {
    padding: 80px 0;
  }
  #front-about .front-about-layout,
  #front-about .front-about-layout.reverse,
  #front-about-sposyo .front-about-layout,
  #front-about-sposyo .front-about-layout.reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }
  #front-about .front-about-layout.reverse .front-about-image,
  #front-about-sposyo .front-about-layout.reverse .front-about-image {
    left: auto;
  }
  #front-about .front-about-head,
  #front-about-sposyo .front-about-head {
    width: 100%;
  }
  #front-about .fs-desc,
  #front-about-sposyo .fs-desc {
    margin-top: 16px;
    padding-top: 1rem;
  }
  #front-about .fs-desc h2,
  #front-about-sposyo .fs-desc h2 {
    font-size: 1.8rem;
  }
  #front-about .front-about-image,
  #front-about-sposyo .front-about-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 500px;
    border-radius: 16px;
    transform: none;
  }
  #front-about .front-about-image img,
  #front-about-sposyo .front-about-image img {
    aspect-ratio: 16/10;
  }
  #front-about .bg-line,
  #front-about-sposyo .bg-line {
    right: -180px;
    bottom: -100px;
    width: 450px;
    height: auto;
  }
}

#front-about {
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #front-about {
    padding-bottom: 100px;
  }
}

#front-about-sposyo {
  padding-top: 0;
}

#front-news {
  padding: 4rem 0;
  background-color: #f3fbf3;
}
@media screen and (max-width: 767px) {
  #front-news {
    padding: 3rem 0;
    margin-top: 20px;
  }
}
#front-news .front-news-inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  #front-news .front-news-inner {
    flex-direction: column;
    gap: 30px;
  }
}
#front-news .front-news-inner .front-news-left {
  width: 290px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  #front-news .front-news-inner .front-news-left {
    width: 100%;
  }
}
#front-news .front-news-inner .front-news-left .ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 390px;
}
@media screen and (max-width: 1024px) {
  #front-news .front-news-inner .front-news-left .ttl {
    align-items: center;
    text-align: center;
    width: auto;
  }
  #front-news .front-news-inner .front-news-left .ttl h2.line-left::after {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
#front-news .front-news-inner .front-news-left .button-wrap {
  margin: 0 0 40px;
}
#front-news .front-news-inner .front-news-right {
  flex: 1;
  min-width: 0;
}
#front-news .front-news-inner .front-news-right .news-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px 65px;
  border-radius: 20px;
  background: white;
}
@media screen and (max-width: 767px) {
  #front-news .front-news-inner .front-news-right .news-card {
    padding: 24px;
  }
}
#front-news .front-news-inner .front-news-right .news-card .newslist {
  background-color: white;
}
#front-news .pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  #front-news .pc-only {
    display: none;
  }
}
#front-news .sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  #front-news .sp-only {
    display: flex;
    justify-content: center;
    margin: 50px 0;
  }
}
#front-news .news-bottom-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 30px auto 0;
  padding: 30px 80px;
  border: 1px solid #cfcfcf;
  border-radius: 20px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 767px) {
  #front-news .news-bottom-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 34px 24px;
  }
}
@media screen and (max-width: 767px) {
  #front-news .news-bottom-box .button {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #front-news .news-bottom-content {
    width: 100%;
  }
}
#front-news .news-bottom-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #front-news .news-bottom-content h3 {
    justify-content: center;
    font-size: 1.25rem;
    text-align: center;
  }
}
#front-news .news-bottom-content h4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#front-news .news-bottom-content p {
  margin-bottom: 0;
}
#front-news .news-bottom-content .icon-lock {
  width: 23px;
  height: 23px;
  vertical-align: middle;
}

#front-company {
  padding: 4rem;
  background-color: white;
  background-image: linear-gradient(rgba(67, 180, 67, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 180, 67, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}
@media screen and (max-width: 767px) {
  #front-company {
    padding: 50px 0;
  }
}
#front-company .front-company-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
@media screen and (max-width: 1024px) {
  #front-company .front-company-inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  #front-company .front-company-inner {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  #front-company .front-company-inner .fc-item {
    margin: 0 auto;
  }
}
#front-company .front-company-inner .fc-item > a {
  position: relative;
  display: block;
}
#front-company .front-company-inner .fc-item > a:hover figure img, #front-company .front-company-inner .fc-item > a:focus-within figure img {
  transform: scale(1.1);
}
#front-company .front-company-inner .fc-item figure {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
#front-company .front-company-inner .fc-item figure img {
  transition: transform 0.3s;
}
#front-company .front-company-inner .fc-item .ttl {
  position: absolute;
  top: 50%;
  left: 42px;
  z-index: 2;
  transform: translateY(-50%);
}
#front-company .front-company-inner .fc-item .ttl p {
  font-size: 16px;
  color: white;
}
#front-company .front-company-inner .fc-item .ttl .line-left::after {
  background-color: white;
}
#front-company .front-company-inner .fc-item .ttl h2 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: white;
}

.breadcrumbs {
  padding: 30px 0;
  font-size: 0.9em;
  line-height: 1.4;
}
.breadcrumbs i {
  padding: 0 10px;
  font-size: 0.8em;
}
.breadcrumbs a {
  color: #43b443;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 10px 0;
  }
}

main.page a {
  color: #43b443;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.3s ease;
}
main.page a:hover {
  opacity: 0.7;
}
main.page a[target=_blank]:not(.no-external-icon,
[href$=".pdf"],
[href$=".doc"],
[href$=".docx"],
[href$=".xls"],
[href$=".xlsx"],
[href$=".ppt"],
[href$=".pptx"],
[href$=".zip"])::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.3em;
  font-size: 0.85em;
  vertical-align: middle;
}

.page-header {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 97%;
  height: 250px;
  margin: 0 auto;
  color: #43b443;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  background: linear-gradient(137deg, #e1fae1, #fff);
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .page-header {
    width: 100%;
    height: 140px;
    border-radius: 0;
  }
}
.page-header .ttl-inner {
  position: relative;
  z-index: 1;
  width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-header .ttl-inner {
    width: 90%;
    padding: 0;
  }
}
.page-header .ttl-inner p {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .page-header .ttl-inner p {
    margin-bottom: 8px;
    font-size: 13px;
  }
}
.page-header .ttl-inner h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 2;
  padding-top: 0;
  color: #2a6f2a;
}
@media screen and (max-width: 767px) {
  .page-header .ttl-inner h2 {
    font-size: 22px;
  }
  .page-header .ttl-inner h2::after {
    bottom: -14px;
  }
}

.company-data table {
  margin: 0 auto;
}
.company-data table td:first-child {
  width: 20%;
  font-weight: 500;
  background-color: #f3fbf3;
}
@media screen and (max-width: 767px) {
  .company-data table td:first-child {
    width: 76px;
  }
}
.company-data table td:last-child {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .company-data table td:last-child {
    width: calc(100% - 76px);
  }
}

.gmap {
  position: relative;
  width: 100%;
  height: 0;
  margin: 10px 0;
  padding-top: 40%;
  overflow: hidden;
}
.gmap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .gmap {
    padding-top: 72%;
  }
}

main.service .item {
  gap: 50px;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  main.service .item {
    gap: 20px;
    padding: 2rem;
  }
  main.service .item:nth-child(1), main.service .item:nth-child(3) {
    flex-direction: column-reverse;
  }
}
main.service .item .content {
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  main.service .item .content {
    padding-right: 0;
  }
}
main.service .company-image {
  padding-top: 5rem;
}

.company-image .grid-c4 {
  gap: 0;
}

main.recruit .recruit-intro {
  gap: 5rem;
}
@media screen and (max-width: 1024px) {
  main.recruit .recruit-intro {
    gap: 2rem;
  }
}
main.recruit .recruit-intro figure {
  margin-bottom: 1rem;
}
main.recruit .item {
  padding: 3rem 1.875rem;
}
main.recruit .recruit-info {
  padding: 5rem 3rem 6rem;
  background-image: url("images/recinfo_bg.png");
  background-position: right bottom;
  background-size: cover;
}
main.recruit .recruit-info .recruit-info-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
main.recruit .recruit-info .recruit-info-inner h4 {
  font-size: 32px;
  color: #43b443;
  font-family: Jost, sans-serif;
  font-weight: 500;
}
main.recruit .recruit-info .recruit-info-inner h2 {
  font-weight: 500;
}
main.recruit .recruit-info .recruit-info-inner h3 {
  font-size: 24px;
  color: #43b443;
  margin-bottom: 1rem;
}
main.recruit .recruit-info .recruit-info-inner h3::before {
  display: inline-block;
  margin-right: 10px;
  border-top: 14px solid #43b443;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  content: "";
}

.contact h2 {
  padding-top: 0;
}

.contact-form-tel {
  max-width: 850px;
  margin: 0 auto;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .contact-form-tel {
    gap: 2rem;
  }
}
.contact-form-tel .contact-item {
  display: flex;
  margin: 0 auto;
  padding: 24px 70px;
  border: 1px solid #43b443;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .contact-form-tel .contact-item {
    padding: 24px 0;
  }
}
.contact-form-tel p {
  margin-bottom: 0.5rem;
}
.contact-form-tel p a {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
}
.contact-form-tel p a::before {
  display: inline-block;
  font-size: 23px;
  color: #43b443;
  transform: translateY(-3px);
  font-family: FontAwesome;
  content: "\f095";
  margin-right: 5px;
}
.contact-form-tel p.cta-fax a::before {
  content: "\f1ac";
}

.wpcf7 {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea,
.wpcf7 select {
  width: 100% !important;
  padding: 10px;
  font-size: 15px !important;
  background: #f3f3f3;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
}
.wpcf7 .wp-block-table {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .wpcf7 .wp-block-table td {
    display: block;
  }
  .wpcf7 .wp-block-table td:first-child {
    padding-bottom: 14px;
    font-weight: 500;
  }
  .wpcf7 .wp-block-table td:last-child {
    padding-top: 10px;
  }
}
.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin: 0 15px 10px 0;
}
.wpcf7 .form-required {
  margin-right: 10px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
  color: white;
  background: #ff5656;
}
.wpcf7 .form-any {
  margin-right: 10px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #43b443;
  background: white;
  border: 1px solid #43b443;
}
.wpcf7 .wpcf7-acceptance input[type=checkbox] {
  position: inherit !important;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #f3f3f3;
  border: 1px solid #cfcfcf;
}
.wpcf7 p.ex {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}
.wpcf7 .privacy-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.wpcf7 .privacy-confirm .wpcf7-list-item-label {
  margin: 0 5px;
}
.wpcf7 a {
  color: #43b443;
  text-decoration: underline;
}
.wpcf7 input[type=submit] {
  display: block;
  width: 100%;
  margin: 25px auto;
  padding: 1.5rem 2rem;
  color: #fff;
  background: #43b443;
  border: 1px solid transparent;
  max-width: 380px;
  border-radius: 4px;
  font-weight: 700 !important;
  text-align: center;
  transition: 0.3s;
}
.wpcf7 input[type=submit]:hover {
  color: #43b443;
  background: white;
  border-color: #43b443;
}
.wpcf7 .recaptcha-text {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

body.error404 .main-container a {
  color: #43b443;
  text-decoration: underline;
}

main.archive,
main.post {
  padding-bottom: 5rem;
}

.newslist {
  border-top: 1px dashed #43b443;
}
.newslist article a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 35px;
  border-bottom: 1px dashed #43b443;
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .newslist article a {
    align-items: flex-start;
    padding: 15px 12px;
  }
}
.newslist article a:hover {
  color: #43b443;
}
.newslist article a .archive-title {
  flex: 1;
  font-weight: 500;
}
.newslist article a .archive-title .title {
  margin-bottom: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .newslist article a .archive-title .title {
    line-height: 1.5;
  }
}

.archive-meta {
  display: flex;
  align-items: center;
  width: auto;
  margin-bottom: 0.5rem;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .archive-meta {
    flex-wrap: wrap;
  }
}
.archive-meta time {
  color: #666;
  min-width: max-content;
}
.archive-meta .category {
  margin-bottom: 0;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .archive-meta .category {
    flex-wrap: wrap;
  }
}
.archive-meta .category span {
  display: inline-block;
  padding: 0.5em 0.8em;
  font-size: 0.8rem;
  text-align: center;
  min-width: 95px;
  border-radius: 4px;
  font-weight: 500;
}
.archive-meta .category-info {
  color: #626262;
  background-color: #f3f3f3;
}
.archive-meta .category-event {
  color: #626262;
  background-color: #f3f3f3;
}
.archive-meta .category-kyoukai {
  color: #2a6f2a;
  background-color: #e1fae1;
}
.archive-meta .category-sposyo {
  color: #1d84de;
  background-color: #eef6fd;
}

main.single .main-container {
  padding: 10px 40px 100px;
}
@media screen and (max-width: 767px) {
  main.single .main-container {
    padding: 10px 20px;
  }
}
main.single .breadcrumbs .main-container {
  padding-bottom: 0;
}
main.single article a {
  color: #43b443;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.3s ease;
}
main.single article a:hover {
  opacity: 0.7;
}
main.single article a[target=_blank]:not(.no-external-icon,
[href$=".pdf"],
[href$=".doc"],
[href$=".docx"],
[href$=".xls"],
[href$=".xlsx"],
[href$=".ppt"],
[href$=".pptx"],
[href$=".zip"])::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.3em;
  font-size: 0.85em;
  vertical-align: middle;
}
main.single .entry-wrap {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  main.single .entry-wrap {
    flex-direction: column;
    gap: 0;
  }
}
main.single .entry-item {
  margin-bottom: 50px;
}
main.single h2.news-head {
  margin: 15px 0;
  padding: 2rem 0 10px;
  font-size: 24px;
  color: #333;
  border-bottom: 2px solid #43b443;
  font-weight: 600;
  line-height: 1.6;
  text-indent: 5px;
}
main.single h2.news-head::after {
  content: none;
}
@media screen and (max-width: 767px) {
  main.single h2.news-head {
    padding-top: 0;
  }
}
main.single .newscat {
  display: inline-block;
  width: 130px;
  margin: 0;
  padding: 20px 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 0;
}
main.single .entry-content {
  width: 66%;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  main.single .entry-content {
    width: 100%;
    padding-right: 0;
  }
}
main.single .entry-content .data {
  font-size: 0.8em;
  color: #666;
  margin-left: 10px;
}
main.single .entry-content .entry-inner {
  padding-top: 30px;
}
main.single .entry-content .entry-inner a {
  color: #43b443;
  text-decoration: underline;
}
main.single .entry-content .entry-inner a:hover, main.single .entry-content .entry-inner a:focus {
  text-decoration: underline;
}
main.single .entry-content .entry-inner p {
  margin-bottom: 20px;
}
main.single .entry-content .entry-inner figure.wp-block-image {
  margin: 2rem 0;
}
main.single .entry-content .navPage {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 25px auto;
  font-size: 15px;
}
main.single .entry-content .navPage .next a,
main.single .entry-content .navPage .prev a {
  color: #43b443;
}
main.single .entry-content .navPage .next a:hover,
main.single .entry-content .navPage .prev a:hover {
  color: #97ded4;
}
main.single .entry-content .navPage .next a::before,
main.single .entry-content .navPage .prev a::before {
  margin-right: 12px;
  color: #43b443;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
main.single .entry-content .navPage .next a::before {
  content: "\f104";
}
main.single .entry-content .navPage .prev a::before {
  content: "\f105";
}
main.single .side-content {
  width: 30%;
}
@media screen and (max-width: 767px) {
  main.single .side-content {
    width: 100%;
  }
}
main.single .side-content .side-head {
  padding: 5px 15px;
  font-size: 1rem;
  color: #43b443;
  margin-bottom: 10px;
  font-weight: 500;
}
main.single .side-content .side-head::after {
  content: none;
}
main.single .side-content .inner {
  margin-bottom: 40px;
}
main.single .side-content ul {
  margin: 0;
}
main.single .side-content ul li {
  list-style-type: none;
}
main.single .side-content ul li a {
  display: block;
  border-bottom: 1px dashed #43b443;
}
main.single .side-content ul li a:hover {
  color: #43b443;
}
main.single .side-content ul.categorylist li a::before {
  margin-right: 5px;
  color: #43b443;
  content: "・";
}
main.single .side-content ul.categorylist a {
  padding-bottom: 0.5rem;
}

/*# sourceMappingURL=style.css.map */
