/* -------------------------------------------------------------------------- */
/*                                   Colors                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Default Functions                             */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Default Mixins                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                Custom Layout                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                  Defaults                                  */
/* -------------------------------------------------------------------------- */
.cmn-py {
  padding-block: 9rem 10rem;
}

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

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

.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;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

.cmn-limit1 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cmn-limit2 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cmn-limit3 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cmn-hl {
  background: linear-gradient(to bottom, transparent 60%, rgba(25, 115, 72, 0.15) 60%);
}

.cmn-bouten {
  position: relative;
}
.cmn-bouten::before {
  width: calc(25% + 1px);
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  content: "";
  inset: -5px 0 auto 0;
  position: absolute;
  margin-inline: auto;
  background-color: #197348;
}

.fixed {
  height: 110px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 150;
}

.break {
  flex-basis: 100%;
  height: 0;
}

/* ------------------------------ Hover Effects ----------------------------- */
.cmn-hover:hover {
  opacity: 0.7;
}

.cmn-glow:hover {
  filter: drop-shadow(0px 0px 8px #197348);
}
.cmn-glow--main:hover {
  filter: drop-shadow(0px 0px 8px #197348);
}
.cmn-glow--sub:hover {
  filter: drop-shadow(0px 0px 8px #222222);
}
.cmn-glow--accent:hover {
  filter: drop-shadow(0px 0px 8px #197348);
}
.cmn-glow--bg:hover {
  filter: drop-shadow(0px 0px 8px #ffffff);
}
.cmn-glow--text:hover {
  filter: drop-shadow(0px 0px 8px #222222);
}

.move-t1:hover {
  transform: translateY(-3px);
}

.move-t2:hover {
  transform: translateY(-6px);
}

.move-t3:hover {
  transform: translateY(-9px);
}

.move-r1:hover {
  transform: translateX(3px);
}

.move-r2:hover {
  transform: translateX(6px);
}

.move-r3:hover {
  transform: translateX(9px);
}

.move-b1:hover {
  transform: translateY(3px);
}

.move-b2:hover {
  transform: translateY(6px);
}

.move-b3:hover {
  transform: translateY(9px);
}

.move-l1:hover {
  transform: translateX(-3px);
}

.move-l2:hover {
  transform: translateX(-6px);
}

.move-l3:hover {
  transform: translateX(-9px);
}

/* ------------------------------ Defaults (SP) ----------------------------- */
@media screen and (width <= 768px) {
  .cmn-py {
    padding-block: 4rem 5rem;
  }
  .cmn-mb {
    margin-bottom: 3rem;
  }
  .fixed {
    height: 85px;
  }
  .sp-px {
    padding-inline: 1.5rem;
  }
}
/* -------------------------------------------------------------------------- */
/*                                    Table                                   */
/* -------------------------------------------------------------------------- */
.cmn-table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #cccccc;
  background-color: #ffffff;
}
.cmn-table tr:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}
.cmn-table th,
.cmn-table td {
  padding: 2rem;
}
.cmn-table th {
  width: 35%;
  position: relative;
  vertical-align: middle;
  color: #ffffff;
  text-align: center;
  background-color: #222222;
}
.cmn-table--small th {
  width: 15rem;
}
.cmn-table--contact {
  width: 100%;
  table-layout: fixed;
}
.cmn-table--contact th {
  width: 35%;
  text-align: left;
}

@media screen and (width <= 768px) {
  .cmn-table th,
  .cmn-table td {
    width: 100%;
    display: block;
    padding: 1.5rem;
  }
}
/* --------------------------- Contact (complete) --------------------------- */
.complete__link {
  margin-inline: auto;
  width: fit-content;
}
.complete__link span {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/*                                 Information                                */
/* -------------------------------------------------------------------------- */
.cmn-info {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: row nowrap;
  gap: 3rem;
  margin-bottom: 1.2rem;
}

.cmn-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 1rem;
}

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

.cmn-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
.cmn-tel span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  font-weight: 500;
  font-size: 2.6rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-bottom: 0.3rem;
}
.cmn-tel span small {
  background-color: #197348;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0em;
  margin: 5px 9px 0 0;
  padding-inline: 0.3rem;
}
.cmn-tel--noimg span {
  margin-bottom: 1.7rem;
}
.cmn-tel--sec01 span {
  font-size: 3.6rem;
}
.cmn-tel--footer {
  align-items: end;
}
.cmn-tel--footer span {
  align-items: end;
  font-size: 3.6rem;
}
.cmn-tel--footer span small {
  background-color: transparent;
  margin-bottom: 1rem;
}

@media screen and (width <= 768px) {
  .cmn-tel--sec01 span {
    font-size: 2.5rem;
  }
  .cmn-tel--footer {
    align-items: center;
  }
  .cmn-tel--footer span {
    align-items: center;
    font-size: 3rem;
  }
}
/* -------------------------------------------------------------------------- */
/*                                Common Style                                */
/* -------------------------------------------------------------------------- */
.color-main {
  color: #197348;
}
.color-sub {
  color: #222222;
}
.color-accent {
  color: #197348;
}
.color-bg {
  color: #ffffff;
}
.color-text {
  color: #222222;
}

.shadow--main {
  text-shadow: 0 0 5px #197348, 0 0 10px #197348, 0 0 15px #197348, 0 0 20px #197348, 0 0 25px #197348;
}
.shadow--sub {
  text-shadow: 0 0 5px #222222, 0 0 10px #222222, 0 0 15px #222222, 0 0 20px #222222, 0 0 25px #222222;
}
.shadow--accent {
  text-shadow: 0 0 5px #197348, 0 0 10px #197348, 0 0 15px #197348, 0 0 20px #197348, 0 0 25px #197348;
}
.shadow--bg {
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff, 0 0 20px #ffffff, 0 0 25px #ffffff;
}
.shadow--text {
  text-shadow: 0 0 5px #222222, 0 0 10px #222222, 0 0 15px #222222, 0 0 20px #222222, 0 0 25px #222222;
}

.cmn-text, .privacy__box p,
.privacy__box ul, .cmn-textbox p {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: clamp(26px, 2.5vw, 27px);
}
.cmn-text a, .privacy__box p a,
.privacy__box ul a, .cmn-textbox p a {
  display: inline-flex;
  text-decoration: underline;
}

.cmn-textbox p:not(:last-child) {
  margin-bottom: clamp(25px, 2.5vw, 30px);
}
.cmn-textbox--left {
  text-align: left;
}
.cmn-textbox--center {
  text-align: center;
}
.cmn-textbox--right {
  text-align: right;
}
.cmn-textbox--justify {
  text-align: justify;
}

.cmn-button {
  width: 340px;
  height: 55px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  position: relative;
  border: 1px solid #222222;
}
.cmn-button::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
  width: 61px;
  height: 5px;
  border-radius: 0;
  background: no-repeat center/contain url("/images/common/icon_arrow.png");
  transform: translateX(30px);
  transition: all 0.3s;
}
.cmn-button:hover {
  background-color: #197348;
}
.cmn-button:hover::before {
  transform: translateX(15px);
}
.cmn-button:hover span {
  color: #ffffff;
}
.cmn-button span {
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.cmn-button--white {
  border-color: #ffffff;
}
.cmn-button--white::before {
  background-image: url("/images/common/icon_arrow2.png");
}

@media screen and (width <= 768px) {
  .cmn-button::before {
    transform: translateX(clamp(10px, 2.5vw, 15px));
  }
  .cmn-button:hover::before {
    transform: translateX(5px);
  }
}
.cmn-header {
  text-align: center;
  font-weight: 700;
}
.cmn-header:has(+ .cmn-subtitle) {
  margin-bottom: 3rem;
}
.cmn-header p {
  letter-spacing: 0em;
  color: #197348;
  text-transform: capitalize;
  font-size: 6.6rem;
}
.cmn-header h3 {
  font-size: 3.5rem;
}
.cmn-header--des2 p {
  font-size: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmn-header--des2 p span {
  margin-inline: 30px 30px;
}
.cmn-header--des2 p::before, .cmn-header--des2 p::after {
  flex-grow: 1;
  background-color: transparent;
}
.cmn-header--des2 p::before, .cmn-header--des2 p::after {
  border-top: solid 1px #cccccc;
}
.cmn-header--des2 p::before, .cmn-header--des2 p::after {
  content: "";
}
.cmn-header--des2 h3 {
  font-size: 3rem;
}
.cmn-header--white h3,
.cmn-header--white p {
  color: #ffffff;
}

@media screen and (width <= 768px) {
  .cmn-header p {
    font-size: 3rem;
  }
  .cmn-header h3 {
    font-size: 2.4rem;
  }
}
.cmn-header2 {
  width: fit-content;
  margin-inline: 0 auto;
  display: flex;
  justify-content: start;
  align-items: end;
  flex-flow: row nowrap;
  gap: 2rem;
}
.cmn-header2 h3,
.cmn-header2 p {
  font-weight: 700;
}
.cmn-header2 p {
  letter-spacing: 0em;
  font-size: 8rem;
  color: #197348;
  line-height: 8.5rem;
  text-transform: capitalize;
  position: relative;
}
.cmn-header2 p::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin-block: auto;
  width: 390px;
  height: 1px;
  border-radius: 0;
  background-color: #cccccc;
  transform: translateX(calc(-100% - 30px));
}
.cmn-header2 h3 {
  font-size: 3rem;
}
.cmn-header2--des2 {
  align-items: start;
  flex-flow: column nowrap;
}
.cmn-header2--sec06 p::before {
  inset: 0 0 0 auto;
  transform: translateX(calc(100% + 30px));
  width: 610px;
  height: 1px;
  border-radius: 0;
}
.cmn-header2--sec06 h3,
.cmn-header2--sec06 p {
  color: #ffffff;
}

@media screen and (width <= 768px) {
  .cmn-header2 {
    gap: 0.5rem;
  }
  .cmn-header2 p {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }
  .cmn-header2 h3 {
    font-size: 2.4rem;
  }
}
.cmn-headbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  gap: 0 3rem;
}
.cmn-headbox .cmn-button {
  margin-inline: 0;
}

@media screen and (width <= 768px) {
  .cmn-headbox .cmn-button {
    margin-inline: auto;
  }
}
.cmn-subtitle {
  text-align: center;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 20px);
  margin-bottom: 3rem;
  line-height: 4rem;
}
.cmn-subtitle em {
  color: #197348;
}
.cmn-subtitle--des2 {
  font-size: clamp(20px, 2.5vw, 24px);
}
.cmn-subtitle--sec16 {
  margin-bottom: 1rem;
}

@media screen and (width <= 768px) {
  .cmn-subtitle {
    font-size: 1.7rem;
    line-height: 2.8rem;
  }
}
.cmn-note {
  margin-bottom: 2rem;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 700;
}

@media screen and (width <= 768px) {
  .sp-img {
    max-width: 70%;
    margin-inline: auto;
  }
}
/* -------------------------------------------------------------------------- */
/*                                 Breadcrumbs                                */
/* -------------------------------------------------------------------------- */
.breadcrumbs {
  padding-block: 0.9rem;
}
.breadcrumbs__wrapper-m {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-inline: auto;
}
.breadcrumbs__item {
  font-size: 1.2rem;
  text-align: left;
}
.breadcrumbs__item:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 30ch;
  text-align: inherit;
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  padding-right: 25px;
  white-space: nowrap;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 0;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
  transform: translate(-9px, 1px) rotate(-45deg);
}
.breadcrumbs__item a:hover {
  color: #197348;
}

