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

/* --------------------------------------------------
タイトル
-------------------------------------------------- */
.f-title {
  margin: 0 auto 60px;
}

.f-title__eng {
  width: fit-content;
  margin-bottom: 0px;
  background: linear-gradient(120deg, var(--main-color) 20%, var(--sub-color));
  -webkit-background-clip: text;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.f-title__jp {
  font-size: 24px;
  line-height: 1.65;
  letter-spacing: 0.15em;
}

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

  .f-title__eng {
    font-size: 40px;
  }

  .f-title__jp {
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0.15em;
  }
}

.f-title-line__eng {
  flex-shrink: 0;
  align-items: center;
  width: fit-content;
  margin: 0 auto 15px;
  background: linear-gradient(120deg, var(--main-color) 20%, var(--sub-color));
  -webkit-background-clip: text;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.f-title-line__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.f-title-line__container::before, .f-title-line__container::after {
  content: "";
  position: relative;
  top: -5px;
  display: block;
  width: 39px;
  height: 21px;
  background: url(../images/front/title-kazari.svg) no-repeat center/cover;
}

.f-title-line__wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.f-title-line__wrapper::before, .f-title-line__wrapper::after {
  content: "";
  position: relative;
  top: -5px;
  display: block;
  width: 100%;
  height: 2px;
  background: #e6e6e6;
}

.f-title-line__jp {
  font-size: 24px;
  line-height: 1.65;
  letter-spacing: 0.15em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .f-title-line__eng {
    font-family: "canto-pen", serif;
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
  }

  .f-title-line__container {
    gap: 0px;
  }

  .f-title-line__container::before, .f-title-line__container::after {
    display: none;
  }

  .f-title-line__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .f-title-line__wrapper::before, .f-title-line__wrapper::after {
    content: "";
    top: -6px;
    height: 1px;
  }

  .f-title-line__jp {
    font-size: 18px;
  }
}

/* --------------------------------------------------
ボタン
-------------------------------------------------- */
.f-button a {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-items: center;
  width: fit-content;
  min-width: 300px;
  padding: 12px 80px 15px 35px;
  background: linear-gradient(to right, #daa8ab, #b2adc5);
  border-radius: 1000px;
  color: #ffffff;
  font-size: 18px;
  transition: filter 0.2s;
}

.f-button a:hover {
  filter: brightness(1.1);
}

.f-button a::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0px 0px 1px 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 11px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.f-button a:hover::after {
  transform: translateY(-50%) rotate(360deg);
}

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

.f-infinity-scroll p {
  flex-shrink: 0;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: #b2adc5;
  font-size: 170px;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0.3;
  animation: infinity-scroll 100s linear infinite;
}

@media screen and (max-width: 768px) {
  .f-infinity-scroll p {
    font-size: 60px;
  }
}
@keyframes infinity-scroll {
  0% {
    transform: translateX(0);
  }

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

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

  *メインビジュアル

================================================================================================================================== */
/* --------------------------------------------------
MVのアニメーション
-------------------------------------------------- */
@keyframes fadeVertical {
  0% {
    opacity: 1;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  }

  100% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes moveActive {
  0% {
    left: calc(50% - 30px);
  }

  100% {
    left: calc(50% - 60px);
  }
}
@keyframes moveNext {
  0% {
    left: 50%;
  }

  100% {
    left: calc(50% - 30px);
  }
}

.f-mainvisual-img__item.is-active {
  z-index: 3;
  animation: fadeVertical 1s ease-in-out forwards 6s;
}

.f-mainvisual-img__item.is-active picture {
  animation: moveActive 7s linear infinite;
}

.f-mainvisual-img__item.is-next picture {
  z-index: 2;
  animation: moveNext 7s linear infinite;
}

/* --------------------------------------------------
MVのベース
-------------------------------------------------- */
.f-mainvisual {
  position: relative;
  z-index: 1;
  height: 1000px;
  min-height: 700px;
  padding: 190px 50px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .f-mainvisual {
    height: 700px;
    min-height: auto;
    padding: 180px 20px 0;
  }
}

.f-mainvisual__inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

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

/* --------------------------------------------------
キャッチコピー
-------------------------------------------------- */
/* ----- 日本語 ----- */
.f-mainvisual__catch--jp {
  position: absolute;
  top: 30px;
  right: 0;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 30px;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #6c6684;
  font-size: 25px;
  white-space: nowrap;
}

.f-mainvisual__catch--jp::after {
  content: "";
  display: block;
  width: calc(100svw - (100svw - 100px));
  height: 1px;
  background: var(--line-color);
}

@media screen and (max-width: 1700px) {
  .f-mainvisual__catch--jp {
    top: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .f-mainvisual__catch--jp {
    position: static;
    justify-content: flex-end;
    gap: 15px;
    margin: 0 -20px 0 auto;
    font-size: 14px;
  }

  .f-mainvisual__catch--jp::after {
    content: "";
    display: block;
    width: calc(100svw - (100svw - 55px));
    height: 1px;
    background: var(--line-color);
  }
}

/* ----- 英語 ----- */
.f-mainvisual__catch--eng {
  position: absolute;
  top: 0;
  left: 120px;
  width: fit-content;
  background: linear-gradient(120deg, var(--main-color) 20%, var(--sub-color));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0);
  font-size: 120px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  animation: colorChange 3s;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 1700px) {
  .f-mainvisual__catch--eng {
    top: 30px;
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .f-mainvisual__catch--eng {
    position: static;
    margin: 25px auto 0 20px;
    font-size: 24px;
    letter-spacing: 0.075em;
  }
}
@keyframes colorChange {
  from {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  to {
    background-position: 0% 0%;
  }
}

/* --------------------------------------------------
MVの画像
-------------------------------------------------- */
.f-mainvisual-img {
  position: relative;
  z-index: -1;
  display: flex;
  width: 100%;
  height: 100%;
}

.f-mainvisual-img__list {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-mainvisual-img__item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-mainvisual-img__item picture {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  transform: translate(-50%, -50%);
}

.f-mainvisual-img__item picture img {
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}

.f-mainvisual__office-hours {
  position: absolute;
  bottom: 60px;
  left: 120px;
  width: 600px;
  padding: 25px 20px 20px;
  background: #ffffff;
}

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

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

  *お知らせ

================================================================================================================================== */
.f-news {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: 1;
}

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

.f-news__list {
  width: 570px;
}

@media screen and (max-width: 768px) {
  .f-news__list {
    width: calc(100% - 60px);
    margin: 0 0 0 auto;
  }
}

.f-news-item {
  margin: 0 0 0 auto;
}

.f-news-item:first-child .f-news-item__link::before {
  content: "NEWS";
  position: absolute;
  top: -15px;
  left: 27px;
  z-index: 2;
  display: inline-block;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.f-news-item:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .f-news-item:not(:last-child) {
    margin-bottom: 7px;
  }
}

.f-news-item:first-child .f-news-item__link::before {
  top: -12px;
  left: 12px;
  font-size: 20px;
}

.f-news-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: rgba(197, 144, 147, 0.9);
  color: #ffffff !important;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.f-news-item__link:hover {
  background: rgba(178, 173, 197, 0.9);
}

@media screen and (max-width: 768px) {
  .f-news-item__link {
    display: block;
    padding: 13px 10px 7px 13px;
    font-size: 11.5px;
  }
}

.f-news-item__info {
  display: flex;
  flex-flow: wrap;
  flex-shrink: 0;
  align-items: center;
}

.f-news-item__date {
  flex-shrink: 0;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ffffff;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .f-news-item__date {
    margin: 0;
    padding: 0;
    border: none;
  }
}

.f-news-item__term {
  display: flex;
  flex-shrink: 0;
  gap: 5px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ffffff;
  line-height: 1;
}

.f-news-item__taxonomy {
  display: inline-block;
}

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

.f-news-button {
  margin-top: 15px;
  padding-right: 70px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .f-news-button {
    padding-right: 35px;
  }
}

.f-news-button__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 0;
  color: #ffffff;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.f-news-button__link:hover {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .f-news-button__link {
    font-size: 12px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  }

  .f-news-button__link:hover {
    color: #ffffff;
  }
}

.f-news-button__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding: 0 0 0 1px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.f-news-button__link:hover .f-news-button__arrow {
  background: rgb(255, 255, 255);
  color: var(--main-color);
  transform: rotate(360deg);
}

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

  *バナーエリア

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

.f-banner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: calc(100% - (100% - 1500px) / 2 + 40px);
  height: 56%;
  background: url(../images/common/marble-beige.jpg) repeat center/500px 500px;
}

.f-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc((100% - 1500px) / 2 - 40px);
  height: 56%;
  background: url(../images/common/dot.png) repeat center/15px 2px;
}

.f-banner__inner {
  max-width: 1400px;
  padding: 70px 50px 140px;
}

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

.f-banner__wrapper {
  display: flex;
  gap: 20px;
}

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

.f-banner__list {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

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

.f-banner__link:hover {
  opacity: 0.5;
}

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

  *インスタグラム

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

.f-instagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 790px);
  height: 100%;
  background: url(../images/common/dot.png) center center/15px 2px repeat;
}

.f-instagram::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 790px);
  height: 100%;
  background: url(../images/common/dot.png) center center/15px 2px repeat;
}

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

  .f-instagram::after {
    display: none;
  }
}

