@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Fjalla+One");
@import url("https://fonts.googleapis.com/css?family=Fjalla+One");
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

input,
button {
  outline: none;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

input,
button {
  outline: none;
}

.p-kv {
  height: 680px;
  width: 100vw;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-kv {
    height: 300px;
  }
}
.p-kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* トリミングして全画面にフィット */
  z-index: 0;
}
.recruit__links {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .recruit__links {
    margin: 30px auto 0;
  }
}
.recruit__links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* PCでも折り返し可 */
}

.recruit__links li {
  flex: 1 1 auto; /* 均等に広がる */
  width: 30%;
  max-width: 320px;
}

.recruit__links a {
  background-color: #029844;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.8rem;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  min-width: 300px;
  width: fit-content;
  line-height: 55px;
  text-align: center;
  padding: 5px 20px;
  padding-right: 50px;
}
.recruit__links a::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/chevron_green.svg);
  -webkit-transform: rotate(90deg);
  background-color: #ffffff;
  background-size: 18px 18px;
  background-position: center;
  border-radius: 5px;
  padding: 7px;
  height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.recruit__links a:hover {
  background-color: #037c38;
}
.recruit__links a:hover::after {
  transform: translateY(-50%) rotate(90deg) translateY(-2px);
}
/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
  .recruit__links ul {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 50px;
  }

  .recruit__links li {
    width: 100%;
    max-width: none;
  }

  .recruit__links a {
    width: 100%;
    min-width: unset;
    font-size: 1.6rem;
  }
}

.c-job__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

.c-job__item.is-open .c-job__detail {
  opacity: 1;
}

.c-job__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #0f7e40;
  position: relative;
  position: relative;
  cursor: pointer;
  z-index: 0;
}
.c-job__title-inner {
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-right: 3rem;
  z-index: 0;
}
.c-job__title::before {
  content: "";
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0f7e40;
  z-index: -1;
}

/* 横棒（マイナス記号） */
.c-job__title-inner::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "";
  width: 25px;
  height: 4px;
  background-color: #ffffff; /* 青系 */
  transition: transform 0.2s;
}

/* 縦棒（プラス記号） */
.c-job__title-inner::before {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "";
  width: 25px;
  height: 4px;
  background-color: #ffffff;
  transform: rotate(90deg);
  transition: transform 0.2s;
}

/* 開いたときは縦棒を消して「−」だけにする */
.c-job__item.is-open .c-job__title-inner::before {
  transform: rotate(180deg);
  transform: translateY(-1px);
}
.c-job__label {
  font-weight: bold;
  color: #0f7e40;
  margin-right: 1rem;
  font-size: 20px;
}

.c-job__urgent {
  background: #e16c57;
  color: #fff;
  padding: 10px;
  border-radius: 0.3em;
  font-size: 15px;
}

.c-job__detail {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 16px;
}

.c-job__detail-inner {
}
.c-job__table {
  width: 100%;
  border-collapse: collapse;
}

.c-job__table th,
.c-job__table td {
  border-bottom: 1px solid #d2d2d2;
  padding: 30px 20px;
  line-height: 1.6;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .c-job__table th,
  .c-job__table td {
    padding: 15px 10px;
  }
}

.c-job__table th {
  width: 25%;
  font-weight: bold;
  border-bottom: 1px solid #0f7e40;
  color: #0f7e40;
  text-align: left;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .c-job__table th {
    font-size: 16px;
    width: 30%;
  }
}

.recruit-links {
  margin: 4rem 0;
  text-align: center;
}

.recruit-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 365px));
  justify-content: center;
  gap: 2rem;
}

/* スマホ以下（例: 768px以下）のとき1列 */
@media (max-width: 768px) {
  .recruit-links__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .recruit-card {
    width: 90%;
    max-width: 365px;
  }
}
.recruit-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
  max-width: 400px;
  width: 100%;
  z-index: 0;
}
.recruit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
  background-color: #0f7e40;
  opacity: 0.8;
  z-index: 1;
}
.recruit-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  clip-path: polygon(0 68%, 100% 29%, 100% 100%, 0% 100%);
  background-color: #daf0b0;
  opacity: 0.8;
  z-index: 1;
}
.recruit-card:hover {
  .recruit-card__img img {
    transform: scale(1.05);
  }
}

.recruit-card__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  z-index: -2;
}