/* -------------------------------------------------------------------------- */
/*                                 Pagination                                 */
/* -------------------------------------------------------------------------- */
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 0 1rem;
  margin-top: clamp(45px, 2.5vw, 60px);
}
.pagenation li {
  width: 40px;
  height: 40px;
  border-radius: 3px;
}
.pagenation li a,
.pagenation li span {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222222;
}
.pagenation li a:not(.current):hover,
.pagenation li span:not(.current):hover {
  color: #ffffff;
  background-color: #197348;
}
.pagenation .current a,
.pagenation .current span {
  color: #ffffff;
  background-color: #197348;
}

/* -------------------------------------------------------------------------- */
/*                                 Navigation                                 */
/* -------------------------------------------------------------------------- */
.navigation__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 1rem;
}
.navigation__item-link:hover {
  color: #197348;
}
.navigation__item-na {
  color: #cccccc;
}
.navigation__item:nth-child(1), .navigation__item:nth-child(3) {
  width: 3.7rem;
  padding-inline: 1rem;
}
.navigation__item:nth-child(1) {
  border-right: 1px solid #cccccc;
}
.navigation__item:nth-child(3) {
  border-left: 1px solid #cccccc;
}

/* -------------------------------------------------------------------------- */
/*                          Top Navigation (PageTop)                          */
/* -------------------------------------------------------------------------- */
.side-button {
  width: fit-content;
  position: fixed;
  inset: auto 0 15vh auto;
  z-index: 100;
}
.side-button__link {
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  background-color: #229d62;
}
.side-button__link span {
  font-weight: 700;
  color: #ffffff;
}
.side-button__link:hover {
  background-color: #197348;
}

