@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Zen+Kaku+Gothic+New&family=Zen+Old+Mincho&display=swap");
:root {
  --min: "Zen Old Mincho", serif;
  --zen: "Zen Kaku Gothic New", sans-serif;
  --cor: "Cormorant Garamond", serif;
  --primary-color: #184898;
  --text-color: #333333;
  font-family: var(--zen);
  font-weight: 400;
  line-height: 1.875;
  color: var(--text-color);
  font-size: 10px;
  letter-spacing: 0.1em;
}

body {
  background-color: #fff;
  opacity: 0;
  animation: fadeIn 1s forwards;
  overflow-x: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

p {
  font-size: 1.6rem;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s ease;
}
.js-fadeLeft.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-fadeRight {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s ease;
}
.js-fadeRight.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner--s {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

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

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

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

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.mt50 {
  margin-top: 50px !important;
}

@media screen and (max-width: 767px) {
  .smb30 {
    margin-bottom: 30px !important;
  }
  .smb50 {
    margin-bottom: 50px !important;
  }
  .smb70 {
    margin-bottom: 70px !important;
  }
}
/* 印刷時に非表示にする要素 */
@media print {
  .no-print {
    display: none !important;
  }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  padding: 30px 0 0;
}
.breadcrumb li {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
}
.breadcrumb li::after {
  content: "/";
  position: absolute;
  right: -20px;
}
.breadcrumb li:last-child::after {
  content: "";
}

.sec {
  padding: 60px 0 0;
}
.sec.last-sec {
  padding-bottom: 60px;
}

.under__ttl {
  font-size: 3.6rem;
  font-weight: 400;
  font-family: var(--min);
  padding-left: 50px;
  position: relative;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
  border-bottom: 1px solid var(--text-color);
  line-height: 1.6;
}
.under__ttl::before {
  content: "";
  width: 34px;
  aspect-ratio: 34/36;
  background-image: url(../img/common/webp/logo_icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 15px;
  display: block;
}

.under-page .sec p {
  font-size: 1.6rem;
  margin-bottom: 1em;
}
.under-page .sec p:last-child {
  margin-bottom: 0;
}

.check-list-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.base__list li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
}
.base__list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: 13px;
}

.bold {
  font-weight: bold;
}

.base__table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #9f9f9f;
  border-left: 1px solid #9f9f9f;
}
.base__table th,
.base__table td {
  border-bottom: 1px solid #9f9f9f;
  padding: 12px 10px;
  text-align: left;
  font-size: 1.6rem;
  border-right: 1px solid #9f9f9f;
}
.base__table th {
  background-color: #ccd6e8;
  text-align: center;
}

.blue-link {
  color: var(--primary-color);
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .under__ttl {
    padding-left: 31px;
    font-size: 2.4rem;
  }
  .under__ttl::before {
    width: 22px;
    top: 10px;
  }
  .under-page .sec p {
    font-size: 1.4rem;
  }
  .breadcrumb {
    padding: 10px 0 0;
  }
  .sec {
    padding: 40px 0 0;
  }
  .sec.last-sec {
    padding-bottom: 40px;
  }
  .base__table th,
  .base__table td {
    font-size: 1.4rem;
  }
}
.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: #ccc;
  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: 0 15px;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--primary-color);
  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 {
  font-size: 3rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-family: var(--min);
  font-weight: 500;
}

.info__cont {
  margin-top: 30px;
}

.info__cont h3 {
  font-size: 2.4rem;
  color: var(--primary-color);
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: var(--min);
  font-weight: 500;
}

.info__cont h3::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.info__cont h2 {
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-bottom: 15px;
  font-size: 2.6rem;
  margin-bottom: 35px;
  font-family: var(--min);
  font-weight: 500;
}

.info__cont h2::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.info__cont h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-family: var(--min);
  font-weight: 500;
}

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

.base__link {
  width: 280px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--primary-color);
  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-color: #ebebeb;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.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__ttl {
    font-size: 21px;
  }
  .info__cont h3 {
    font-size: 20px;
    padding-left: 16px;
    margin-bottom: 15px;
  }
  .info__cont h3::before {
    top: 13px;
    width: 7px;
    height: 7px;
  }
  .info__cont h2 {
    padding-bottom: 8px;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .info__cont h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .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=style.css.map */