@charset "UTF-8";

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

  *基本設定

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

.l-section:not(:last-child) {
  margin: 0;
}

.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 {
  z-index: 2;
  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-horizontal {
  margin: 0 auto 80px;
}

.f-title-horizontal--center {
  text-align: center;
}

.f-title-horizontal__eng {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.f-title-horizontal__jp {
  margin-top: 15px;
  font-size: 42px;
  line-height: 1.65;
  letter-spacing: 0.15em;
}

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

  .f-title-horizontal--center {
    text-align: center;
  }

  .f-title-horizontal__eng {
    color: var(--main-color);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.15em;
  }

  .f-title-horizontal__jp {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.65;
    letter-spacing: 0.15em;
  }
}

/* ----- 縦向き -----　*/
.f-title-vertical {
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  gap: 50px;
}

.f-title-vertical__eng {
  color: var(--main-color);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.f-title-vertical__jp {
  margin: 0 auto;
  margin-top: 10px;
  font-size: 40px;
  line-height: 1.65;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.f-title-vertical__jp span {
  display: inline-block;
  padding: 20px 0;
  color: var(--main-color);
}

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

  .f-title-vertical__eng {
    color: var(--main-color);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.15em;
  }

  .f-title-vertical__jp {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.65;
    letter-spacing: 0.15em;
    writing-mode: horizontal-tb;
  }

  .f-title-vertical__jp span {
    display: inline-block;
    padding: 0 5px;
    color: var(--main-color);
  }
}

/* --------------------------------------------------
ボタン
-------------------------------------------------- */
.f-button a {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 230px;
  padding: 15px 60px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 1000px;
  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);
}

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

.f-button a:hover::before {
  right: 20px;
}

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

/* --------------------------------------------------
テキストスクロール
-------------------------------------------------- */
.f-infinity-scroll {
  display: flex;
  gap: 100px;
  width: 100%;
  margin-top: 50px;
  opacity: 0.2;
  overflow: hidden;
}

.f-infinity-scroll p {
  flex-shrink: 0;
  padding: 10px 0;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #00a551;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.2em;
  white-space: nowrap;
  animation: infinity-scroll 100s linear infinite;
}

@media screen and (max-width: 768px) {
  .f-infinity-scroll {
    margin-top: 70px;
  }

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

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

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

  *メインビジュアル

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

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

/* --------------------------------------------------
メインビジュアル（左側）
-------------------------------------------------- */
.f-mainvisual__left {
  flex-shrink: 0;
  width: 530px;
}

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

.f-mainvisual__contents--left {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.f-mainvisual__images {
  width: 100%;
  height: auto;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
}

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

@media screen and (max-width: 768px) {
  .f-mainvisual__images {
    display: none;
  }
}

/* ----- ポイント ----- */
.f-mainvisual-point {
  margin-top: 35px;
}

.f-mainvisual-point__title {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  margin: 0 auto 30px;
  color: var(--main-color);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.f-mainvisual-point__title::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--line-color);
}

.f-mainvisual-point__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.f-mainvisual-point__item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: var(--bg-color);
  border-radius: 10px;
  font-size: 17px;
  text-align: center;
}

.f-mainvisual-point__item span {
  color: var(--main-color);
}

.f-mainvisual-point__item:nth-child(odd) {
  background: #fcfcef;
}

.f-mainvisual-point__item:nth-child(odd) span {
  color: var(--sub-color);
}

@media screen and (max-width: 768px) {
  .f-mainvisual-point__item {
    padding: 10px;
    font-size: 15px;
    line-height: 1.65;
  }
}

/* --------------------------------------------------
メインビジュアル（右側）
-------------------------------------------------- */
.f-mainvisual__right {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

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

/* ----- スライダー ----- */
.f-mainvisual__slider {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.f-mainvisual__slider .splide__track {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

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

.f-mainvisual__slider .splide__slide {
  width: 100% !important;
  height: 100% !important;
}

.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;
  top: 25px;
  right: 30px;
  display: flex;
  gap: 15px;
}

@media screen and (max-width: 768px) {
  .f-mainvisual__pagenation {
    top: 15px;
    right: 20px;
  }
}

.f-mainvisual__page {
  width: 7px;
  height: 7px;
  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: 40px;
  left: 50px;
  font-size: 32px;
  line-height: 1.75;
  text-shadow: 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255);
}

@media screen and (max-width: 768px) {
  .f-mainvisual__catch {
    position: absolute;
    bottom: 40px;
    left: 20px;
    font-size: 16px;
  }
}

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

  *バナーエリア

================================================================================================================================== */
#f-message {
  text-align: center;
}

#f-message .l-inner {
  padding: 100px 50px;
}

@media screen and (max-width: 768px) {
  #f-message {
    text-align: center;
  }

  #f-message .l-inner {
    padding: 30px 20px;
  }
}

.f-message__title {
  margin: 0 auto 30px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--line-color);
  font-size: 150%;
}

.f-message__container {
  padding: 50px 30px;
  background: var(--bg-color);
  border-radius: 30px;
}

.f-button--message {
  margin-top: 30px;
}

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

  *バナーエリア

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