.f-instagram__inner {
  max-width: 1400px;
  padding: 120px 50px 140px;
}

.f-instagram__inner::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% + 790px);
  height: 56%;
  background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
}

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

  .f-instagram__inner::after {
    width: 100%;
    height: 70%;
  }
}

.f-title__instagram {
  margin-bottom: 20px;
}

/* --------------------------------------------------
ダミーリンク
-------------------------------------------------- */
.f-instagram__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.f-instagram__list li {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  aspect-ratio: 1;
}

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

/* --------------------------------------------------
バナー
-------------------------------------------------- */
.f-first-banner {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 300px;
  margin-top: 60px;
  overflow: hidden;
}

.f-first-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/front/first-banner-bg.jpg) no-repeat center/cover;
  transform: translate(-50%, -50%);
  transition: transform 0.4s;
}

.f-first-banner:hover::before {
  transform: translate(-50%, -50%) scale(1.05);
}

.f-first-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(218, 168, 171), rgb(178, 173, 197));
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}

.f-first-banner:hover::after {
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  .f-first-banner {
    height: auto;
    margin-top: 30px;
  }
}

.f-first-banner__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 160px 60px 90px;
  color: #ffffff !important;
  font-size: 30px;
  line-height: 1;
  overflow: hidden;
}

.f-first-banner__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .f-first-banner__link {
    padding: 75px 90px 80px 30px;
    font-size: 20px;
  }

  .f-first-banner__link::after {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}

