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

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

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

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

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

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.m0a {
  margin: 0 auto;
}

.fw_b {
  font-weight: bold;
}

.pb_50 {
  padding-bottom: 50px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

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

/* 下層ページ　共通 */
html {
  scroll-behavior: smooth;
}

.width1280 {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
  margin-bottom: var(--mvalue-120);
}
@media screen and (max-width: 767px) {
  .width1280 {
    width: 92%;
  }
}

.width1600 {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  margin-bottom: var(--mvalue-120);
}
@media screen and (max-width: 767px) {
  .width1600 {
    width: 92%;
  }
}

.h3-title-green {
  font-size: clamp(25px, 2.8vw, 35px);
  text-align: center;
  margin: 0 auto 60px auto;
  line-height: 1.3;
  position: relative;
}
.h3-title-green:before {
  content: "";
  width: clamp(50px, 5%, 70px);
  height: 3px;
  background-color: #6fc97e;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.h4-title-green {
  font-size: clamp(18px, 1.8vw, 22px);
  padding-left: 25px;
  position: relative;
  margin-bottom: 20px;
}
.h4-title-green:before {
  content: "";
  width: 10px;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #6fc97e;
  position: absolute;
}

.img-box1 {
  text-align: center;
  margin: 0 auto;
}
.img-box1 a {
  transition: 0.3s;
}
.img-box1 a:hover {
  opacity: 0.8;
}

.text-link-green {
  color: #45B858;
  position: relative;
  transition: 0.3s;
}
.text-link-green::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #6fc97e;
  transition: background-color 0.3s ease;
}
.text-link-green:hover {
  color: #A19D9D;
}
.text-link-green:hover::after {
  background-color: #A19D9D;
}

.link-pdf {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  color: #6fc97e;
  text-decoration: none;
  transition: color 0.3s ease;
}
.link-pdf::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: calc(100% - 18px);
  height: 1px;
  background-color: #6fc97e;
  transition: background-color 0.3s ease;
}
.link-pdf::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 13px solid #6fc97e;
  transition: border-left-color 0.3s ease;
}
.link-pdf:hover {
  color: #A19D9D;
}
.link-pdf:hover::after {
  background-color: #A19D9D;
}

.list-slash {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none;
}
.list-slash li {
  position: relative;
  padding-right: 20px;
}
.list-slash li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 1px;
  height: 20px;
  background: #6fc97e;
  transform: translateY(-50%) rotate(35deg);
}

.h4-title-green2 {
  color: #6fc97e;
  font-weight: bold;
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 20px;
}

.list-green {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-green li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.list-green li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background-color: #6fc97e;
  border-radius: 50%;
}
.list-green li {
  text-decoration: underline;
  text-decoration-color: #ADE3BD;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.list-green li:last-child {
  margin-bottom: 0;
}

/* パンくずリスト */
.bread-list {
  margin: 0 auto 10px auto;
  width: 95%;
}
.bread-list ul {
  display: flex;
  gap: 30px;
}
.bread-list ul li {
  position: relative;
}
.bread-list ul li + li::before {
  content: "＞";
  position: absolute;
  left: -20px;
  color: #999;
}
.bread-list ul a {
  transition: 0.5s;
}
.bread-list ul a:hover {
  color: #6fc97e;
}

/* 下層ページタイトル */
#page-title {
  width: 95%;
  margin: 0 auto 40px auto;
  position: relative;
  background: url("../img/title/page-title-about.png") center/cover no-repeat;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
#page-title .page-title__inner {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
}
#page-title .page-title__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#page-title .page-title__jp {
  display: block;
  font-size: clamp(26px, 3vw, 45px);
  font-weight: 500;
  text-align: center;
  text-shadow: 1px 1px #fff;
}
#page-title .page-title__en {
  display: block;
  font-size: clamp(14px, 2.2vw, 23px);
  color: #6fc97e;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 1px 1px 3px #000;
}
@media screen and (max-width: 767px) {
  #page-title {
    min-height: 180px;
  }
}

/* 各下層ページタイトル画像変更 */
#page-title.about-title {
  background: url("../img/title/page-title-about.png") center/cover no-repeat;
}