.recruit-card__icon {
  font-size: 1.2rem;
}
.recruit-card__label {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: fit-content;
  padding: 1rem;
  font-size: 20px;
  padding-right: 50px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.recruit-card__icon::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/chevron_green.svg);
  -webkit-transform: rotate(90deg);
  background-color: #ffffff;
  background-size: 18px 18px;
  background-position: center;
  border-radius: 5px;
  padding: 7px;
  height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.recruit-card:hover .recruit-card__icon::after {
  transform: translateY(-50%) rotate(90deg) translateY(-2px);
}
.hero_container_recruit {
  position: relative;
  height: 550px;
  width: 100%;
  z-index: 0;
  overflow: visible;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hero_container_recruit {
    height: 250px;
  }
}
.hero_container_recruit__inner {
  clip-path: ellipse(70% 100% at 50% 0);
  background: url(../img/recruit/recruit_hero_top.png) center/cover no-repeat;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .hero_container_recruit__inner {
    clip-path: ellipse(70% 75% at 50% 0);
  }
}
.hero_container_recruit::after {
  content: "";
  position: absolute;
  clip-path: ellipse(70% 100% at 50% 0);
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 20px);
  background: rgba(15, 126, 64, 0.25);
  z-index: -1;

  /* 初期状態（上に隠れて透明） */
  transform: translateY(-30px);
  opacity: 0;

  /* 表示時のアニメーション */
  animation: fadeSlideDown 0.7s ease-out forwards;
  animation-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .hero_container_recruit::after {
    clip-path: ellipse(70% 75% at 50% 0);
  }
}
@keyframes fadeSlideDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero_container_recruit h1 {
  color: #fff;
  font-size: 3.6rem;
  text-align: center;
  animation: fadeSlideDown 0.7s ease-out forwards;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.174);
}

.hero_container_recruit h1 .en {
  font-size: 2.2rem;
  margin: 15px 0 0;
  color: #fff;
  font-size: 8vw;
  text-align: center;
}
.recruit-cta {
  background-color: #0f7e40;
  color: #fff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  border-bottom: 5px solid #000;
}

.recruit-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
}

.recruit-cta__image {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .recruit-cta__image {
    width: 100%;
  }
}

.recruit-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.recruit-cta__content {
  min-width: 300px;
  width: 50%;
  height: 100%;
  padding: 20px;
}
@media screen and (max-width: 1200px) {
  .recruit-cta__content {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-cta__content {
    width: 100%;
  }
}

.recruit-cta__subtitle {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px; /* 左にスペース */
  color: #fff; /* 文字色 */
}

/* 外側の丸 */
.recruit-cta__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #caf0db; /* 外側：白 */
}

/* 内側の丸 */
.recruit-cta__subtitle::after {
  content: "";
  position: absolute;
  left: 3px; /* 外側より少し内側 */
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #73cb9a; /* 内側：緑 */
}

.recruit-cta__title {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .recruit-cta__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.recruit-cta__desc {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 600;
}

.recruit-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .recruit-cta__buttons {
    justify-content: center;
  }
}

.recruit-cta__btn {
  min-width: 300px;
  width: fit-content;
  line-height: 55px;
  background-size: cover;
  display: block;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
  font-size: 2rem;
  color: #333;
  background: #fff;

  font-weight: bold;
  border-radius: 10px;
  padding: 5px 20px;
  padding-right: 50px;
}
.recruit-cta__btn::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/chevron.svg);
  -webkit-transform: rotate(90deg);
  background-color: #0f7e40;
  background-size: 18px 18px;
  background-position: center;
  border-radius: 5px;
  padding: 7px;
  height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.recruit-cta__btn:hover {
  background: #000;
  color: #fff;
}
.recruit-cta__btn:hover::after {
  background-color: #fff;
  background-image: url(../img/common/chevron_blk.svg);
  transform: translateY(-50%) rotate(90deg) translateY(-2px);
}
.breadcrumb {
  background: #f5f5f5;
  width: 100%;
  padding: 20px 80px;
}

.breadcrumb ul li {
  display: inline-block;
  font-size: 1.2rem;
  color: #333;
  padding-right: 20px;
  margin-right: 10px;
}

.breadcrumb ul li:last-child {
  background: none;
}

.breadcrumb ul li a {
  color: #009944;
  position: relative;
}

