@charset "UTF-8";

/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
.front {
  overflow: hidden;
}

.f-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .f-inner {
    padding: 0 20px;
  }
}

/* --------------------------------------------------
タイトル
-------------------------------------------------- */
.l-heading-h1 {
  display: block;
  padding: 20px 50px;
  font-size: 10px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .l-heading-h1 {
    margin: 0 auto 15px;
    padding: 20px;
    color: #777777;
    text-align: center;
  }
}

/* ----- 横向き -----　*/
.f-title-dot {
  display: flex;
  gap: 50px;
}

.f-title-dot__eng {
  position: relative;
  z-index: 1;
  padding: 7px 0 0 25px;
  font-family: "garamond-premier-pro-display", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.f-title-dot__eng::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  background: var(--main-color);
  border-radius: 50%;
}

.f-title-dot__jp {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.65;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .f-title-dot {
    flex-flow: column;
    gap: 20px;
  }

  .f-title-dot__eng {
    padding: 7px 0 0 25px;
    font-size: 22px;
  }

  .f-title-dot__eng::before {
    top: 14px;
    width: 5px;
    height: 5px;
  }

  .f-title-dot__jp {
    font-size: 22px;
  }
}

/* --------------------------------------------------
ボタン
-------------------------------------------------- */
.f-button a {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 250px;
  padding: 8px 45px 8px 55px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 1000px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}

.f-button a:hover {
  background: #ffffff;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .f-button a {
    min-width: 220px;
  }
}

/* --------------------------------------------------
パララックス
-------------------------------------------------- */
.f-parallax {
  position: relative;
  z-index: 1;
  width: calc(100% - 10px);
  height: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

.f-parallax::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(55, 73, 20, 0.1);
}

/* 切り抜く範囲 */
.f-parallax__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.f-parallax__img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/front/section-img-01.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .f-parallax {
    height: 300px;
  }

  .f-parallax__img::before {
    background: url(../images/front/section-img-01_sp.jpg) no-repeat center/cover;
  }
}

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
.f-mainvisual {
  display: flex;
  gap: 30px;
  padding: 10px 10px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .f-mainvisual {
    flex-flow: column-reverse;
    gap: 0;
    padding: 10px 10px 0px;
  }
}

/* --------------------------------------------------
メインビジュアル
-------------------------------------------------- */
.f-mainvisual__container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100svh - 20px);
  min-height: 1000px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual__container {
    height: 600px;
    min-height: auto;
  }
}

/* ----- スライダー ----- */
.f-mainvisual__slider {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.f-mainvisual__slider .splide__track {
  width: 100%;
  height: 100%;
}

.f-mainvisual__slider .splide__list {
  width: 100%;
  height: 100%;
}

.f-mainvisual__slider .splide__slide {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
}

.f-mainvisual__slider .splide__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(160, 188, 105, 0.1), rgba(18, 26, 2, 0.65));
}

.f-mainvisual__slider picture {
  display: block;
  width: 100%;
  height: 100%;
}

.f-mainvisual__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .f-mainvisual__slider img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
  }
}

/* ----- ページネーション ----- */
.f-mainvisual__pagenation {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual__pagenation {
    right: 20px;
    bottom: 25px;
    gap: 10px;
  }
}

.f-mainvisual__page {
  width: 5px;
  height: 5px;
  background-color: #e2e2e2;
  border-radius: 50%;
  transition: background 0.2s;
}

.f-mainvisual__page.is-active {
  background: var(--main-color);
}

/* --------------------------------------------------
開院バナー
-------------------------------------------------- */
.f-mainvisual-open {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 70%;
  max-width: 700px;
  height: auto;
  padding: 50px 50px 60px;
  background: #ffffff;
  line-height: 1.65;
  text-align: center;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .f-mainvisual-open {
    top: 45%;
    width: calc(100% - 60px);
    height: auto;
    padding: 30px 20px;
  }
}

.f-mainvisual-open__access {
  color: var(--main-color);
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual-open__access {
    font-size: 16px;
  }
}

.f-mainvisual-open__title {
  margin-top: 15px;
  color: var(--main-color);
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual-open__title {
    margin-top: 10px;
    font-size: 28px;
  }
}

.f-mainvisual-open__date {
  margin-top: 5px;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual-open__date {
    position: relative;
    left: 10px;
    font-size: 16px;
  }
}

.f-mainvisual-open__nairankai {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--line-color);
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual-open__nairankai {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 18px;
  }
}