.f-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 55%;
  background: var(--bg-color);
}

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

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

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

/* --------------------------------------------------
ピックアップバナー
-------------------------------------------------- */
.f-banner-pickup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

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

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

/* --------------------------------------------------
グリッドバナー
-------------------------------------------------- */
.f-banner-bottom__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

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

  *お知らせ

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

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

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

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

.f-title-horizontal--news {
  margin: 0;
}

.f-title-horizontal__eng--news {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .f-title-horizontal__eng--news {
    font-size: 20px;
  }
}

.f-title-horizontal__jp--news {
  font-size: 34px;
}

@media screen and (max-width: 768px) {
  .f-title-horizontal__jp--news {
    font-size: 24px;
  }
}

.f-news-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 30px 100px 30px 30px;
  border-top: solid 1px var(--line-color);
  color: var(--text-color);
}

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

.f-news-item__link::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--line-color);
  font-size: 12px;
  transform: translateY(-50%);
  transition: border 0.2s, color 0.2s;
}

.f-news-item__link:hover::after {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

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

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

.f-news-item: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;
  }
}

.f-news-item__date {
  flex-shrink: 0;
}

.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 {
    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;
  }
}
@media screen and (max-width: 400px) {
  .f-link__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.f-link__item a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  padding: 25px 55px 25px 45px;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  color: var(--main-color);
  overflow: hidden;
}

.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);
  border-radius: 10px;
  color: #ffffff;
  font-size: 110%;
}

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

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

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

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

  *診療案内

================================================================================================================================== */
.f-medical {
  position: relative;
  z-index: 1;
  margin: 0 auto 100px;
}

.f-medical::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 90%;
  height: 55%;
  background: linear-gradient(135deg, rgba(0, 165, 81, 0.5), rgba(241, 191, 54, 0.5)), url(../images/front/medical_bg.jpg) no-repeat center/cover;
  border-radius: 50px;
  opacity: 0.5;
  transform: translateX(-50%);
}

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

  .f-medical::before {
    width: 100%;
    height: 80%;
    border-radius: 50px 50px 0 0;
    opacity: 0.3;
  }
}

.f-medical__inner {
  margin: 0 auto;
  padding: 100px 50px;
}

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

.f-title-vertical--medical {
  flex-shrink: 0;
}

.f-medical__list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 35px;
  width: 100%;
  height: fit-content;
}

@media screen and (max-width: 768px) {
  .f-medical__list {
    justify-content: flex-start;
    gap: 20px 15px;
  }
}

.f-medical-item {
  position: relative;
  z-index: 1;
  width: calc(20% - 28px);
  height: auto;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
  aspect-ratio: 1;
}

.f-medical-item:hover {
  transform: translateY(-10px);
}

@media screen and (max-width: 768px) {
  .f-medical-item {
    width: calc(50% - 7.5px);
  }
}

.f-medical-item__link {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: var(--bg-color);
  border: 10px solid #ffffff;
  border-radius: 50%;
  color: var(--main-color);
}

.f-medical-item:hover .f-medical-item__link {
  background: #fcfcef;
}

.f-medical-item__icon {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 130px;
  margin: 0 auto 20px;
  background: var(--bg-color);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .f-medical-item__icon {
    width: 80%;
    max-width: 200px;
  }
}

.f-medical-item__title {
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
}

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

.f-medical-item__title .sub {
  display: block;
  color: #828282;
  font-size: 14px;
}

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

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

  .f-medical-item__title .sub {
    font-size: 11px;
  }
}

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

  *特徴

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

.f-feature__inner {
  position: relative;
  z-index: 1;
  padding: 120px 50px 100px;
}

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

.f-feature__list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px;
}

.f-feature-item {
  width: calc(50% - 25px);
}

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

.f-feature-item__images {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.f-feature-item__point {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: var(--main-color);
  border-radius: 0 0 20px 0;
  color: #ffffff;
  writing-mode: vertical-rl;
}

.f-feature-item__number {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  writing-mode: horizontal-tb;
}

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

.f-feature-item__title {
  margin-top: 35px;
  font-size: 26px;
  line-height: 1.65;
  letter-spacing: 0.15em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .f-feature-item__title {
    margin-top: 30px;
    font-size: 22px;
  }
}

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

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

.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-doctor {
  position: relative;
  z-index: 1;
  border-bottom: 8px solid var(--main-color);
}

.f-inner--doctor {
  position: relative;
  z-index: 1;
  padding: 120px 50px 130px;
}

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

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

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

.f-title-horizontal--doctor {
  margin-bottom: 0;
}

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

.f-doctor__left {
  width: 100%;
}

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

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

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

.f-doctor__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

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

.f-doctor__profile {
  font-size: 32px;
  letter-spacing: 0.2em;
}

.f-doctor__profile .--name span {
  font-size: 75%;
  letter-spacing: 0.2em;
}

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

  .f-doctor__profile .--name span {
    font-size: 75%;
  }
}

.f-doctor__right {
  flex-shrink: 0;
  width: 530px;
}

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

.f-doctor__img {
  border-radius: 20px;
  overflow: hidden;
}

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