#page-title.first-title {
  background: url("../img/title/page-title-first.png") center/cover no-repeat;
}

#page-title.gairai-title {
  background: url("../img/title/page-title-gairai.png") center/cover no-repeat;
}

#page-title.public-title {
  background: url("../img/title/page-title-public.png") center/cover no-repeat;
}

/* 仮でとっておく（後で消す） */
#sub-title {
  display: flex;
}
#sub-title .page-title__inner {
  display: block;
}
#sub-title .page-title__heading {
  width: clamp(300px, 35%, 760px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(26px, 3vw, 50px);
  text-align: center;
  line-height: 1.4;
  text-shadow: 1px 2px 2px #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
}
#sub-title .page-title__heading span {
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  display: block;
  text-align: center;
  text-shadow: 1px 2px 2px #ccc;
}
#sub-title img {
  width: 65%;
  max-width: 1160px;
}
@media screen and (max-width: 1100px) {
  #sub-title {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  #sub-title {
    flex-direction: column;
    padding-top: 55px;
  }
  #sub-title h2 {
    width: 100%;
    padding: 10px;
  }
  #sub-title img {
    width: 100%;
  }
}

/* ページ内リンク */
.page-nav {
  margin: 0 auto 50px auto;
  width: 95%;
}
.page-nav__list {
  display: flex;
  justify-content: center;
  row-gap: 20px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.page-nav__list li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1px;
  transition: all 0.3s ease;
  font-size: clamp(16px, 2vw, 22px);
}
.page-nav__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}
.page-nav__list li a:hover {
  color: #6fc97e;
  transform: translateY(-10px);
}
.page-nav__list li a:hover::after {
  background-color: #6fc97e;
}

section[id] {
  scroll-margin-top: 120px;
}
@media (max-width: 767px) {
  section[id] {
    scroll-margin-top: 80px;
  }
}

/* ページイントロ */
.page-intro {
  margin: 80px auto;
  margin-bottom: var(--mvalue-120);
}
.page-intro__inner {
  display: flex;
  align-items: center;
}
.page-intro__img {
  position: relative;
  flex: 0 0 55%;
}
.page-intro__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.page-intro__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 50%);
}
.page-intro__text {
  flex: 1;
  margin-left: -80px;
  position: relative;
  z-index: 1;
  padding: 40px 20px 40px 0;
}
@media screen and (max-width: 980px) {
  .page-intro__inner {
    flex-direction: column-reverse;
  }
  .page-intro__text {
    margin-left: 0;
    padding: 0 0 20px 0;
  }
  .page-intro__img::after {
    display: none;
  }
}

/* 中村病院について */
.tokuchou__inner .tokuchou__list {
  margin-bottom: 60px;
}
.tokuchou__inner .tokuchou__item {
  margin-bottom: 30px;
}

.greeting__inner .greeting__block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.greeting__inner .greeting__block--reverse {
  flex-direction: row-reverse;
  margin-bottom: 60px;
}
.greeting__inner .greeting__text {
  flex: 0 0 55%;
}
.greeting__inner .greeting__img {
  flex: 1;
}
.greeting__inner .greeting__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
@media screen and (max-width: 980px) {
  .greeting__inner .greeting__block {
    flex-direction: column-reverse;
  }
}

.greeting__signature {
  text-align: right;
  font-size: clamp(18px, 1.8vw, 22px);
}