/* --------------------------------------------------
キャッチコピー
-------------------------------------------------- */
.f-mainvisual__catch {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

/* --------------------------------------------------
テキストスクロール
-------------------------------------------------- */
.f-infinity-scroll {
  position: absolute;
  right: 0;
  bottom: 200px;
  z-index: 2;
  display: flex;
  gap: 100px;
  width: 60%;
  overflow: hidden;
}

.f-infinity-scroll p {
  flex-shrink: 0;
  padding: 10px 0;
  font-family: "garamond-premier-pro-display", serif;
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.15em;
  white-space: nowrap;
  opacity: 0.3;
  animation: infinity-scroll 100s linear infinite;
}

@media screen and (max-width: 768px) {
  .f-infinity-scroll {
    right: 80px;
    bottom: 0px;
    width: calc(100% - 80px);
  }

  .f-infinity-scroll p {
    font-size: 40px;
  }
}
@keyframes infinity-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* --------------------------------------------------
ポイント
-------------------------------------------------- */
.f-mainvisual-point {
  position: absolute;
  bottom: 90px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-flow: column;
  gap: 15px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual-point {
    bottom: 70px;
    gap: 10px;
  }
}

.f-mainvisual-point__item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  height: 70px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 5px 5px 0;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.f-mainvisual-point__item span {
  position: relative;
  top: -1px;
  display: inline-block;
  padding: 0 7px;
  font-family: "garamond-premier-pro-display", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 34px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual-point__item {
    min-width: 170px;
    height: 50px;
    padding: 5px 20px;
    background: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 13px;
  }

  .f-mainvisual-point__item span {
    padding: 0 5px;
    font-size: 20px;
  }
}

/* ==================================================================================================================================

  *バナーエリア

================================================================================================================================== */
.f-banner {
  position: relative;
  z-index: 1;
}

.f-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 440px);
  min-width: 520px;
  height: 75%;
  background: var(--bg-color);
}

@media screen and (max-width: 768px) {
  .f-banner::before {
    width: 50%;
    min-width: auto;
    height: 60%;
  }
}

.f-banner__inner {
  max-width: 1440px;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .f-banner__inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px 0;
  }
}

/* --------------------------------------------------
ピックアップバナー
-------------------------------------------------- */
.f-banner-pickup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 13000px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .f-banner-pickup {
    padding: 0 10px;
  }
}

.f-banner-pickup__item {
  margin: 0 auto;
  text-align: center;
}

.f-banner-pickup__item a:hover {
  opacity: 0.8;
}

/* --------------------------------------------------
バナー
-------------------------------------------------- */
.f-banner__list-bottom {
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .f-banner__list-bottom {
    padding: 0 10px;
  }
}

#f-banner .splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

#f-banner .splide__arrow--prev {
  left: 0;
}

#f-banner .splide__arrow--next {
  right: 0;
}

#f-banner .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  width: 50px;
  height: 100%;
  height: 50px;
  background: var(--main-color);
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  #f-banner .splide__arrow {
    width: 30px;
    height: 30px;
  }
}

#f-banner .splide__arrow i {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s;
}

@media screen and (max-width: 768px) {
  #f-banner .splide__arrow i {
    font-size: 12px;
  }
}

#f-banner .f-banner-item a:hover {
  opacity: 0.7;
}

/* ==================================================================================================================================

  *医院概要

================================================================================================================================== */
.f-information {
  position: relative;
  z-index: 1;
}

.f-information__inner {
  display: flex;
  gap: 60px;
  padding: 30px 50px 120px;
}

@media screen and (max-width: 768px) {
  .f-information__inner {
    flex-flow: column;
    gap: 60px;
    padding: 70px 20px;
  }
}

.f-information__box {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .f-information__box {
    width: 100%;
  }
}

.f-information__logo {
  max-width: 300px;
  margin: 0 auto 50px;
}

.f-information__tel {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin: 0 auto 35px;
}

.f-information__tel .--sub {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #9a9a9a;
  font-size: 13px;
}

.f-information__number {
  position: relative;
  z-index: 1;
  padding: 0 0 0 45px;
  font-family: "garamond-premier-pro-display", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--text-color) !important;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.f-information__number::before {
  content: "\f095";
  position: absolute;
  top: 5px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .f-information__number {
    padding: 0 0 0 40px;
    font-size: 34px;
  }

  .f-information__number::before {
    top: 4px;
    font-size: 24px;
  }
}

.f-information__illustmap {
  border-radius: 15px;
  overflow: hidden;
}

.f-information-address {
  display: flex;
  justify-content: space-between;
  gap: 20px 30px;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .f-information-address {
    flex-flow: column;
    justify-content: center;
  }
}