.f-first-banner:hover::before {
  transform: translate(-50%, -50%) scale(1.075);
}

.f-first-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.f-first-banner__arrow {
  position: absolute;
  top: 50%;
  right: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0 0 1px 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 16px;
  transform: translateY(-50%);
  transition: transform 0.4s, background 0.4s;
}

@media screen and (max-width: 768px) {
  .f-first-banner__arrow {
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

.f-first-banner:hover .f-first-banner__arrow {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) rotate(360deg);
}

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

  *診療案内

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

.f-medical__inner {
  max-width: 1600px;
  padding: 140px 50px 80px;
}

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

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

@media screen and (max-width: 768px) {
  .f-medical__top {
    flex-flow: wrap;
    gap: 90px;
  }
}

.f-medical__text > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.f-medical__list {
  margin-top: 60px;
}

.f-medical-item {
  border-top: 1px solid var(--line-color);
}

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

.f-medical-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 10px 100px 10px 30px;
  color: var(--text-color);
}

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

.f-medical-item__icon {
  width: 80px;
  min-width: 80px;
  height: auto;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .f-medical-item__icon {
    width: 50px;
    min-width: 50px;
    margin-right: 20px;
  }
}

.f-medical-item__title {
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
}

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

.f-medical-item__arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 0 1px 2px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  transform: translateY(-50%);
  transition: transform 0.4s, background 0.4s;
}