.history {
  margin-bottom: 120px;
}
.history__content1 {
  margin-bottom: 80px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.history {
  /* ======================
      左：概要情報
  ====================== */
}
.history__info {
  flex: 1;
}
.history__item {
  margin-bottom: 28px;
}
.history__term {
  font-weight: 600;
  margin-bottom: 4px;
  color: #6fc97e;
}
.history__desc {
  line-height: 1.8;
}
.history {
  /* ======================
      右：画像
  ====================== */
}
.history__images {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.history__img img {
  width: 100%;
  display: block;
  border-radius: 5px;
}
@media screen and (max-width: 980px) {
  .history__content1 {
    flex-direction: column;
  }
  .history__info {
    width: 100%;
  }
  .history__images {
    width: 100%;
  }
}

.chronology {
  margin: 60px 0 0 0;
  position: relative;
}
.chronology__item {
  display: flex;
  border: 1px solid #d1d1d1;
  position: relative;
  background: #fff;
}
.chronology__item + .chronology__item {
  margin-top: 20px;
}
.chronology__item:first-child .chronology__year::after {
  top: 50%;
}
.chronology__item:last-child .chronology__year::after {
  bottom: 50%;
}
.chronology {
  /* ===== 左：年（30%） ===== */
}
.chronology__year {
  flex: 0 0 30%;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* 緑の丸 */
}
.chronology__year::before {
  content: "";
  position: absolute;
  right: -6.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: #6fc97e;
  border-radius: 50%;
  z-index: 3;
}
.chronology__year {
  /* 上下の縦線 */
}
.chronology__year::after {
  content: "";
  position: absolute;
  right: -0.5px;
  top: -40px;
  bottom: -40px;
  width: 1px;
  background: #d1d1d1;
  z-index: 2;
}
.chronology__desc {
  flex: 1;
  padding: 30px 40px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .chronology__item {
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
  }
  .chronology__item::before {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #d1d1d1;
  }
  .chronology__item:last-child::before {
    display: none;
  }
  .chronology__year {
    text-align: left;
    justify-content: flex-start;
    padding: 15px 20px;
    position: relative;
    /* PC用の丸・縦線は消す */
  }
  .chronology__year::before, .chronology__year::after {
    display: none;
  }
  .chronology__desc {
    padding: 15px 20px;
    position: relative;
  }
  .chronology__desc::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 1px;
    background: #6fc97e;
    width: 93%;
  }
}

.doctors {
  margin-bottom: 120px;
}
.doctors__list {
  margin-top: 40px;
}
.doctors .doctor-card {
  display: flex;
  border: 1px solid #d1d1d1;
  background: #fff;
}
.doctors .doctor-card + .doctor-card {
  margin-top: 30px;
}
.doctors .doctor-card {
  /* ===== 左 ===== */
}
.doctors .doctor-card__left {
  flex: 0 0 25%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.doctors .doctor-card {
  /* ===== 右 ===== */
}
.doctors .doctor-card__right {
  flex: 1;
  padding: 30px 50px 30px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.doctors .doctor-card__position {
  font-size: 17px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #6fc97e;
}
.doctors .doctor-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.doctors .doctor-card__kana {
  font-size: 13px;
  color: #666;
}
.doctors .doctor-card__career {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.doctors .doctor-card__career li {
  line-height: 1.8;
}
@media (max-width: 767px) {
  .doctors .doctor-card {
    flex-direction: column;
  }
  .doctors .doctor-card__left {
    width: 100%;
    padding: 20px;
  }
  .doctors .doctor-card__right {
    width: 100%;
    padding: 20px;
  }
}

/* はじめての方へ */
.flow {
  margin-bottom: 120px;
}

.flow-content .flow__item {
  position: relative;
  border: 2px solid #6fc97e;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: strech;
  row-gap: 20px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.flow-content .flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 30px;
  height: 30px;
  border-right: 2px solid #6fc97e;
  border-bottom: 2px solid #6fc97e;
  transform: translateX(-50%) rotate(45deg);
  background: transparent;
}
@media (max-width: 767px) {
  .flow-content .flow__item {
    flex-direction: column;
    padding: 20px;
  }
}
.flow-content .flow__text {
  flex: 1;
}
.flow-content .flow__title {
  font-size: clamp(18px, 1.8vw, 24px);
  margin-bottom: 20px;
  color: #6fc97e;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}
.flow-content .flow__img {
  flex: 0 0 268px;
  background: #D0F2DA;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow-content .flow__img img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .flow-content .flow__img {
    width: 100%;
    order: 2;
  }
}
@media (max-width: 767px) {
  .flow-content__text {
    order: 1;
  }
}

.uketsuke {
  margin-bottom: 120px;
}

.schedule {
  overflow-x: auto;
}
.schedule__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 18px);
  margin-bottom: 30px;
}
.schedule__table th,
.schedule__table td {
  border: 1px solid #ccc;
  padding: 12px 10px;
  vertical-align: middle;
  text-align: center;
}
.schedule__table tbody td,
.schedule__table tbody th {
  height: 70px;
}
.schedule__table td {
  text-align: center;
}
.schedule__table thead th {
  background: #D0F2DA;
}
.schedule__table thead th:first-child {
  background: #fff;
  border-top: none;
  border-left: none;
}
.schedule__table tbody th {
  white-space: nowrap;
}
.schedule__table {
  /* small の余白を詰める */
}
.schedule__table td small {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
  font-size: clamp(12px, 1.6vw, 15px);
}

/* 外来 */
.img-box3 {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.img-box3 img {
  width: 100%;
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  display: block;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .img-box3 {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .img-box3 img {
    max-width: 488px;
  }
}

.gairai-item {
  display: flex;
  gap: 20px 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--mvalue-90);
}
.gairai-item__img,
.gairai-item .gairai-contents1__img {
  flex: 0 1 45%;
  max-width: 590px;
}
.gairai-item__img img,
.gairai-item .gairai-contents1__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.gairai-item .gairai-contents1__text {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .gairai-item {
    flex-direction: column;
  }
  .gairai-item .gairai-contents1__text {
    order: 1;
  }
  .gairai-item .gairai-contents1__img {
    order: 2;
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
  }
}

.gairai__title {
  font-size: clamp(23px, 2.6vw, 30px);
  border-bottom: 1px solid #6fc97e;
  line-height: 1.8;
  margin-bottom: 20px;
}

.h2-gold {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(25px, 2.8vw, 35px);
  text-align: center;
  margin: 0 auto 40px auto;
  line-height: 1.3;
  position: relative;
}
.h2-gold:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #D8BE7D;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.h2-gold:after {
  content: "";
  width: 180px;
  height: 5px;
  background: linear-gradient(to right, #896B1F, #DBC774, #896B1F);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
}
.h2-gold span {
  color: #896B1F;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 5px;
}

.text-serif {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  text-align: center;
  margin-bottom: 30px;
}

/* Facial */
.belle-intro {
  align-items: flex-start;
  gap: 40px;
  width: 95%;
  margin: 0 auto;
}
.belle-intro .list-green {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
}
.belle-intro .list-green li {
  text-align: center;
  background-color: #D5F5A6;
  border-radius: 5px;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(14px, 1.8vw, 18px);
  padding: 8px 20px;
}
.belle-intro img {
  width: 40%;
  min-width: 350px;
}
@media screen and (max-width: 767px) {
  .belle-intro {
    flex-direction: column;
    gap: 20px;
  }
  .belle-intro .list-green {
    width: 100%;
  }
  .belle-intro img {
    width: 100%;
    min-width: auto;
  }
}

.b-shadow {
  box-shadow: 2px 2px 5px #ccc;
}

.course-green {
  position: relative;
  padding: 12px 20px 12px 20px;
  background-color: #6fc97e;
  color: #333;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 22px);
  text-align: center;
  text-shadow: 1px 1px 2px #fff;
  overflow: hidden;
  margin: 0 auto 20px auto;
}
.course-green:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(#896B1F, #DBC774, #896B1F);
}

.course-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.course-flow {
  margin: 0 auto 30px auto;
  text-align: center;
  padding-right: 25px;
  overflow: hidden;
}
.course-flow li {
  display: inline-block;
  position: relative;
  background: linear-gradient(-90deg, #D8BE7D, #FCFCFC);
  padding: 12px 15px 10px 25px;
  color: #000;
  margin: 0 0 5px 0;
  font-size: 14px;
}
.course-flow li:before {
  top: 0;
  right: -24px;
  border-style: solid;
  border-color: transparent transparent transparent #FCFCFC;
  border-width: 22px 0 22px 20px;
  z-index: 10;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.course-flow li:after {
  top: 0px;
  right: -19px;
  border-color: transparent transparent transparent #D8BE7D;
  border-width: 22px 0 22px 20px;
  z-index: 10;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.course-flow li:last-child:after {
  display: none;
}

.mb_5 {
  margin-bottom: 5px;
}

.facial-course {
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}
.facial-course .flex-inner-right {
  width: clamp(350px, 55%, 450px);
}
.facial-course .flex-inner-right .price {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D8BE7D;
  padding: 10px 10px 8px 10px;
}
.facial-course .flex-inner-right .price:first-of-type {
  padding-top: 0;
}
.facial-course .flex-inner-right .small-text {
  text-align: right;
  font-size: 12px;
}
.facial-course .flex-inner-right .price-option {
  display: flex;
  align-items: center;
  border: 1px solid #D8BE7D;
  margin-top: 10px;
  align-items: stretch;
}
.facial-course .flex-inner-right .price-option dt {
  background-color: #D8BE7D;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  padding: 10px;
}
.facial-course .flex-inner-right .price-option dd {
  line-height: 1.4;
  padding: 0 10px;
  font-size: 13px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .facial-course {
    flex-direction: column;
  }
  .facial-course .flex-inner-right {
    width: 100%;
  }
  .facial-course .flex-inner-right .price {
    justify-content: space-around;
  }
}

.detail-ion {
  background-color: #F1EBDF;
  padding: 30px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
.detail-ion .flex-inner-left {
  width: 50%;
}
.detail-ion .flex-inner-left h3 {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: clamp(17px, 2.2vw, 21px);
}
.detail-ion .flex-inner-left h3:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background-color: #D8BE7D;
  left: 0;
  top: 0;
}
.detail-ion .flex-inner-left .gold-box {
  border: 1px solid #BBB39F;
  padding: 10px;
  font-size: 14px;
}
.detail-ion .flex-inner-right {
  position: relative;
}
.detail-ion .flex-inner-right img {
  border-radius: 5px;
  width: 100%;
  max-width: 373px;
}
.detail-ion .flex-inner-right:before {
  content: "オプションパック";
  left: 10px;
  top: 10px;
  font-size: 12px;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .detail-ion {
    flex-direction: column;
    gap: 20px;
  }
  .detail-ion .flex-inner-left {
    width: 100%;
  }
  .detail-ion .flex-inner-right {
    width: 100%;
    text-align: center;
  }
  .detail-ion .flex-inner-right:before {
    content: "オプションパック";
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 10px;
    font-size: 12px;
    position: absolute;
    z-index: 10;
  }
}

.menu-movie .movie-box {
  background-color: #FCF6EB;
  padding: 3.5vw;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .menu-movie .movie-box {
    height: auto;
  }
}

/* Bridal */
.text-green {
  color: #6fc97e;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.text-serif-l {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2.1vw, 24px);
}

@media screen and (max-width: 767px) {
  .text-green {
    margin-bottom: 20px;
  }
}
.text-serif-m {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}

.menu-box {
  display: flex;
  gap: 20px;
  width: 90%;
  margin: 0 auto 60px auto;
}
.menu-box .bridal-menu {
  display: flex;
  width: 50%;
}
.menu-box .bridal-menu dt {
  width: 35%;
  background-color: #D8BE7D;
  border: 1px solid #D8BE7D;
  padding: 6px 10px 5px;
  text-align: center;
  display: grid;
  place-items: center;
}
.menu-box .bridal-menu dd {
  width: 65%;
  border: 1px solid #D8BE7D;
  padding: 6px 10px 5px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 600px) {
  .menu-box {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .menu-box .bridal-menu {
    width: 100%;
  }
}

.bridal-option .option-inner {
  background-color: #F1EBDF;
  width: 97%;
  max-width: 1000px;
  padding: 30px;
  text-align: center;
  margin: 0 auto;
}
.bridal-option .option-inner .option-back {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: bold;
  margin: 0 auto 25px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.bridal-option .option-inner .option-back span {
  border: 1px solid #9C8032;
  padding: 7px 10px;
  font-weight: bold;
  font-size: clamp(16px, 2.1vw, 18px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
}

.h3-gold {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 22px);
  color: #896B1F;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
  padding: 0 0 10px 0; /* 上下の余白を設定 */
  position: relative;
}
.h3-gold::before, .h3-gold::after {
  content: ""; /* 空の内容を挿入 */
  flex: 1; /* 残りのスペースを均等に埋める */
  height: 1px; /* 線の高さ */
  background-color: #896B1F; /* 線の色 */
}
.h3-gold::before {
  margin-right: 10px; /* テキストとの間にスペース */
}
.h3-gold::after {
  margin-left: 10px; /* テキストとの間にスペース */
}

.moniter-box {
  align-items: stretch;
  gap: 30px;
}
.moniter-box .moniter {
  background-color: #D5F5A6;
  border-radius: 30px;
  width: 50%;
  max-width: 505px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
}
.moniter-box .moniter .moniter-name {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: bold;
  color: #896B1F;
}
@media screen and (max-width: 767px) {
  .moniter-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .moniter-box .moniter {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
  }
}

.banner-box {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

/* Eyelash */
.text-serif-green {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  background-color: #D5F5A6;
  border-radius: 5px;
  padding: 7px 10px;
  text-align: center;
}

.belle-intro {
  margin-bottom: 40px;
}
.belle-intro .eyelash-item {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.belle-intro .eyelash-item dt {
  width: 101px;
}
.belle-intro .eyelash-item dt img {
  width: 101px;
  min-width: 101px;
}
.belle-intro .eyelash-item dd {
  width: calc(100% - 101px);
  margin: 0;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}
@media screen and (max-width: 767px) {
  .belle-intro .intro-left {
    width: 100%;
    margin-bottom: 0;
  }
}

.eyelash-banner {
  display: flex;
  border: 1px solid #896B1F;
  border-radius: 30px;
}
.eyelash-banner dt {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background-color: #F1EBDF;
  padding: 30px 20px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 35%;
}
.eyelash-banner dt .eyelash-recommend {
  text-align: center;
}
.eyelash-banner dt .eyelash-recommend span {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 26px);
  color: #896B1F;
  font-weight: bold;
  display: block;
}
.eyelash-banner dd {
  width: 60%;
  padding: 30px 20px;
}
.eyelash-banner dd .text-serif-l {
  color: #6fc97e;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .eyelash-banner {
    flex-direction: column;
  }
  .eyelash-banner dt {
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 20px;
  }
  .eyelash-banner dd {
    width: 100%;
  }
}

.qa-list {
  width: 97%;
  max-width: 1000px;
  margin: 0 auto;
}
.qa-list li {
  margin-bottom: 30px;
  background-color: #F1EBDF;
  padding: 30px 20px;
}
.qa-list li h3 {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2vw, 21px);
  margin-bottom: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qa-list li h3 span {
  font-size: 35px;
  background-color: #fff;
  border-radius: 50%;
  color: #896B1F;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  min-width: 57px;
}

/* Cavitation */
.img-box1 {
  text-align: center;
  margin: 0 auto;
}

/* Super Celum */
.celum-title {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 26px);
  color: #896B1F;
  font-weight: bold;
  text-align: center;
  background-image: url(../img/page/celum/celum2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  height: 75px;
  padding: 0 15px;
  line-height: 75px;
  margin-bottom: 30px;
}

.celum-flex {
  width: 100%;
  max-width: 850px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.celum-flex li:nth-child(even) {
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .celum-flex li:nth-child(even) {
    margin-top: 0;
  }
}

/* Aroma */
.aroma-left {
  width: 55%;
}

.aroma-img {
  width: 95%;
  margin: 0 auto;
  justify-content: space-around;
}
.aroma-img img {
  width: clamp(200px, 30%, 313px);
}
@media screen and (max-width: 500px) {
  .aroma-img img {
    width: 80%;
  }
}

.aroma-course {
  margin-bottom: 0;
}

/* Contact */
.contact-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-box dl {
  margin-bottom: 20px;
}
.contact-box dl dt {
  position: relative;
  padding: 0 20px 7px 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact-box dl dt:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 0;
  background-image: url(../img/diamond.png);
  background-size: cover;
  width: 17px;
  height: 22px;
}
.contact-box dl dt span {
  background-color: #F65792;
  color: #fff;
  font-size: 12px;
  padding: 3px 5px;
  border-radius: 5px;
}
.contact-box dl dd {
  background-color: #F1EBDF;
  height: 50px;
  width: 100%;
}
.contact-box dl dd.area-big {
  height: 200px;
}

.contact-more {
  max-width: 250px;
  font-size: clamp(18px, 1.8vw, 22px);
  padding: 10px 20px 15px 20px;
  font-weight: bold;
}

/* policy */
.policy-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-list li {
  margin-bottom: 30px;
}
.policy-list li .policy-green {
  color: #6fc97e;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: bold;
  margin-top: 10px;
}
.policy-list li .policy-list2 li {
  position: relative;
  padding: 0 10px 0 45px;
  margin-bottom: 10px;
}
.policy-list li .policy-list2 li:before {
  position: absolute;
  content: "●";
  color: #6fc97e;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

/* 脱毛 */
.hair-img {
  margin: 0 auto 40px auto;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 30px;
}
.hair-img img {
  width: clamp(200px, 33%, 306px);
}
@media screen and (max-width: 500px) {
  .hair-img img {
    width: 80%;
  }
}

.hair-hikari .aroma-course {
  margin-bottom: 40px;
}
.hair-hikari {
  background-image: url(../img/page/hair/hair-bg.jpg);
  background-size: cover;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
}
.hair-hikari .flex-inner-left {
  width: 53%;
  max-width: 530px;
}
.hair-hikari .flex-inner-left .h2-hikari {
  color: #896B1F;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-weight: bold;
  text-shadow: 1px 2px 2px #fff;
  font-size: clamp(28px, 5vw, 65px);
  margin-bottom: 20px;
  text-align: center;
}
.hair-hikari .flex-inner-left .h2-hikari span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  line-height: 1;
  font-size: 1em;
}
.hair-hikari .flex-inner-left .hair-list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 5px 10px 5px 20px;
  position: relative;
}
.hair-hikari .flex-inner-left .hair-list li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(#896B1F, #DBC774, #896B1F);
}
.hair-hikari .flex-inner-left .hair-list li .c-pink {
  font-weight: bold;
  color: #F53A7F;
}
.hair-hikari .h3-voice {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  color: #896B1F;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
  padding: 0 0 10px 0; /* 上下の余白を設定 */
  position: relative;
}
.hair-hikari .h3-voice::before, .hair-hikari .h3-voice::after {
  content: ""; /* 空の内容を挿入 */
  flex: 1; /* 残りのスペースを均等に埋める */
  height: 1px; /* 線の高さ */
  background-color: #896B1F; /* 線の色 */
}
.hair-hikari .h3-voice::before {
  margin-right: 15px; /* テキストとの間にスペース */
}
.hair-hikari .h3-voice::after {
  margin-left: 15px; /* テキストとの間にスペース */
}
.hair-hikari .h3-voice span {
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  padding-bottom: 20px;
}
.hair-hikari .h3-voice span small {
  font-size: 16px;
}
.hair-hikari .hair-voice {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.hair-hikari .hair-voice li {
  background-image: url(../img/page/hair/green-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 20px;
  font-size: 14px;
  line-height: 1.3;
}
.hair-hikari .hair-voice li:nth-child(even) {
  margin-top: 60px;
  width: 200px;
}
.hair-hikari .hair-voice li:nth-child(odd) {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .hair-hikari {
    padding: 30px 20px;
  }
  .hair-hikari .flex-inner-left {
    width: 100%;
  }
  .hair-hikari .flex-inner-right {
    width: 100%;
    text-align: center;
  }
  .hair-hikari .hair-voice li:nth-child(even) {
    margin-top: 20px;
    width: 150px;
  }
  .hair-hikari .hair-voice li:nth-child(odd) {
    width: 150px;
  }
}
@media screen and (max-width: 400px) {
  .hair-hikari .hair-voice {
    flex-direction: column;
  }
  .hair-hikari .hair-voice li {
    background-image: none;
    background: linear-gradient(#c4f77e, #fff, #c4f77e);
    border-radius: 30px;
    aspect-ratio: auto;
    padding: 20px;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: 2px 2px 5px #ccc;
  }
  .hair-hikari .hair-voice li:nth-child(even) {
    margin-top: 0;
    width: 100%;
  }
  .hair-hikari .hair-voice li:nth-child(odd) {
    width: 100%;
  }
}

.h3-vio {
  text-align: center;
  margin-bottom: 5px;
}
.h3-vio span {
  color: #896B1F;
  display: block;
  font-weight: bold;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2.2vw, 20px);
}
@media screen and (max-width: 600px) {
  .h3-vio img {
    width: 55%;
  }
}

.text-brown {
  background: #896B1F;
  color: #fff;
  font-weight: bold;
  font-size: clamp(14px, 2.2vw, 18px);
  padding: 7px 20px;
  text-align: center;
}

.vio-inner .hair-vio {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
  padding: 30px 0;
}
.vio-inner .hair-vio .vio-list {
  padding: 50px 10px 10px 20px;
  background-image: url(../img/page/hair/point1.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  width: calc(50% - 20px);
}
.vio-inner .hair-vio .vio-list dt {
  color: #F53A7F;
  font-weight: bold;
  margin-bottom: 5px;
}
.vio-inner .hair-vio .vio-list:nth-child(2) {
  background-image: url(../img/page/hair/point2.jpg);
}
.vio-inner .hair-vio .vio-list:nth-child(3) {
  background-image: url(../img/page/hair/point3.jpg);
}
.vio-inner .hair-vio .vio-list:nth-child(4) {
  background-image: url(../img/page/hair/point4.jpg);
}
@media screen and (max-width: 767px) {
  .vio-inner .hair-vio {
    flex-direction: column;
  }
  .vio-inner .hair-vio .vio-list {
    width: 100%;
  }
}

.hair-best .celum-title {
  font-size: clamp(18px, 2vw, 22px);
}
.hair-best .celum-title span {
  font-size: clamp(24px, 2.5vw, 34px);
}
.hair-best .hair-img {
  padding-top: 20px;
}
.hair-best .hair-img img {
  max-width: 243px;
}

.jupiter-inner .img-box1 {
  text-align: center;
}
.jupiter-inner .img-box1 img {
  box-shadow: none;
}

.table-course {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.table-course th, .table-course td {
  border: 1px solid #D8BE7D;
  padding: 8px 12px;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}
.table-course td {
  color: #F61266;
}
.table-course td .text-line {
  font-weight: 400;
  text-decoration: line-through;
  color: #333;
  padding-right: 15px;
}
.table-course thead th {
  background-color: #D5F5A6;
}
.table-course tbody th {
  background-color: #F1EBDF;
}
@media screen and (max-width: 767px) {
  .table-course {
    font-size: clamp(12px, 1.7vw, 14px);
  }
}
@media screen and (max-width: 600px) {
  .table-course td .text-line {
    display: block;
    padding-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .table-course {
    min-width: 350px;
    overflow-x: scroll;
  }
}

.text-right {
  text-align: right;
  margin-bottom: 5px;
}

/* News */
.news-title {
  font-size: clamp(23px, 2.3vw, 30px);
}

.news-box2 {
  padding-top: 20px;
  margin-bottom: 50px;
}
.news-box2 .news-green a {
  position: relative;
  display: block;
  background-color: #6fc97e;
  color: #333;
  text-align: left;
  overflow: hidden;
  margin: 0 auto 20px auto;
  padding: 10px 20px 10px 20px;
  font-size: clamp(14px, 1.8vw, 18px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  background-color: #D5F5A6;
  transition: 0.5s;
}
.news-box2 .news-green a:hover {
  transform: translateY(-5px);
}
.news-box2 .news-green a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(#896B1F, #DBC774, #896B1F);
}
.news-box2 .news-green a time {
  font-size: 14px;
  padding-right: 20px;
  color: #896B1F;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pager li a {
  padding: 5px 10px;
  border: 1px solid #6fc97e;
  transition: 0.5s;
}
.pager li a:hover {
  background-color: #6fc97e;
}