.f-information-access__item {
  width: fit-content;
  padding: 5px 20px;
  background: #eff7dd;
  border-radius: 5px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #799541;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .f-information-access__item {
    margin: 0 auto;
    font-size: 13px;
  }
}

.f-information__location {
  margin-top: 5px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .f-information__location {
    margin-top: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .f-information-address .c-googlemap-button {
    text-align: center;
  }
}

/* ==================================================================================================================================

  *お知らせ

================================================================================================================================== */
.f-news__inner {
  max-width: 1300px;
  padding: 130px 50px 150px;
}

@media screen and (max-width: 768px) {
  .f-news__inner {
    padding: 70px 20px;
  }
}

.f-news__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .f-news__top {
    margin: 0 auto 40px;
  }
}

.f-news-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 40px 100px 40px 0;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--text-color);
  font-size: 18px;
}

.f-news-item__link:hover {
  color: var(--text-color);
}

.f-news-item__link::after {
  content: "\f061";
  position: absolute;
  top: 51%;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 25px;
  background: var(--main-color);
  border-radius: 1000px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 12px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.f-news-item__link:hover::after {
  background: rgb(121, 149, 65);
}

@media screen and (max-width: 768px) {
  .f-news-item__link {
    flex-flow: wrap;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 50px 20px 0px;
    font-size: 16px;
  }

  .f-news-item__link::after {
    top: 70%;
    right: 0px;
    width: 40px;
    height: 15px;
    font-size: 10px;
  }
}

.f-news-item:not(last-child) .f-news-item__link {
  border-bottom: solid 1px var(--line-color);
}

.f-news-item__info {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 10px 25px;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .f-news-item__info {
    gap: 10px 15px;
    width: 100%;
    margin: 0;
    font-size: 90%;
  }
}

.f-news-item__date {
  flex-shrink: 0;
  font-family: "garamond-premier-pro-display", serif;
  font-style: normal;
  font-weight: 300;
  color: #b3b3b3;
}

@media screen and (max-width: 768px) {
  .f-news-item__date {
    position: relative;
    top: 2px;
  }
}

.f-news-item__term {
  display: flex;
  flex-shrink: 0;
  gap: 5px;
}

.f-news-item__taxonomy {
  display: inline-block;
  min-width: 100px;
  padding: 2px 10px;
  border-radius: 1000px;
  font-size: 13px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .f-news-item__taxonomy {
    min-width: 80px;
    font-size: 11px;
  }
}

.f-news-item__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .f-news-button {
    margin-top: 30px;
    text-align: center;
  }
}

/* ==================================================================================================================================

  *リンクボタン

================================================================================================================================== */
.f-link__inner {
  max-width: 1300px;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .f-link__inner {
    padding: 50px 20px 0;
  }
}

.f-link__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .f-link__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.f-link__item a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.f-link__item a::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
  transition: right 0.2s;
}

.f-link__item a:hover::after {
  right: 20px;
}

.f-link__item--coming a {
  pointer-events: none;
}

.f-link__item--coming a::before {
  content: "準備中";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(56, 56, 56, 0.7);
  color: #ffffff;
  font-size: 110%;
}

@media screen and (max-width: 768px) {
  .f-link__item a {
    padding: 15px 30px;
    font-size: 14px;
  }

  .f-link__item a::after {
    right: 10px;
  }

  .f-link__item a:hover::after {
    right: 7px;
  }
}

/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
.f-infinity-slider {
  position: relative;
  z-index: 2;
}

.f-infinity-slider .splide__slide {
  width: 450px !important;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .f-infinity-slider .splide__slide {
    width: 200px !important;
  }
}

/* ==================================================================================================================================

  *歯のお悩み

================================================================================================================================== */
.f-trouble {
  position: relative;
  z-index: 1;
}

.f-trouble::before {
  content: "";
  position: absolute;
  top: -150px;
  right: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 210px);
  height: 50%;
  background: var(--bg-color);
}

@media screen and (max-width: 768px) {
  .f-trouble::before {
    top: -50px;
    width: 12%;
    height: 100%;
  }
}

.f-trouble__inner {
  display: flex;
  align-items: center;
  gap: 90px;
  max-width: 1600px;
  padding: 200px 50px 100px;
}

@media screen and (max-width: 768px) {
  .f-trouble__inner {
    flex-flow: column;
    gap: 50px;
    padding: 70px 20px 0;
  }
}

.f-trouble__box {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .f-trouble__box {
    width: 100%;
  }
}

.f-title-dot--trouble {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .f-title-dot--trouble {
    margin-bottom: 50px;
  }
}