.f-medical-item:hover .f-medical-item__arrow {
  background: var(--sub-color);
  transform: translateY(-50%) rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-medical-item__arrow {
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 10px;
  }
}

.f-medical-img {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
  width: 810px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .f-medical-img {
    gap: 15px;
    width: calc(100% + 40px);
    margin: 0 0 0 -20px;
  }
}

.f-medical-img__item {
  height: fit-content;
}

.f-medical-img__item:nth-child(2n) {
  margin-top: auto;
}

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

.f-medical__under {
  display: flex;
  gap: 40px;
  margin-top: 100px;
}

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

.f-medical-pulldown {
  width: calc(50% - 20px);
}

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

.f-medical-pulldown-item {
  border: 1px solid var(--line-color);
}

.f-medical-pulldown-item__header {
  position: relative;
  z-index: 1;
  padding: 36px 90px 36px 50px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown-item__header {
    position: relative;
    z-index: 1;
    padding: 17px 50px 17px 25px;
    cursor: pointer;
  }
}

.f-medical-pulldown__title {
  position: relative;
  z-index: 1;
  padding-left: 35px;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
}

.f-medical-pulldown__title::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  display: block;
  width: 7px;
  height: 7px;
  background: var(--main-color);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown__title {
    position: relative;
    z-index: 1;
    padding-left: 22px;
    font-family: "fot-klee-pro", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
  }

  .f-medical-pulldown__title::before {
    top: 17px;
    width: 5px;
    height: 5px;
  }
}

.f-medical-pulldown-item__button {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 1;
  display: block;
  width: 21px;
  height: 21px;
  transform: translateY(-50%);
}

.f-medical-pulldown-item__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  display: block;
  width: 3px;
  height: 100%;
  background: var(--main-color);
  border-radius: 300px;
  transition: transform 0.3s, opacity 0.3s;
}

.f-medical-pulldown-item__button.is-active::before {
  opacity: 0;
  transform: rotate(-90deg);
}

.f-medical-pulldown-item__button::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0%;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--main-color);
  border-radius: 300px;
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown-item__button {
    position: absolute;
    top: 50%;
    right: 25px;
    z-index: 1;
    display: block;
    width: 13px;
    height: 13px;
  }
}

.f-medical-pulldown-item__contents {
  display: none;
}

.f-medical-pulldown-item__inner {
  padding: 0 30px 50px;
}

.f-medical-pulldown-item__inner::before {
  content: "";
  display: block;
  margin: 0 auto 40px;
  border-top: solid var(--line-color);
}

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

  .f-medical-pulldown-item__inner::before {
    content: "";
    display: block;
    margin: 0 auto 20px;
    border-top: solid var(--line-color);
  }
}

.f-medical-pulldown__list {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.f-medical-pulldown__list li a {
  display: inline-block;
  padding: 5px 20px;
  background: var(--bg-gray);
  border-radius: 300px;
  color: var(--text-color);
  font-size: 90%;
}

.f-medical-pulldown__list li a:hover {
  background: var(--bg-color);
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown__list {
    gap: 20px;
    padding: 0 10px;
    font-size: 90%;
  }

  .f-medical-pulldown__list li a {
    display: inline-block;
    padding: 5px 20px;
    background: var(--bg-color);
    border-radius: 300px;
    font-size: 90%;
  }

  .f-medical-pulldown__list li a:hover {
    background: #f2f0f8;
    color: var(--sub-color);
  }
}

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

  *日帰り手術

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

.f-surgery::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 150px);
  height: 56%;
  background: url(../images/common/marble-beige.jpg) repeat center/500px 500px;
}

@media screen and (max-width: 768px) {
  .f-surgery::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 80%;
    height: 30%;
    background: url(../images/common/marble-beige.jpg) repeat center/500px 500px;
  }
}

.f-surgery__inner {
  display: flex;
  gap: 150px;
  max-width: 1600px;
  padding: 80px 50px 100px;
}