.breadcrumb ul li a:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url(../img/common/chevron_green.svg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-size: 12px 12px;
  height: 12px;
  width: 12px;
  position: absolute;
  right: -20px;
}

.breadcrumb_recruit {
  padding: 20px;
  width: fit-content;
  margin-left: auto;
  margin-top: -40px;
  max-width: 300px;
  width: 100%;
}
.breadcrumb_recruit ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumb_recruit ul li {
  display: inline-block;
  font-size: 1.2rem;
  color: #333;
  padding-right: 20px;
}

.breadcrumb_recruit ul li:last-child {
  background: none;
  padding-right: 0;
}

.breadcrumb_recruit ul li a {
  color: #009944;
  position: relative;
}

.breadcrumb_recruit ul li a:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url(../img/common/chevron_green.svg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-size: 12px 12px;
  height: 12px;
  width: 12px;
  position: absolute;
  right: -20px;
}

.column_2 {
  position: relative;
}

.column_2 > ul {
  opacity: 0;
  width: 1200px;
  min-height: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.column_2 > ul .unit {
  width: 590px;
  padding: 30px;
  background: #fff;
  margin-bottom: 20px;
}

.column_2 > ul .unit .thumb {
  margin-bottom: 30px;
  overflow: hidden;
  height: 297px;
  display: block;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.column_2 > ul .unit .thumb:hover {
  opacity: 0.7;
}

.column_2 > ul .unit .thumb img {
  width: 100%;
}

.column_2 > ul .unit .block_txt .txt_title {
  font-size: 2rem;
  color: #009944;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  display: block;
}

.column_2 > ul .unit .block_txt .category_list {
  margin-bottom: 20px;
}

.column_2 > ul .unit .block_txt .category_list li {
  display: inline-block;
}

.column_2 > ul .unit .block_txt .txt {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
}

.column_2 > ul .unit .block_txt .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.column_2 > ul .unit .block_txt .btn_wrap li {
  display: inline-block;
}

.column_2 > ul .unit:nth-child(odd) {
  margin-right: 20px;
}

.column_2.loaded .loading {
  display: none;
}

.column_2.loaded ul {
  opacity: 1;
}

.column_4_square {
  margin-bottom: 100px;
}

.column_4_square > ul {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.column_4_square > ul .unit {
  width: 285px;
  background: #fff;
  margin-bottom: 25px;
  margin-right: 15px;
  position: relative;
}

.column_4_square > ul .unit:nth-child(4n) {
  margin-right: 0;
}

.column_4_square > ul .unit a {
  display: block;
  padding: 15px;
  border: 1px solid #d2d2d2;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.column_4_square > ul .unit a:hover {
  border: 1px solid #009944;
}

.column_4_square > ul .unit a:hover .thumb img {
  opacity: 0.7;
}

.column_4_square > ul .unit a .thumb {
  margin-bottom: 15px;
}

.column_4_square > ul .unit a .thumb img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.column_4_square > ul .unit a .txt_title {
  font-size: 1.8rem;
  color: #009944;
  font-weight: bold;
  margin-bottom: 45px;
}

.column_4_square > ul .unit a:before {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/chevron.svg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  right: 1px;
  bottom: 0;
  display: inline-block;
  position: absolute;
  z-index: 1;
}

.column_4_square > ul .unit a:after {
  content: "";
  background: #009944;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  position: absolute;
  bottom: -13px;
  right: -10px;
}

.column_4_card {
  position: relative;
}

.column_4_card > ul {
  min-height: 200px;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}

.column_4_card > ul > li {
  width: 270px;
  margin-right: 40px;
}

.column_4_card > ul > li:nth-child(4n) {
  margin-right: 0;
}

.column_4_card > ul > li:hover > a {
  opacity: 0.7;
}

.column_4_card > ul > li > a {
  display: block;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.column_4_card > ul > li > a:hover .thumb img {
  opacity: 0.7;
}

.column_4_card > ul > li > a .thumb {
  height: auto;
  overflow: hidden;
}

.column_4_card > ul > li > a .thumb img {
  width: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.column_4_card > ul > li > span {
  display: block;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.column_4_card > ul > li > span:hover {
  opacity: 0.7;
}

.column_4_card > ul > li > span .thumb {
  margin-bottom: 10px;
  overflow: hidden;
  height: 190px;
  line-height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.column_4_card > ul > li > span img {
  width: 100%;
  border: 1px solid #ccc;
}

.column_4_card > ul > li p {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #009944;
  font-weight: bold;
  margin: 5px 0 10px;
}

.column_4_card > ul > li > span:hover {
  opacity: 1 !important;
}

.column_4_card > ul .category_list {
  margin-bottom: 20px;
}

.column_4_card > ul .category_list li {
  display: inline-block;
}

.column_4_card.loaded .loading {
  display: none;
}

.column_4_card.loaded > ul {
  opacity: 1;
}

.column_5 {
  position: relative;
}

.column_5 > ul {
  min-height: 200px;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 1200px;
  margin: 0 auto 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.column_5 > ul .unit {
  width: 224px;
  height: auto;
  background: #fff;
  margin-bottom: 20px;
  margin-right: 20px;
  position: relative;
  border: 1px solid #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.column_5 > ul .unit:nth-child(5n) {
  margin-right: 0;
}

.column_5 > ul .unit:hover {
  border: 1px solid #009944;
}

.column_5 > ul .unit:hover a .thumb img {
  opacity: 0.7;
}

.column_5 > ul .unit a {
  display: block;
  padding: 20px 15px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.column_5 > ul .unit a .thumb {
  margin-bottom: 20px;
  overflow: hidden;
  height: 192px;
}

.column_5 > ul .unit a .thumb img {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 100%;
}

.column_5 > ul .unit a .label {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 5px;
  margin-right: 5px;
  background: #999;
  color: #fff;
  text-align: center;
}

.column_5 > ul .unit a .txt {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333;
  margin-top: 5px;
}

.column_5 > ul .unit a .txt .date {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.column_5.loaded .loading {
  display: none;
}

.column_5.loaded ul {
  opacity: 1;
}

.column_5.hide .loading {
  display: none;
}

.column_5.hide ul {
  opacity: 1;
}

.pagenation_wrap {
  width: 1200px;
  margin: 0 auto 150px;
}

.pagenation_wrap ul {
  text-align: center;
}

.pagenation_wrap ul .prev {
  position: relative;
}

.pagenation_wrap ul .prev:before,
.pagenation_wrap ul .prev:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.pagenation_wrap ul .prev:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 20px;
  margin-top: -20px;
}

.pagenation_wrap ul .prev:before {
  border-color: rgba(0, 153, 68, 0);
  border-right-color: #009944;
  border-width: 21px;
  margin-top: -21px;
}

.pagenation_wrap ul .prev a {
  border-left: none;
}

.pagenation_wrap ul .prev:hover:before {
  content: "";
}

.pagenation_wrap ul .prev:hover:after {
  border-right-color: #009944;
}

.pagenation_wrap ul .next {
  position: relative;
}

.pagenation_wrap ul .next:before,
.pagenation_wrap ul .next:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.pagenation_wrap ul .next:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 20px;
  margin-top: -20px;
}

.pagenation_wrap ul .next:before {
  border-color: rgba(0, 153, 68, 0);
  border-left-color: #009944;
  border-width: 21px;
  margin-top: -21px;
}

.pagenation_wrap ul .next a {
  border-right: none;
}

.pagenation_wrap ul .next:hover:before {
  border-right-color: #fff;
}

.pagenation_wrap ul .next:hover:after {
  border-left-color: #009944;
}

.pagenation_wrap ul li {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-right: 5px;
}

.pagenation_wrap ul li a {
  display: block;
  border: 1px solid #009944;
  color: #009944;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 42px;
  height: 42px;
  line-height: 41px;
  text-align: center;
}

.pagenation_wrap ul li a:hover {
  background-color: #009944;
  color: #fff;
}

.pagenation_wrap ul .pageNum.isActive {
  background-color: #009944;
}

.pagenation_wrap ul .pageNum.isActive a {
  color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .column_2 > ul {
    width: 100%;
    margin-bottom: 0;
  }
  .column_2 > ul .unit {
    width: 49%;
    padding: 20px;
    margin-bottom: 15px;
  }
  .column_2 > ul .unit:nth-child(odd) {
    margin-right: 2%;
  }
  .column_2 > ul .unit .thumb {
    margin-bottom: 15px;
    height: auto;
  }
  .column_2 > ul .unit .block_txt .txt_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .column_2 > ul .unit .block_txt .txt {
    display: none;
  }
  .column_5 > ul {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .column_5 > ul .unit {
    width: 49%;
    margin-right: 0;
    margin-bottom: 10px;
    border: 1px solid #e3e3e3;
  }
  .column_5 > ul .unit:nth-child(odd) {
    margin-right: 2%;
  }
  .column_5 > ul .unit a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
  }
  .column_5 > ul .unit a .thumb {
    margin-right: 15px;
    margin-bottom: 0;
    height: auto;
    line-height: initial;
  }
  .column_5 > ul .unit a .thumb img {
    width: 95px;
  }
  .column_5 > ul .unit a .block_txt {
    max-width: 210px;
  }
  .column_5 > ul .unit a .label {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .column_5 > ul .unit a .txt {
    font-size: 1.1rem;
  }
  .column_5 > ul .unit a .txt .date {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .hero_container {
    height: 135px;
  }
  .hero_container h1 {
    padding-left: 20px;
    font-size: 1.8rem;
  }
  .hero_container h1 .en {
    font-size: 1.1rem;
    margin: 10px 0 0;
  }
  .breadcrumb {
    display: none;
  }
  .column_4_square {
    margin-bottom: 0px;
    padding: 10px 20px;
  }
  .column_4_square > ul {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .column_4_square > ul .unit {
    width: 48%;
    padding: 0;
    margin-right: 0;
    height: auto;
  }
  .column_4_square > ul .unit:nth-child(odd) {
    margin-right: 4%;
  }
  .column_4_square > ul .unit a {
    border: none;
    border-bottom: 1px solid #d2d2d2;
    padding: 0;
    height: 100%;
  }
  .column_4_square > ul .unit a .thumb {
    margin-bottom: 5px;
  }
  .column_4_square > ul .unit a .thumb img {
    width: 100%;
  }
  .column_4_square > ul .unit a .txt_title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .column_4_square > ul .unit a:before {
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    right: 3px;
    bottom: 4px;
  }
  .column_4_square > ul .unit a:after {
    width: 20px;
    height: 20px;
    bottom: 0;
    right: 0;
    line-height: 25px;
  }
  .column_4_card > ul {
    width: 100%;
  }
  .column_4_card > ul > li {
    width: 49%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .column_4_card > ul > li:nth-child(odd) {
    margin-right: 2%;
  }
  .column_4_card > ul > li > span {
    display: block;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .column_4_card > ul > li > span:hover {
    opacity: 0.7;
  }
  .column_4_card > ul > li > span .thumb {
    margin-bottom: 5px;
    height: 90px;
    line-height: 90px;
  }
  .column_4_card > ul > li > span img {
    width: 100%;
  }
  .column_4_card > ul > li p {
    font-size: 1rem;
  }
  .column_4_card > ul .category_list {
    margin-right: 0;
  }
  .column_4_card > ul .category_list li {
    display: inline-block;
  }
  .column_4_card > ul .category_list li .category_label {
    padding: 5px 7px;
  }
  .pagenation_wrap {
    width: 100%;
    margin: 0 auto 75px;
  }
  .pagenation_wrap ul li {
    width: 34px;
    height: 32px;
  }
  .pagenation_wrap ul li a {
    height: 32px;
    width: 34px;
    line-height: 31px;
  }
  .pagenation_wrap ul .prev:first-child {
    position: relative;
  }
  .pagenation_wrap ul .prev:first-child:before,
  .pagenation_wrap ul .prev:first-child:after {
    right: 100%;
    top: 76%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .pagenation_wrap ul .prev:first-child:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 15px;
    margin-top: -23px;
  }
  .pagenation_wrap ul .prev:first-child:before {
    border-color: rgba(0, 153, 68, 0);
    border-right-color: #009944;
    border-width: 16px;
    margin-top: -24px;
  }
  .pagenation_wrap ul .prev:first-child a {
    border-left: none;
  }
  .pagenation_wrap ul .prev:first-child:hover:before {
    content: "";
  }
  .pagenation_wrap ul .prev:first-child:hover:after {
    border-right-color: #009944;
  }
  .pagenation_wrap ul .next:last-child {
    position: relative;
  }
  .pagenation_wrap ul .next:last-child:before,
  .pagenation_wrap ul .next:last-child:after {
    left: 100%;
    top: 76%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .pagenation_wrap ul .next:last-child:after {
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #fff;
    border-width: 15px;
    margin-top: -23px;
  }
  .pagenation_wrap ul .next:last-child:before {
    border-color: rgba(0, 153, 68, 0);
    border-left-color: #009944;
    border-width: 16px;
    margin-top: -24px;
  }
  .pagenation_wrap ul .next:last-child a {
    border-right: none;
  }
  .pagenation_wrap ul .next:last-child:hover:before {
    border-right-color: #fff;
  }
  .pagenation_wrap ul .next:last-child:hover:after {
    border-left-color: #009944;
  }
}

@media screen and (max-width: 667px) {
  .column_2 > ul {
    width: 100%;
    margin-bottom: 0;
  }
  .column_2 > ul .unit {
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
  }
  .column_2 > ul .unit .thumb {
    margin-bottom: 15px;
    height: auto;
    line-height: 100%;
  }
  .column_2 > ul .unit .block_txt .txt_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .column_2 > ul .unit .block_txt .txt {
    display: none;
  }
  .column_2 > ul .unit:nth-child(odd) {
    margin-right: 0;
  }
  .column_5 > ul {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .column_5 > ul .unit {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    border: 1px solid #e3e3e3;
  }
  .column_5 > ul .unit:nth-child(odd) {
    margin-right: 0;
  }
  .column_5 > ul .unit a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
  }
  .column_5 > ul .unit a .thumb {
    margin-right: 15px;
    margin-bottom: 0;
    height: 95px;
    width: 95px;
    line-height: initial;
  }
  .column_5 > ul .unit a .block_txt {
    max-width: 60%;
  }
  .column_5 > ul .unit a .label {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .column_5 > ul .unit a .txt {
    font-size: 1.1rem;
  }
  .column_5 > ul .unit a .txt .date {
    margin-bottom: 10px;
  }
}

.page-recruit .hero_container {
  background-image: url("../img/recruit/recruit_hero_top.jpg");
}

.page-recruit .section_01,
.page-interview .section_01,
.page-interview-archive .section_01 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 20px 0;
}

.page-recruit .section_01 .inner_box_bottom a {
  display: block;
}

.page-recruit .section_01 .inner_box_bottom a img {
  width: 100%;
}
.page-recruit .section_banner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  padding: 70px 20px 0;

  .inner_box_bottom {
    padding: 0 20px;
  }
  picture {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    overflow: hidden;
    display: block;

    img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center;
      transition: 0.3s ease;
      display: block;
    }
    &:hover {
      img {
        transform: scale(1.02);
        opacity: 0.9;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .page-recruit .section_banner {
    padding: 50px 20px 0;
  }
}
.page-recruit .section_02 {
  margin-top: 250px;
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 0;
}

.page-recruit .section_02:before {
  top: -100px;
  z-index: -1;
}

.page-recruit .section_02 .inner_box_top {
  padding-top: 70px;

  .description {
    text-align: left;
  }
}

.page-recruit .section_02 .inner_box_bottom {
  padding-bottom: 50px;
}

.page-recruit .section_02 .inner_box_bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.page-recruit .section_02 .inner_box_bottom ul li {
  width: 470px;
  height: auto;
  line-height: 1.5;
  background-color: #009944;
  padding: 10px 40px;
  margin-bottom: 20px;
  position: relative;
}

.page-recruit .section_02 .inner_box_bottom ul li:after {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/common/chevron.svg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-size: 18px 18px;
  height: 18px;
  width: 18px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page-recruit .section_02 .inner_box_bottom ul li:nth-child(odd) {
  margin-right: 20px;
}

.page-recruit .section_02 .inner_box_bottom ul li:hover {
  opacity: 0.8;
}

.page-recruit .section_02 .inner_box_bottom ul li a {
  color: #fff;
  font-size: 2rem;
  display: block;
}

.page-recruit .section_02 .inner_box_bottom p {
  text-align: center;
  color: #333;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-recruit .section_02 {
    padding: 0px 20px;
    margin-top: 150px;
  }
  .page-recruit .section_02 .inner_box_bottom {
    width: 96%;
    padding-bottom: 100px;
  }
  .page-recruit .section_02 .inner_box_bottom ul li {
    width: 49%;
  }
  .page-recruit .section_02 .inner_box_bottom ul li:nth-child(odd) {
    margin-right: 2%;
  }
  .page-recruit .section_02 .inner_box_bottom ul li a {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 768px) {
  .page-recruit .hero_container {
    background-image: url("../img/recruit/sp_recruit_hero_top.jpg");
  }
  .page-recruit .section_01 {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 100px;
  }
  .page-recruit .section_01 .inner_box_bottom {
  }
}
@media screen and (max-width: 768px) {
  .page-recruit .section_01 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 667px) {
  .page-recruit .section_02 {
    margin-top: 0;
  }
  .page-recruit .section_02:before {
    top: -50px;
    height: 50px;
  }
  .page-recruit .section_02 .inner_box_top {
    padding-top: 0;
  }
  .page-recruit .section_02 .inner_box_bottom {
    width: 100%;
    padding: 0 0 50px;
  }
  .page-recruit .section_02 .inner_box_bottom ul {
    margin-bottom: 0;
  }
  .page-recruit .section_02 .inner_box_bottom ul li {
    width: 100%;
    padding: 20px 30px 20px 20px;
  }
  .page-recruit .section_02 .inner_box_bottom ul li:after {
    content: "";
    background-repeat: no-repeat;
    background-image: url(../img/common/chevron.svg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-size: 16px;
    height: 16px;
    width: 16px;
    display: inline-block;
    position: absolute;
    right: 15px;
  }
  .page-recruit .section_02 .inner_box_bottom ul li:nth-child(odd) {
    margin-right: 0;
  }
  .page-recruit .section_02 .inner_box_bottom ul li a {
    font-size: 1.4rem;
  }
  .page-recruit .section_02 .inner_box_bottom p {
    font-size: 1.2rem;
    text-align: left;
  }
}

/* 社員インタビュー */
.interview-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 常に3カラム固定 */
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 20px;
  justify-items: stretch;
}
@media screen and (max-width: 768px) {
  .interview-list {
    grid-template-columns: 1fr;
  }
}
.interview-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  z-index: 0;
  min-height: 500px;
  transition: 0.3s ease;
}
.interview-card__img {
  width: 100%;
  height: 100%;
}
.interview-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.3s ease;
}

.interview-card__comment {
  transition: 0.3s ease;
}
.interview-card:hover {
  opacity: 0.8;
}
.interview-card:hover .interview-card__img img {
  transform: scale(1.05);
}
.interview-card:hover .interview-card__comment {
  transform: translateY(-10px);
}

.interview-card__content {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.interview-card__comment {
  margin: -2rem auto 1rem;
  background: #fff;
  border: 3px solid #0f7e40;
  border-radius: 15px;
  text-align: left;
  padding: 2rem 1.2rem;
  max-width: 90%;
  font-weight: bold;
  color: #0f7e40;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}
.interview-card__comment-text {
  position: relative;
  padding: 0 15px;
}
.interview-card__comment-text::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -5px;
  height: 10px;
  font-size: 30px;
  line-height: 1;
  font-family: "Alan Sans", sans-serif;
}
.interview-card__comment-text::after {
  content: "”";
  position: absolute;
  bottom: 0;
  height: 10px;
  right: -5px;
  font-size: 30px;
  line-height: 1;
  font-family: "Alan Sans", sans-serif;
}

/* 枠線の三角 */
.interview-card__comment::before {
  content: "";
  position: absolute;
  bottom: -3px; /* 枠線に沿わせるため微調整 */
  right: 25%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #0f7e40 transparent transparent;
  translate: -50% 100%;
}

/* 中身の白い三角 */
.interview-card__comment::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  border-style: solid;
  border-width: 17px 18px 0 0;
  border-color: #fff transparent transparent;
  translate: calc(-50% - 1px) 100%;
}

.interview-card__profile {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  color: #fff;
  padding: 1rem;
  margin-top: auto;
  padding: 20px;
  text-align: left;
  font-weight: bold;
}

.interview-card__dept {
  font-size: 16px;
  margin-bottom: 10px;
}

.interview-card__name-ja {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.interview-card__name-en {
  font-size: 16px;
  letter-spacing: 1px;
}

/* --- 社員紹介 詳細ページ 上部 --- */
.profile-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
  margin-top: 100px;
}

.profile-header__text {
  flex: 1 1 50%;
}

.profile-header__dept {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0f7e40; /* 緑 */
  margin-bottom: 1.5rem;
}

.profile-header__name-ja {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #0f7e40;
}

.profile-header__name-en {
  font-size: 1.2rem;
  color: #888;
  font-weight: bold;
  margin-left: 10px;
}

.profile-header__date {
  font-size: 1.2rem;
  color: #0f7e40;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.profile-header__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.profile-header__excerpt {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 20px;
  font-size: 1.8rem;
  line-height: 2;
  color: #333;
}
@media screen and (max-width: 768px) {
  .profile-header__excerpt {
    font-size: 16px;
  }
}

.profile-header__image {
  flex: 1 1 45%;
  position: relative;
  aspect-ratio: 4/4.5;
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 10px 10px 0 #0f7e40;
}

.profile-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 768px) {
  .profile-header {
    flex-direction: column-reverse;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .profile-header__image {
    margin-top: 30px;
  }
}

.c-btn_entry {
  display: inline-block;
  padding: 0.8em 1.8em;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #0073aa; /* コーポレートカラーなどに置き換え */
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.c-btn_entry:hover {
  background-color: #005f8a; /* hover時の濃い色 */
}

.c-btn_entry:active {
  background-color: #004f72;
  transform: translateY(0);
}

.content_main {
  margin: 0 auto 50px;
  max-width: 1200px;
  width: 100%;
  font-size: 16px;
  padding: 0 20px;

  /* --- 基本 --- */
  p {
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
    color: #333;
  }

  a {
    color: #009944;
    text-decoration: underline;
    transition: all 0.3s;
  }
  a:hover {
    opacity: 0.8;
    text-decoration: none;
  }

  img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 20px 0;
    object-fit: cover;
    object-position: center;
  }

  figure {
    margin: 0 0 20px;
    text-align: center;
  }
  figure figcaption {
    font-size: 14px;
    color: #777;
    margin-top: 8px;
  }

  /* --- 見出し --- */
  h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #009944;
    color: #009944;
  }
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 1.8rem;
    }
  }
  h3 {
    font-size: 26px;
    font-weight: bold;
    margin: 30px 0 15px;
    position: relative;
    padding-bottom: 20px;
    color: #0f7e40;
  }
  @media screen and (max-width: 768px) {
    h3 {
      font-size: 1.8rem;
    }
  }
  h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(
      to left,
      #dbdbdb 90%,
      /* 左側 90% グレー */ #029844 90% /* 右側 10% グリーン */
    );
  }

  h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 25px 0 12px;
    color: #444;
  }

  /* --- リスト --- */
  ul {
    margin: 20px 0 20px 20px;
    padding-left: 0; /* デフォルトのインデントをリセット */
    list-style: none; /* デフォルトのマーカーを消す */
  }

  ul li {
    position: relative; /* 擬似要素の基準にする */
    margin-bottom: 8px;
    line-height: 1.6;
    padding-left: 1.2em; /* マーカー分の余白を確保 */
  }

  ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em; /* 行の高さに合わせて調整 */
    width: 6px;
    height: 6px;
    border-radius: 50%; /* 丸にする */
    background-color: #029844; /* マーカーの色 */
  }

  ol {
    margin: 20px 0 20px 20px;
    list-style: decimal;
  }
  ol li {
    margin-bottom: 8px;
    line-height: 1.6;
  }

  /* --- 引用 --- */
  blockquote {
    border-left: 4px solid #009944;
    padding: 15px 20px;
    margin: 30px 0;
    background: #f9f9f9;
    color: #555;
    font-style: italic;
  }

  /* --- テーブル --- */

  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
  }

  table tr {
    display: flex;
  }
  @media screen and (max-width: 768px) {
    table tr {
      flex-direction: column;
      margin-bottom: 20px;
    }
  }

  table th {
    text-align: left;
    width: 300px;
    padding: 30px 20px;
    border-bottom: 1px solid #0f7e40;
    color: #0f7e40;
    background: none;
    font-weight: bold;
    font-size: 18px;
  }

  @media screen and (max-width: 768px) {
    table th {
      width: 100%;
      padding: 15px 0;
    }
  }

  table td {
    padding: 30px 20px;
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    table td {
      padding: 15px 0;
      border-bottom: none;
    }
  }
}