.f-trouble__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
}

@media screen and (max-width: 768px) {
  .f-trouble__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.f-trouble-item__link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 55px 15px 0;
  border-bottom: 1px solid var(--line-color);
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--text-color) !important;
  font-size: 17px;
}

.f-trouble-item__link::after {
  content: "\f061";
  position: absolute;
  top: calc(50% - 7px);
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 20px;
  background: var(--main-color);
  border-radius: 1000px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 10px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.f-trouble-item__link:hover::after {
  background: rgb(121, 149, 65);
}

@media screen and (max-width: 768px) {
  .f-trouble-item__link {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 50px 15px 0;
    font-size: 16px;
  }

  .f-trouble-item__link::after {
    width: 40px;
    height: 15px;
    font-size: 10px;
  }
}

.f-trouble-img img {
  border-radius: 15px;
  overflow: hidden;
}

/* ==================================================================================================================================

  *診療案内

================================================================================================================================== */
.f-medical {
  position: relative;
  z-index: 2;
}

.f-medical-small__inner {
  max-width: 1600px;
  padding: 80px 50px 100px;
}

@media screen and (max-width: 768px) {
  .f-medical-small__inner {
    max-width: 1600px;
    padding: 70px 20px 50px;
  }
}

.f-title--medical {
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .f-title--medical {
    margin-bottom: 50px;
  }
}

/* --------------------------------------------------
アイコンリンク
-------------------------------------------------- */
.f-medical-small__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 20px;
}

@media screen and (max-width: 768px) {
  .f-medical-small__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.f-medical-small-item__link {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 100px;
  padding: 20px 30px 20px 50px;
  border-radius: 10px;
  color: var(--text-color) !important;
  transition: box-shadow 0.2s;
}

.f-medical-small-item__link:hover {
  box-shadow: 0 0 5px rgba(121, 149, 65, 0.4);
}

@media screen and (max-width: 768px) {
  .f-medical-small-item__link {
    gap: 30px;
    min-height: 100px;
    padding: 15px 20px 15px 40px;
  }
}

.f-medical-small-item__icon {
  max-width: 50px;
}

@media screen and (max-width: 768px) {
  .f-medical-small-item__icon {
    max-width: 40px;
  }
}

.f-medical-small-item__title {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.f-medical-small-item__title .--small {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .f-medical-small-item__title {
    font-size: 18px;
  }

  .f-medical-small-item__title .--small {
    font-size: 16px;
  }
}

/* --------------------------------------------------
大きいリンク
-------------------------------------------------- */
.f-medical-large__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .f-medical-large__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 10px;
  }
}

.f-medical-large-item {
  position: relative;
  z-index: 1;
}

.f-medical-large-item__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-medical-large-item__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  opacity: 1;
  transition: opacity 0.4s;
}

.f-medical-large-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.f-medical-large-item__link:hover .f-medical-large-item__img:before {
  opacity: 0.5;
}

.f-medical-large-item__link:hover .f-medical-large-item__img img {
  transform: scale(1.05);
}

.f-medical-large-item__title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  padding: 20px 30px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .f-medical-large-item__title {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
}

/* ==================================================================================================================================

  *特徴

================================================================================================================================== */
.f-feature {
  position: relative;
  z-index: 1;
}

.f-feature::before {
  content: "";
  position: absolute;
  top: -230px;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 460px);
  min-width: 500px;
  height: 70%;
  background: var(--bg-color);
}

.f-feature::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -320px;
  z-index: -1;
  display: block;
  width: calc(50% - 460px);
  min-width: 500px;
  height: 40%;
  background: var(--bg-color);
}

@media screen and (max-width: 768px) {
  .f-feature::before {
    top: -230px;
    width: 25%;
    min-width: auto;
    height: 20%;
  }

  .f-feature::after {
    bottom: -320px;
    width: 25%;
    min-width: auto;
    height: 40%;
  }
}

.f-title-feature {
  margin: 0 auto 80px;
  text-align: center;
}

.f-title-feature__eng {
  font-family: "garamond-premier-pro-display", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.f-title-feature__jp {
  margin-top: 20px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.65;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .f-title-feature {
    margin: 0 auto 50px;
  }

  .f-title-feature__eng {
    font-size: 22px;
  }

  .f-title-feature__jp {
    margin-top: 20px;
    font-family: "shippori-mincho", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
  }
}

.f-feature__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  padding: 200px 50px 100px;
}

@media screen and (max-width: 768px) {
  .f-feature__inner {
    padding: 70px 20px 35px;
  }
}

.f-feature__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 20px;
}