@media screen and (max-width: 768px) {
  .f-surgery__inner {
    flex-flow: column;
    gap: 50px;
    padding: 0px 20px 100px;
  }
}
@media screen and (max-width: 768px) {
  .f-surgery__contents {
    order: 1;
  }
}

.f-tittle--surgery {
  text-align: center;
}

.f-title__eng--surgery {
  margin: 0 auto 20px;
}

.f-surgery__text > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.f-surgery__list {
  margin-top: 60px;
}

.f-surgery-item {
  border-top: 1px solid var(--line-color);
}

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

.f-surgery-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 10px 100px 10px 30px;
  color: var(--text-color);
}

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

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

.f-surgery-item__icon {
  width: 80px;
  min-width: 80px;
  height: auto;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .f-surgery-item__icon {
    width: 50px;
    min-width: 50px;
    margin-right: 20px;
  }
}

.f-surgery-item__title {
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
}

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

.f-surgery-item__arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 0 1px 2px;
  background: var(--sub-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  transform: translateY(-50%);
  transition: transform 0.4s, background 0.4s;
}

.f-surgery-item:hover .f-surgery-item__arrow {
  background: var(--main-color);
  transform: translateY(-50%) rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-surgery-item__arrow {
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 10px;
  }
}

.f-surgery-img {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
  width: 750px;
  height: auto;
}

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

.f-surgery-img__item {
  height: fit-content;
}

.f-surgery-img__item:nth-child(2n) {
  margin-top: auto;
}

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

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

  *無限スライダ

================================================================================================================================== */
.f-infinity-slider {
  margin: 150px 0;
}

.f-infinity-slider .splide__slide {
  width: 500px !important;
}

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

  .f-infinity-slider .splide__slide {
    width: 280px !important;
  }
}

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

  *よく相談をいただくお悩み

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

.f-worry__inner {
  max-width: 1600px;
  padding: 0 50px 80px;
}

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

.f-worry__list {
  display: flex;
  margin-top: 60px;
}

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

.f-worry-item {
  flex: 1;
  border-left: 1px solid var(--line-color);
}

.f-worry-item:last-child {
  border-right: 1px solid var(--line-color);
}

@media screen and (max-width: 768px) {
  .f-worry-item {
    flex: auto;
    border-top: 1px solid var(--line-color);
    border-left: none;
  }

  .f-worry-item:last-child {
    border-right: none;
    border-bottom: 1px solid var(--line-color);
  }
}

.f-worry-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 50px 10px;
  color: var(--text-color) !important;
}

@media screen and (max-width: 768px) {
  .f-worry-item__link {
    flex-flow: wrap;
    justify-content: flex-start;
    padding: 20px 60px 20px 20px;
  }
}

.f-worry-item__number {
  margin-bottom: 35px;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 50px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .f-worry-item__number {
    position: relative;
    top: 2px;
    flex-shrink: 0;
    margin: 0 20px 0 0;
    font-size: 30px;
  }
}

.f-worry-item__title {
  margin-bottom: 80px;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .f-worry-item__title {
    margin-bottom: 0;
    font-size: 18px;
    writing-mode: horizontal-tb;
  }
}

.f-worry-item__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: auto 0 0;
  padding: 0 0 1px 2px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  transition: transform 0.4s, background 0.4s;
}

@media screen and (max-width: 768px) {
  .f-worry-item__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 30px;
    height: 30px;
    margin: 0;
    font-size: 12px;
    transform: translateY(-50%);
  }
}

.f-worry-item:hover .f-worry-item__arrow {
  background: var(--sub-color);
  transform: rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-worry-item:hover .f-worry-item__arrow {
    transform: translateY(-50%) rotate(360deg);
  }
}

.f-worry-item:nth-child(even) .f-worry-item__number {
  color: var(--sub-color);
}

.f-worry-item:nth-child(even) .f-worry-item__arrow {
  background: var(--sub-color);
}

.f-worry-item:nth-child(even) .f-worry-item__link:hover .f-worry-item__arrow {
  background: var(--main-color);
}

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

  *美容機器から探す

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