/* -------------------------------------------------------------------------- */
/*                              Google Map (map)                              */
/* -------------------------------------------------------------------------- */
.map iframe {
  width: 100%;
  height: 420px;
  border-radius: 0;
}

/* -------------------------------------------------------------------------- */
/*                                 Error (404)                                */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Privacy Policy                               */
/* -------------------------------------------------------------------------- */
.privacy__box:not(:last-child) {
  margin-bottom: clamp(45px, 2.5vw, 60px);
}
.privacy__box h4 {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #197348;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}
/* -------------------------------------------------------------------------- */
/*                               Sitemap (site)                               */
/* -------------------------------------------------------------------------- */
.site__wrapper {
  width: min(100%, 780px);
  margin-inline: auto;
}
.site__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: column nowrap;
}
.site__item {
  width: 100%;
  text-align: left;
}
.site__item-link {
  padding: clamp(20px, 2.5vw, 25px) clamp(15px, 2.5vw, 20px);
  border-bottom: 1px solid #cccccc;
}
.site__item-link:hover {
  color: #197348;
}

/* -------------------------------------------------------------------------- */
/*                                    News                                    */
/* -------------------------------------------------------------------------- */
.news--top {
  overflow: hidden;
  background-color: #f8f8f8;
  position: relative;
  z-index: 10;
}
.news--top::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: calc(50% + 245px);
  height: 505px;
  border-radius: 0;
  background-color: #ffffff;
  z-index: -20;
}
.news__item {
  width: 100%;
  border-bottom: 1px solid #cccccc;
}
.news__item-link {
  padding: clamp(25px, 2.5vw, 30px) 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(15px, 2.5vw, 20px);
  font-weight: 500;
}
.news__item-img {
  flex-shrink: 0;
  border: 1px solid #cccccc;
}
.news__item-img img {
  width: 100px;
  height: 100px;
  border-radius: 0;
}
.news__item-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column nowrap;
  gap: clamp(15px, 2.5vw, 18px);
}
.news__item-date, .news__item-title {
  flex-shrink: 0;
}
.news__item-date {
  color: #ffffff;
  background-color: #197348;
  padding-inline: 0.3rem;
}
.news__item-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
}
.news-tag {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: row wrap;
  gap: 0rem clamp(15px, 2.5vw, 20px);
  align-self: end;
}
.news-tag__item {
  color: #197348;
  white-space: nowrap;
}
.news-tag--small .news-tag__item {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-tag--center {
  justify-content: center;
}

@media screen and (width <= 768px) {
  .news__wrapper-m {
    flex-flow: column nowrap;
  }
  .news__list {
    margin-bottom: 3rem;
  }
  .news__item-link {
    padding: 2rem 0;
  }
  .news__item-img img {
    width: 100px;
    height: 100px;
    border-radius: 0;
  }
  .news__item-title {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news__item-box {
    gap: 1rem;
  }
}
/* ------------------------------ News (index) ------------------------------ */
.news-page__link {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 1.5rem;
  text-align: left;
  padding: clamp(15px, 2.5vw, 25px);
  border: 1px solid #222222;
}
.news-page__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.news-page__item-date, .news-page__item-title {
  font-weight: 700;
}
.news-page__item-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: clamp(12px, 2.5vw, 15px);
}

/* -------------------------- News (Tag Exapanded) -------------------------- */
.custom-expand {
  padding: clamp(15px, 2.5vw, 25px);
  border: 1px solid #222222;
  margin-bottom: 2.5rem;
}
.custom-expand__note {
  margin-bottom: clamp(10px, 2.5vw, 20px);
  text-align: left;
}
.custom-expand__list {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.custom-expand__item-link {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 3rem;
  white-space: nowrap;
  border: 1px solid #222222;
}
.custom-expand__item-link::before {
  width: 12px;
  height: 12px;
  border-radius: 0;
  content: "";
  position: absolute;
  margin-block: auto;
  inset: 0 auto 0 10px;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: #229d62;
}
.custom-expand__item-link:hover::before, .custom-expand__item-link--current::before {
  background-color: #197348;
}

/* ---------------------------- News (Tag Option) --------------------------- */
.custom-select {
  padding: 0px;
  margin: 0 0 2.5rem auto;
  width: min(100%, 375px);
}
.custom-select__list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  width: min(100%, 375px);
  padding: 0.8rem 1rem;
  background-color: #fff;
  border: 1px solid #222222;
}

/* ------------------------------ News (detail) ----------------------------- */
.news-detail__header {
  font-weight: 500;
}
.news-detail__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row wrap;
  margin-bottom: 2rem;
  gap: 0.8rem;
}
.news-detail__item {
  font-size: clamp(12px, 2.5vw, 14px);
}
.news-detail__item:not(:nth-child(1)) {
  color: #197348;
}
.news-detail__item:nth-child(1) {
  padding-right: 0.8rem;
  position: relative;
  font-weight: 500;
}
.news-detail__item:nth-child(1):has(+ .news-detail__item)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  border-radius: 0;
  inset: 0 0 0 auto;
  background-color: #cccccc;
  margin-block: auto;
  transform: translateY(1px);
}