@media screen and (max-width: 768px) {
  .f-feature__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 20px;
  }
}

.f-feature-item {
  display: flex;
  flex-flow: column;
}

@media screen and (max-width: 768px) {
  .f-feature-item {
    width: 100%;
  }
}

.f-feature-item__images {
  position: relative;
  z-index: 1;
}

.f-feature-item__images img {
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .f-feature-item__images {
    height: 350px;
    overflow: hidden;
  }

  .f-feature-item__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.f-feature-item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75px;
  margin-top: 35px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: 0.15em;
  text-align: center;
}

.f-feature-item__title span {
  color: #618121;
}

@media screen and (max-width: 768px) {
  .f-feature-item__title {
    min-height: auto;
    margin-top: 25px;
    font-size: 18px;
  }
}

.f-feature-item__text {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .f-feature-item__text {
    margin-top: 25px;
  }
}

.f-feature-item__button-container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .f-feature-item__button-container {
    margin-top: 20px;
  }
}

.f-feature-item__link {
  position: relative;
  z-index: 1;
  padding: 12px 62px 12px 0;
  color: var(--text-color);
  font-size: 17px;
}

.f-feature-item__link:hover {
  color: var(--main-color);
}

.f-feature-item__link::after {
  content: "\f061";
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 12px;
  transform: translateY(-50%);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.f-feature-item__link:hover::after {
  box-shadow: 0 0 10px rgba(67, 133, 175, 0.3);
  background: var(--main-color);
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .f-feature-item__link {
    padding: 10px 52px 10px 0;
    font-size: 16px;
  }

  .f-feature-item__link::after {
    width: 35px;
    height: 35px;
    font-size: 10px;
  }
}

.f-feature-item__point {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 25px;
}

.f-feature-item__point::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line-color);
}

.f-feature-item__number {
  flex-shrink: 0;
  font-family: "garamond-premier-pro-display", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 70px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .f-feature-item__number {
    font-size: 50px;
  }
}

/* ==================================================================================================================================

  *医師紹介

================================================================================================================================== */
.f-doctor {
  position: relative;
  z-index: 1;
}

.f-inner--doctor {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  padding: 130px 50px 180px;
}

@media screen and (max-width: 768px) {
  .f-inner--doctor {
    padding: 35px 20px 70px;
  }
}
@media screen and (max-width: 768px) {
  .f-title-dot--doctor {
    margin-bottom: 50px;
  }
}

.f-doctor__box--flex {
  display: flex;
  gap: 120px;
}

@media screen and (max-width: 768px) {
  .f-doctor__box--flex {
    flex-flow: column-reverse;
    gap: 30px;
  }
}

.f-doctor__left {
  width: calc(50% - 120px);
}

@media screen and (max-width: 768px) {
  .f-doctor__left {
    width: 100%;
  }
}

.f-doctor__text {
  padding-top: 60px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .f-doctor__text {
    padding-top: 0;
  }
}

.f-doctor__right {
  flex-shrink: 0;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .f-doctor__right {
    order: 1;
    width: 100%;
  }
}

.f-doctor__img img {
  border-radius: 10px;
}

.f-doctor__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .f-doctor__wrapper {
    flex-flow: column;
    gap: 40px;
    margin-top: 40px;
  }
}

.f-doctor__profile {
  width: 100%;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.2em;
}

.f-doctor__profile .--name {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .f-doctor__profile {
    font-size: 22px;
  }
}

.f-button--doctor {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .f-button--doctor {
    margin-top: 50px;
    text-align: center;
  }
}

.f-doctor-career {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .f-doctor-career {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-top: 70px;
  }
}

.f-doctor-career__title {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 25px;
  margin: 0 0 30px;
  color: var(--main-color);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.f-doctor-career__title::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--main-color);
}

@media screen and (max-width: 768px) {
  .f-doctor-career__title {
    gap: 20px;
    font-size: 22px;
  }
}

.f-doctor-career__box {
  display: flex;
  flex-flow: column;
}

.f-doctor-career__inner {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  height: 100%;
  padding: 25px 40px 45px;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .f-doctor-career__inner {
    padding: 10px 20px 30px;
  }
}

.f-doctor-career__definition {
  display: flex;
  gap: 45px;
  padding: 20px;
  border-bottom: 1px solid var(--line-color);
}

.f-doctor-career__definition dt {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .f-doctor-career__definition {
    flex-flow: column;
    gap: 10px;
    padding: 10px 15px;
  }
}

.f-doctor-career__list li {
  padding: 20px;
  border-bottom: 1px solid var(--line-color);
}