.f-equipment::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: -1;
  display: block;
  width: calc(50% - 165px);
  height: 100%;
  background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
}

.f-title--equipment {
  max-width: 1600px;
  margin: 80px auto 100px;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .f-title--equipment {
    margin: 0px auto 40px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .f-title__eng--equipment {
    font-size: 36px;
  }
}

.f-equipment__inner {
  max-width: 1920px;
  margin: auto;
  padding: 0 85px 100px;
}

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

.f-equipment__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

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

.f-equipment-item__link {
  position: relative;
  z-index: 1;
  display: block;
  color: #ffffff !important;
}

.f-equipment-item__img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.f-equipment-item__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: #584142;
  opacity: 55%;
  transition: opacity 0.3s;
}

.f-equipment-item__img img {
  transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
  .f-equipment-item__img {
    min-height: 230px;
  }
}

.f-equipment-item__link:hover .f-equipment-item__img::before {
  opacity: 25%;
}

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

.f-equipment-item__number {
  position: absolute;
  top: 20px;
  left: 28px;
  z-index: 2;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .f-equipment-item__number {
    top: 15px;
    left: 17px;
    font-size: 30px;
  }
}

.f-equipment-item__contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 70px 0 80px;
}

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

.f-equipment-item-title {
  text-align: center;
}

.f-equipment-item-title__jp {
  font-size: 20px;
}

.f-equipment-item-title__eng {
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .f-equipment-item-title {
    text-align: center;
  }

  .f-equipment-item-title__jp {
    font-size: 18px;
  }

  .f-equipment-item-title__eng {
    font-family: "canto-pen", serif;
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
  }
}

.f-equipment-freearea {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 85px;
}

.f-equipment-freearea__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 140px;
  margin: 0 0 0 auto;
  padding: 0 0 100px 50px;
}

