@charset "UTF-8";
:root {
  --bg: linear-gradient(0deg, #FFF2EE, #FFF2EE), #FFECF4;
  --bg-grad1: linear-gradient(270deg, rgba(94, 199, 182, 0.9) 0%, rgba(48, 158, 221, 0.9) 100%);
  --bg-grad2: linear-gradient(270deg, rgba(237, 142, 187, 0.9) 0%, rgba(65, 150, 235, 0.9) 100%);
  --bg-grad3: linear-gradient(90deg, rgba(255, 166, 178, 0.9) 0%, rgba(255, 141, 65, 0.9) 100%);
  --bg-grad4: linear-gradient(270deg, rgba(203, 214, 98, 0.9) 0%, rgba(75, 186, 55, 0.9) 100%);
}

.info__flex {
  display: flex;
  gap: 50px;
  word-break: break-all;
}

.info__sidebar {
  width: 200px;
}

.info__main-bl {
  width: calc(100% - 250px);
}

.info__side-ttl {
  border-bottom: solid 1px #ccc;
  font-size: 18px;
  padding-bottom: 10px;
  padding-left: 16px;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: var(--min);
  font-weight: 500;
}
.info__side-ttl::before {
  background: var(--bg-grad3);
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
}

.post-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.post-list__img {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 15px;
}
.post-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-list__date {
  font-size: 12px;
  line-height: 1.5;
}

.post-list__ttl {
  font-size: 16px;
}

.news__list li a {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
  display: block;
}
.news__list li a p {
  margin-bottom: 0;
}

.news__list-option {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 2px;
}
.news__list-option time {
  color: #333;
}

.news__list-cat {
  padding: 2px 15px;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  background: var(--bg-grad3);
  font-size: 1.2rem;
}

.blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog__list li a {
  display: block;
}
.blog__list li a p {
  margin-bottom: 0;
}
.blog__list li a .txt {
  font-size: 1.4rem;
}
.blog__list li a .img {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.blog__list li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
.blog__list li a:hover .img img {
  transform: scale(1.05);
  transition: all 0.5s ease;
}

.blog__list-option {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 2px;
}
.blog__list-option time {
  color: #333;
}

.blog__list-cat {
  padding: 0 15px;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--primary-color);
  font-size: 1.2rem;
}

.case__list li a {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.case__list li a .img {
  width: 120px;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.case__list li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
.case__list li a .cont {
  padding-left: 12px;
  width: calc(100% - 120px);
}
.case__list li a p {
  margin-bottom: 0;
}
.case__list li a:hover .img img {
  transform: scale(1.05);
  transition: all 0.5s ease;
}

.cat-tag {
  background: var(--primary-color);
  font-size: 1.1rem !important;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 18px;
  color: #fff;
  margin-bottom: 3px !important;
  letter-spacing: 0;
}

/* お知らせ・ブログ（詳細） */
.info__ttl {
  display: block;
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 3px;
  margin-bottom: 15px;
}

.info__ttl::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--bg-grad3);
}

@media (max-width: 1423px) {
  .info__ttl {
    font-size: 3.3rem;
  }
}
@media (max-width: 834px) {
  .info__ttl {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.info__cont {
  margin-top: 30px;
}

.info__cont h2 {
  display: block;
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 3px;
  margin-bottom: 45px;
}

@media (max-width: 1423px) {
  .info__cont h2 {
    font-size: 3.3rem;
  }
}
@media (max-width: 834px) {
  .info__cont h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.info__cont h2.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.info__cont h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--bg-grad3);
}

.base__txt,
.info__cont p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.single__info-btn {
  width: 200px;
  display: block;
  margin: 50px auto 0;
}

.news__all-link {
  width: 153px;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-bottom: 7px;
}

.news__all-link:hover .icon-arrow {
  right: -3px;
  transition-duration: 0.3s;
}

.news__all-link .icon-arrow {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -75%);
  color: var(--lgreen);
  transition-duration: 0.3s;
}

.icon-arrow:before {
  content: "\e900";
  color: var(--lgreen);
}

.mb30 {
  margin-bottom: 30px !important;
}

.base__link {
  width: 280px;
  height: 60px;
  border-radius: 100px;
  background: var(--bg-grad3);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.base__link.center {
  margin-left: auto;
  margin-right: auto;
}

/* ページネーション */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px auto 0px;
  align-items: center;
}
.nav-links .page-numbers {
  font-size: 14px;
}
.nav-links .page-numbers.current {
  background: var(--bg-grad3);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

.cyan-txt {
  color: var(----lgreen);
}

.mb20 {
  margin-bottom: 20px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.bold {
  font-weight: bold;
}

.under-mv__ttl-en {
  text-align: center;
}

#under-intr .top-menu__list-img {
  border-radius: 50%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.img600 {
  margin-inline: auto;
  width: min(100%, 600px);
}

.mt30 {
  margin-top: 30px !important;
}

.snav-lst {
  font-size: 14px;
}
.snav-lst li {
  margin-bottom: 5px;
}

.info__cont img {
  margin-bottom: 30px;
}

.info__main-bl p {
  font-size: 16px;
  margin-bottom: 0.8em;
}
.info__main-bl .case-table {
  font-size: 1.6rem;
  border-color: #ccc;
}
.info__main-bl .case-table tr * {
  width: 70%;
}
.info__main-bl .case-table tr > *:nth-of-type(1) {
  background-color: #ccd6e8;
  font-weight: bold;
  text-align: center;
  width: 30%;
}
.info__main-bl .case-table th, .info__main-bl .case-table td {
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .post-list__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .info__flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .info__main-bl {
    width: 100%;
  }
  .info__sidebar {
    width: 100%;
  }
  .implant-sec .base__detail-list {
    gap: 2em;
  }
  .implant-sec .base__detail-list__col {
    border: 1px solid #E6E6E6;
  }
  .blog .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .blog .column__list li a .img img {
    border-radius: 8px;
  }
  .archive .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .archive .column__list li a .img img {
    border-radius: 8px;
  }
  .info__main-bl .case-table {
    font-size: 1.5rem;
    border-color: #ccc;
  }
  .info__main-bl .case-table tr * {
    width: calc(100% - 120px);
  }
  .info__main-bl .case-table tr > *:nth-of-type(1) {
    width: 120px;
  }
  .blog__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .case__list li a .txt {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=news.css.map */