@media screen and (max-width: 768px) {
  .f-equipment-freearea {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .f-equipment-freearea__inner {
    flex-flow: column;
    gap: 40px;
    margin: 0 auto;
    padding: 0 0 60px;
  }
}

.f-equipment-freearea_text {
  flex-shrink: 0;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .f-equipment-freearea_text {
    font-size: 100%;
    text-align: center;
  }
}

.f-equipment-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

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

.f-equipment-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-equipment-button .f-equipment-button__link {
  box-shadow: 0 0 10px rgba(218, 168, 171, 0.4);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 5px 100px 9px 50px;
  background: #ffffff;
  border-radius: 1000px;
  color: var(--main-color);
  font-size: 24px;
}

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

.f-equipment-button .f-equipment-button__link::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0px 0px 1px 2px;
  background: #fcf4f5;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 14px;
  transform: translateY(-50%);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.f-equipment-button .f-equipment-button__link:hover::after {
  background: #ffffff;
  color: var(--main-color);
  transform: translateY(-50%) rotate(360deg);
}

.f-equipment-button .f-equipment-button__link--subcolor {
  box-shadow: 0 0 10px rgba(178, 173, 197, 0.4);
  color: var(--sub-color);
}

.f-equipment-button .f-equipment-button__link--subcolor:hover {
  background: var(--sub-color);
}

.f-equipment-button .f-equipment-button__link--subcolor::after {
  background: #f3f1f9;
  color: var(--sub-color);
}

.f-equipment-button .f-equipment-button__link--subcolor:hover::after {
  color: var(--sub-color);
}

@media screen and (max-width: 768px) {
  .f-equipment-button {
    width: 90%;
    margin: 0 auto;
  }

  .f-equipment-button .f-equipment-button__link {
    min-height: auto;
    padding: 15px 50px 15px 30px;
    font-size: 18px;
  }

  .f-equipment-button .f-equipment-button__link::after {
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

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

  *メッセージ

================================================================================================================================== */
.f-message {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

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

/* ----- パララックス ----- */
.f-message__parallax {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.f-message__parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.f-message__parallax video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.f-message__contants {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 250px 0 275px;
}

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

.f-message__inner {
  width: 100%;
  margin: 0 auto;
}

.f-message__title {
  color: #ffffff;
  font-size: 38px;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.f-message-buttons {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .f-message-buttons {
    flex-flow: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
  }
}

.f-message-button {
  width: calc(33.3333333333% - 20px);
}

.f-message-button .f-message-button__link {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 300px;
  padding: 20px 80px 23px 50px;
  background: linear-gradient(to right, #daa8ab, #b2adc5);
  border-radius: 1000px;
  color: #ffffff;
  font-size: 20px;
  transition: filter 0.2s;
}

.f-message-button .f-message-button__link:hover {
  filter: brightness(1.1);
}

.f-message-button .f-message-button__link::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0px 0px 1px 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 13px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.f-message-button .f-message-button__link:hover::after {
  transform: translateY(-50%) rotate(360deg);
}

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

  .f-message-button .f-message-button__link {
    min-width: auto;
    padding: 12px 66px 15px 35px;
    color: #ffffff;
    font-size: 16px;
  }

  .f-message-button .f-message-button__link:hover {
    filter: brightness(1.1);
  }

  .f-message-button .f-message-button__link::after {
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin: auto 0px 0px;
    padding: 0px 0px 1px 2px;
    font-size: 12px;
    transform: translateY(-50%);
    transition: transform 0.3s;
  }

  .f-message-button .f-message-button__link:hover::after {
    transform: translateY(-50%) rotate(360deg);
  }
}

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

  *特徴

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

.f-feature::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  display: block;
  width: calc(50% - 450px);
  height: 56%;
  background: url(../images/common/marble-beige.jpg) center center/500px 500px repeat;
}

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

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

.f-title-line--feature {
  margin: 0 auto 85px;
}

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

.f-feature__container {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 140px;
}

.f-feature__container::before {
  content: "";
  position: absolute;
  right: 100px;
  bottom: 55px;
  z-index: -1;
  display: block;
  width: 546px;
  height: 576px;
  background: url(../images/common/logo.svg) no-repeat center/contain;
  opacity: 5%;
}

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

  .f-feature__container::before {
    right: -100px;
    bottom: 50px;
    width: 300px;
    height: 316px;
    opacity: 5%;
  }
}

.f-feature-slider {
  display: flex;
  max-width: 1760px;
  margin: 0 0 0 auto;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .f-feature-slider {
    flex-flow: column;
    padding-left: 0;
  }
}

.f-feature__left {
  display: flex;
}

@media screen and (max-width: 768px) {
  .f-feature__left {
    flex-flow: column;
    order: 2;
  }
}

#f-feature-slider--contents {
  padding: 0 80px;
}

@media screen and (max-width: 768px) {
  #f-feature-slider--contents {
    padding: 30px 20px 0;
  }
}

.f-feature-item-title {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .f-feature-item-title {
    gap: 15px;
  }
}

.f-feature-item-title__number {
  flex-shrink: 0;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.1em;
}

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

.f-feature-item-title__jp {
  display: flex;
  align-items: center;
  height: auto;
  padding-bottom: 10px;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .f-feature-item-title__jp {
    padding: 0;
    font-size: 20px;
    line-height: 1.65;
  }
}

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

.f-feature-item__button-container {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
  margin-top: 80px;
}

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

.f-feature-item--button__link {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 270px;
  padding: 0 60px 15px 15px;
  border-bottom: solid 1px var(--line-color);
  color: var(--text-color);
  font-size: 18px;
}

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

.f-feature-item--button__link::after {
  content: "\f061";
  position: absolute;
  top: 1px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0px 0px 0px 2px;
  background: var(--sub-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 10px;
  transition: transform 0.3s, background 0.3s;
}

.f-feature-item--button__link:hover::after {
  background: var(--main-color);
  transform: rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-feature-item--button__link {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 250px;
    padding: 0 50px 15px 15px;
    border-bottom: solid 1px var(--line-color);
    color: var(--text-color);
    font-size: 18px;
  }

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

  .f-feature-item--button__link::after {
    content: "\f061";
    position: absolute;
    top: 3px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0px 0px 0px 2px;
    background: var(--sub-color);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 10px;
    transition: transform 0.3s, background 0.3s;
  }

  .f-feature-item--button__link:hover::after {
    background: var(--main-color);
    transform: rotate(360deg);
  }
}

#f-feature-slider--images {
  max-width: 700px;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  #f-feature-slider--images {
    width: 100%;
    max-width: none;
  }
}

/* ----- スライダーのArrowボタン ----- */
#f-feature-slider--thum {
  max-width: 280px;
}

#f-feature-slider--thum .f-feature-slider-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin-top: 20px;
}

#f-feature-slider--thum .f-feature-slider-information__number {
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 1;
}

#f-feature-slider--thum .f-feature-slider-progress {
  flex-shrink: 0;
  width: 70%;
  background: var(--line-color);
}

#f-feature-slider--thum .f-feature-slider-progress__bar {
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 400ms ease;
}

#f-feature-slider--thum .splide__arrows {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#f-feature-slider--thum .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--main-color), var(--sub-color));
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: filter 0.2s;
}

#f-feature-slider--thum .splide__arrow:hover {
  filter: brightness(1.15);
}

@media screen and (max-width: 768px) {
  #f-feature-slider--thum {
    display: flex;
    align-items: center;
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0 auto 30px;
  }

  #f-feature-slider--thum .splide__track {
    display: none !important;
  }

  #f-feature-slider--thum .f-feature-slider-information {
    width: 80%;
    margin: 0 0 0 auto;
    padding: 0 20px;
  }

  #f-feature-slider--thum .splide__arrows {
    flex-shrink: 0;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0;
    padding: 0 20px;
  }

  #f-feature-slider--thum .splide__arrow {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }
}

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

  *ご挨拶

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

.f-doctor::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  display: block;
  width: calc(50% - 790px);
  height: 100%;
  background: url(../images/common/dot.png) center center/15px 2px repeat;
}

.f-doctor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 300px);
  height: 30%;
  background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
}

@media screen and (max-width: 768px) {
  .f-doctor::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    display: block;
    width: 20%;
    height: 30%;
    background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
  }
}

.f-inner--doctor {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 120px 0;
}

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

.f-doctor__box {
  max-width: 1760px;
  margin: 0 0 0 auto;
  padding: 0 0 0 50px;
}

.f-doctor__box--flex {
  display: flex;
  align-items: flex-start;
  gap: 130px;
}

@media screen and (max-width: 768px) {
  .f-doctor__box {
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
  }

  .f-doctor__box--flex {
    display: flex;
    flex-flow: column;
    gap: 0px;
  }
}

.f-title__eng {
  margin-bottom: 10px;
}

.f-doctor__left {
  width: 100%;
}

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

@media screen and (max-width: 768px) {
  .f-doctor__wrapper {
    justify-content: center;
    margin-top: 50px;
  }
}

.f-title--doctor {
  margin-bottom: 50px;
}

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

.f-doctor__text > *:not(:last-child) {
  margin-bottom: 2.5em;
}

.f-doctor__profile {
  font-size: 20px;
}

.f-doctor__profile .--name {
  font-size: 26px;
}

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

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

  .f-doctor__profile .--name {
    font-size: 24px;
  }

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

.f-doctor__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 50px;
}

.f-doctor__right::after {
  content: "";
  display: block;
  width: 350px;
  height: 605px;
  background: url(../images/front/doctor-img-02.jpg) no-repeat bottom 0 left 0/350px 280px, url(../images/front/doctor-img-01.jpg) no-repeat top 0 left 0/350px 280px;
}

@media screen and (max-width: 768px) {
  .f-doctor__right {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .f-doctor__right::after {
    display: none;
  }
}

.f-doctor__img {
  width: 510px;
}

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

.f-button--doctor {
  max-width: 1760px;
  margin: 70px 0 0 auto;
  padding: 0 0 0 50px;
}

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

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

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

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

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

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

.f-infinity-scroll--doctor {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: -1;
  width: calc(50% + 350px);
}

@media screen and (max-width: 768px) {
  .f-infinity-scroll--doctor {
    position: static;
    width: 100%;
    margin: 50px auto;
  }
}
