@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *バナーエリア
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *お悩みの部位から探す - 追加コンテンツ
  - *病状・病名から探す
  - *医療コラム
  - *無限スライダー
--------------------- */
/* ==================================================================================================================================

  *基本設定

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

section .inner {
  padding: 120px 50px 150px;
  max-width: 1500px;
}

.text > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

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

/* 固定する画像 */
/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
.top_title {
  margin-bottom: 100px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-size: 150%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 650%;
  background: linear-gradient(var(--main-color) 70%, var(--sub-color02) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 18px;
  }
  .top_title .eng {
    font-size: 50px;
    margin-bottom: 5px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 850px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 45px;
}

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 10px;
}
.mvSlider::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(9, 97, 185, 0.5), rgba(9, 97, 185, 0));
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 10px;
}
.mvSlider::after {
  position: absolute;
  content: "";
  width: 770px;
  height: 757px;
  background: url(../images/logo_mark_w.svg) top left/cover no-repeat;
  left: 50px;
  bottom: -142px;
  opacity: 0.2;
  z-index: 2;
}
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}
.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f053";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f054";
}
.mvSlider .splide__arrows {
  display: none;
}

/* ----- スライダーのArrowボタン ----- */
/* 各スライダーのボタンは非表示に */
/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 round 10px 10px 10px 10px);
}
.mvImg .splide__track {
  width: 100%;
  height: 100%;
}
.mvImg .splide__slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + 50px);
  pointer-events: none;
}
.fade.move .mvImg .splide__slide img {
  animation: hideTranslate 8s ease-out forwards;
}
.fade.move .mvImg .splide__slide.is-active img {
  animation: showTranslate 8s ease-out forwards;
}

/* アニメーションを実行 */
/* MVのアニメーション  */
@keyframes hideImg {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  /* 下降 */
  0% {
    transform: translate3d(0, -30px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 30%;
  left: 0;
  z-index: 4;
  width: 100%;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  padding: 0 80px;
}
.mvCatch p {
  font-size: 280%;
  text-align: left;
  line-height: 1.65;
  letter-spacing: 0.12em;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  /* text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF; */
  /* filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff); */
}
.mvCatch p > span {
  padding: 0 10px;
  font-size: 150%;
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.mvContents::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  outline: 5px solid rgba(255, 255, 255, 0.3);
  outline-offset: -5px;
  border-radius: 10px;
}
.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 1600px;
}
.mvContents .splide__track {
  width: 100%;
  height: 100%;
}

.open_bnr {
  position: absolute;
  left: 80px;
  bottom: 80px;
  display: inline-block;
  padding: 4px;
  /* background: rgba(255, 255, 255, 0.4); */
  border: 1px solid #fff;
  border-radius: 50%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}
.open_bnr .date {
  font-size: 110%;
}
.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}
.open_bnr .nairankai_tit {
  display: block;
  width: 80%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: var(--gradation-color);
  color: #fff;
  border-radius: 300px;
  font-size: 90%;
  text-align: center;
}

.mv_info_wrap {
  position: absolute;
  display: flex;
  gap: 15px;
  bottom: 80px;
  left: 410px;
}
.mv_info_wrap .mv_info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 8px;
  text-align: center;
  color: #fff;
  font-size: 110%;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--sub-color) 50%, #ff9d13 50%);
  border-radius: 50%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  z-index: 1;
  line-height: 1.5;
  margin: 5px;
}
.mv_info_wrap .mv_info::before {
  position: absolute;
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid var(--sub-color);
  border-radius: 50%;
  z-index: -1;
}
.mv_info_wrap .mv_info span {
  font-size: 140%;
  padding-right: 5px;
}

.mv_info_btn {
  font-size: 75%;
  background: rgba(255, 255, 255, 0.3);
  padding: 3px 10px 3px 15px;
  border-radius: 300px;
  transition: 0.3s;
}
.mv_info_btn i {
  padding-left: 5px;
}

.mv_info_wrap .mv_info:hover .mv_info_btn {
  background: #fff;
  color: #ff9d13;
}

/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}
.open_bnr.subcolor > * .nairankai_tit {
  color: var(--sub-color);
}

/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  h1 {
    margin: 0;
  }
  .mainvisual {
    height: 400px;
    padding: 0;
  }
  .mvImg {
    clip-path: none;
  }
  .mvSlider::before {
    border-radius: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(rgba(9, 97, 185, 0), rgba(9, 97, 185, 0.5));
    top: auto;
    bottom: 0;
  }
  .mvSlider::after {
    width: 240px;
    height: 236px;
    left: -24px;
    bottom: -40px;
    opacity: 0.2;
    z-index: 2;
  }
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }
  .mvSlider .sliderBtn#mv_btnPrev {
    left: 10px;
  }
  .mvSlider .sliderBtn#mv_btnNext {
    right: 10px;
  }
  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }
  /* ----- スライダーのArrowボタン ----- */
  .mvCatch {
    top: auto;
    bottom: 20px;
    display: none;
    transform: none;
  }
  .mvCatch .inner {
    padding: 0 20px;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
  }
  .mvContents {
    display: none;
  }
  .sp_only {
    display: block;
    background: var(--bg-color);
  }
  .sp_only .inner {
    padding: 20px 20px 50px;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    gap: 20px;
  }
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
  .mv_info_wrap {
    position: static;
    width: 100%;
    justify-content: center;
  }
  .mv_info_wrap .mv_info {
    width: 50%;
    max-width: 180px;
    height: 100%;
    aspect-ratio: 1/1;
  }
}
/* ==================================================================================================================================

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}
.top_banner .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}
.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}
.top_banner .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}
.top_banner .input .banner_slide {
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--bg-color);
}
.top_banner .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}
.top_banner .input a.banner_slide:hover {
  background: #f5f5f5;
}
.top_banner .input .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}
.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_banner .input .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}
.top_banner .input .slide_title {
  margin: 0 auto 10px;
  padding: 5px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 110%;
  line-height: 1.5;
}
.top_banner .input .slide_content {
  font-size: 90%;
}

/* 画像のみのバナー */
/* インプットバナー */
/* ----- グリッドバナー ----- */
.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 13.3333333333px);
}

/* ----- スライダーバナー ----- */
#bannerSlider .splide {
  position: relative;
  z-index: 1;
}
#bannerSlider .splide__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
#bannerSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}
#bannerSlider .bannerSlider_arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
#bannerSlider .bannerSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  background: var(--main-color);
  border-radius: 50%;
  font-size: 80%;
  transition: background 0.2s;
}
#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--text-color);
}
#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}
#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}
#bannerSlider .bannerSlider_pagination {
  z-index: 1;
  display: flex;
  gap: 15px;
  margin: 30px auto 0;
}
#bannerSlider .bannerSlider_page {
  width: 10px;
  height: 10px;
  background-color: #e8e8e8;
  border-radius: 50%;
  transition: background 0.2s;
}
#bannerSlider .bannerSlider_page.is-active {
  background: var(--main-color);
}

/* スライドの設定  */
/* スライダーのArrowボタン */
/* ページネーション */
/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  /* ----- スライダーバナー ----- */
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }
  #bannerSlider .bannerSlider_arrow {
    width: 40px;
    height: 40px;
  }
  #bannerSlider .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }
  #bannerSlider .bannerSlider_pagination {
    gap: 12px;
    margin: 20px auto 0;
  }
  #bannerSlider .bannerSlider_page {
    width: 8px;
    height: 8px;
  }
  /* スライダーのArrowボタン */
  /* ページネーション */
}
/*==================================================================================================================================

  *医院概要（パターン02）

==================================================================================================================================*/
.clinic {
  position: relative;
  z-index: 1;
}
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news::before {
  position: absolute;
  content: "";
  background: url(../images/bg_clinic02.png) top left/cover no-repeat;
  width: 450px;
  height: 500px;
  top: -100px;
  left: -50px;
  z-index: 0;
}
.clinic .news .inner {
  padding: 120px 50px;
}
.clinic .news .news_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 0;
  border-radius: 10px;
}
.clinic .news .news_left {
  flex-shrink: 0;
}
.clinic .news .top_title {
  margin: 0 0 30px;
}
.clinic .news .top_title .eng {
  font-size: 450%;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}
.clinic .info .inner {
  display: flex;
  gap: 50px;
  padding: 0 50px 120px;
}
.clinic .info .inner > * {
  width: calc(50% - 20px);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}
.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: linear-gradient(135deg, #57B4E2 50%, var(--main-color) 50%);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}
.clinic .info .illustmap img {
  width: 100%;
}
.clinic .info address .location {
  padding: 5px 0 5px 50px;
}
.clinic .info address .location::before {
  content: "\f3c5";
}
.clinic .info address .location .zipcode {
  margin-right: 10px;
}
.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}
.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
}
.clinic .info address .fax::before {
  content: "\f249";
}
.clinic .info address .note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 90%;
}
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 10px;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
}
.clinic .info .office_hour:first-child {
  margin-top: 30px;
}
.clinic .info .list_access {
  margin-top: 5px;
}
.clinic .info .calendar_text {
  margin-top: 20px;
}
.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}
.clinic .info .googlemap iframe {
  height: 350px;
  width: 100%;
  border-radius: 10px;
}

/* ----- お知らせ ----- */
/* ----- 医院概要 ----- */
@media screen and (max-width: 640px) {
  .clinic .news::before {
    top: 0;
    width: 150px;
    height: 140px;
  }
  .greeting .inner::after {
    position: absolute;
    content: "";
    background: #68b8eb;
    width: 100%;
    height: calc(100% - 200px);
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .clinic .news .news_wrap {
    flex-flow: column;
    gap: 0;
    padding: 0;
  }
  .clinic .info .news_wrap {
    flex-flow: column;
    padding: 0 20px 70px;
  }
  .clinic .info .news_wrap > * {
    width: 100%;
  }
  .clinic .news .inner {
    padding: 70px 20px;
  }
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
  }
  .clinic .info .inner > * {
    width: 100%;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *ご挨拶

================================================================================================================================== */
.greeting {
  position: relative;
  background: linear-gradient(-160deg, rgba(244, 248, 252, 0.8) 60%, rgba(219, 236, 250, 0.85) 60%);
}
.greeting::before {
  position: absolute;
  content: "";
  background: url(../images/bg_clinic01.png) top right/cover no-repeat;
  width: 100%;
  height: calc(100% + 400px);
  top: -400px;
  right: 0;
  z-index: -1;
}
.greeting::after {
  position: absolute;
  content: "GREETING";
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  top: 130px;
  right: -45px;
  font-size: 235px;
  letter-spacing: 0.06em;
  line-height: 1;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  white-space: nowrap;
}
.greeting .inner::before {
  position: absolute;
  content: "";
  background: url(../images/square_img01.png) top left/cover no-repeat;
  width: 100px;
  height: 100px;
  top: -38px;
  left: 3.5%;
  opacity: 0.8;
}
.greeting .top_title {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 30px;
}
.greeting .top_title h2 {
  font-size: 180%;
}

@media screen and (max-width: 1500px) {
  .greeting .inner::before {
    left: -20px;
  }
}
.greeting_box {
  position: relative;
  z-index: 1;
}
.greeting_box::before {
  position: absolute;
  content: "";
  background: url(../images/square_img02.png) top left/cover no-repeat;
  width: 100px;
  height: 91px;
  right: -75px;
  bottom: 0;
}

.greeting_flex {
  display: flex;
  gap: 70px;
}

.greeting_box:not(:last-child) {
  margin-bottom: 70px;
}

.greeting_left {
  flex-shrink: 0;
  width: 60%;
}

.doctor_catch {
  position: relative;
  font-size: 210%;
  color: #666;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  margin-top: -18px;
}
.doctor_catch > span {
  color: var(--main-color);
  padding: 0 10px;
}
.doctor_catch > span:first-of-type {
  padding-left: 0;
  color: var(--sub-color);
}

.greeting_text {
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.greeting_img {
  position: relative;
  margin: 0 30px 50px 0;
}
.greeting_img img {
  border-radius: 10px;
}

.greeting_profile {
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 380px;
  padding: 30px 20px;
  background: var(--gradation-color);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.greeting_profile::before {
  position: absolute;
  content: "";
  background: url(../images/logo_mark_w.svg) top left/cover no-repeat;
  width: 140px;
  height: 136px;
  right: 20px;
  bottom: -10px;
  opacity: 0.2;
  z-index: -1;
}
.greeting_profile .position {
  font-size: 130%;
}
.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
  font-size: 80%;
  padding-right: 10px;
}

.greeting_btn {
  margin-top: 50px;
  /* text-align: center; */
}

.greeting_under_img {
  width: 100%;
  height: 500px;
}
.greeting_under_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting::before {
    height: 300px;
    top: -100px;
  }
  .greeting .inner::before {
    width: 70px;
    height: 70px;
  }
  .greeting_box::before {
    right: 0;
    width: 70px;
    height: 64px;
  }
  .greeting .top_title {
    display: block;
    text-align: center;
  }
  .greeting .top_title h2 {
    font-size: 20px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
  }
  .doctor_catch {
    font-size: 160%;
    padding-top: 30px;
  }
  .greeting_profile {
    width: fit-content;
    padding: 20px;
  }
  .greeting_profile .position {
    font-size: 100%;
  }
  .greeting_btn {
    margin-top: 40px;
  }
  .greeting_under_img {
    height: 150px;
  }
}
/* ==================================================================================================================================

  *診療案内

================================================================================================================================== */
.medical_wrap {
  background: linear-gradient(rgba(240, 240, 240, 0.5), rgba(240, 240, 240, 0.5)), url(../images/bg_medical.jpg) top left/cover no-repeat;
  padding: 150px 50px;
}

.medical .inner {
  padding: 0 0 120px 0;
}
.medical .top_title {
  position: relative;
  z-index: 1;
}
.medical .top_title::before {
  position: absolute;
  content: "MEDICAL";
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 230px;
  letter-spacing: 0.06em;
  line-height: 1;
  z-index: -1;
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 16px);
  height: 100%;
  aspect-ratio: 1/1;
  clip-path: inset(0 0 round 10px 10px 10px 10px);
}

/* .medical_item:hover {
  transform: translateY(-10px);
} */
.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medical_inner {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(0, 110, 178, 0.5);
  /* background: linear-gradient(135deg,rgba(0, 110, 178, 0.5)50%,rgba(0, 110, 178, 0.8)50%); */
  text-align: center;
}
.medical_inner::before {
  position: absolute;
  content: "";
  background: rgba(0, 110, 178, 0.8);
  width: 150%;
  height: 150%;
  top: 28%;
  left: 28%;
  z-index: -1;
  transform: rotate(45deg);
  transition: 0.2s;
}

.medical_item:hover .medical_inner::before {
  top: -28%;
  left: -28%;
}

.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 70%;
  max-width: 100px;
  margin: 0 auto 15px !important;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}
.medical_icon::before {
  position: absolute;
  content: "";
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid #fff;
  border-radius: 50%;
}

.medical_title h3 {
  color: #fff;
  font-size: 130%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.medical_title_eng {
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.medical_text {
  color: var(--text-color);
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}
.medical_btn span::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

.medical_item:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

/* ----- 先頭2つの設定----- */
/* .medical_item:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  min-height: 350px;
}

.medical_item:nth-of-type(-n + 2) .medical_inner {
  padding: 20px 20px 40px;
}

.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}

.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 150%;
} */
/*================ 自費診療 ===================*/
.medical.zihi {
  max-width: 1500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
}
.medical.zihi .inner {
  padding: 100px 50px 120px;
}
.medical.zihi .top_title .eng {
  font-size: 500%;
  background: linear-gradient(var(--sub-color) 70%, #c47b12 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.medical.zihi .medical_inner {
  background: rgba(183, 104, 0, 0.5);
}
.medical.zihi .medical_inner::before {
  position: absolute;
  content: "";
  background: rgba(183, 104, 0, 0.8);
  width: 150%;
  height: 150%;
  top: 28%;
  left: 28%;
  z-index: -1;
  transform: rotate(45deg);
  transition: 0.2s;
}
.medical.zihi .medical_item:hover .medical_inner::before {
  top: -28%;
  left: -28%;
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical_wrap {
    padding: 70px 20px;
  }
  .medical .top_title::before {
    font-size: 80px;
  }
  .medical .inner {
    padding: 0 0 50px 0;
  }
  .medical_list {
    gap: 15px 10px;
  }
  .medical_item {
    width: calc(50% - 5px);
  }
  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }
  .medical_icon {
    width: 40%;
  }
  .medical_title h3 {
    font-size: 100%;
  }
  .medical.zihi .inner {
    padding: 50px 10px;
  }
  .medical.zihi .top_title .eng {
    font-size: 24px;
  }
  /* ----- 先頭2つの設定----- */
  /* .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }

  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 15px 20px 30px;
  }

  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }

  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  } */
}
/* ==================================================================================================================================

  *当院の特徴（パターン01）

================================================================================================================================== */
.feature {
  position: relative;
  background: url(../images/bg_clinic02.png) top left no-repeat, var(--bg-color);
  z-index: 1;
}
.feature::after {
  content: "";
  position: absolute;
  background: url(../images/bg_clinic02.png) bottom right/cover no-repeat;
  width: 450px;
  height: 499px;
  transform: scale(-1, -1);
  bottom: 0;
  right: 0;
  z-index: -1;
}
.feature .top_title {
  position: relative;
}
.feature .top_title::before {
  position: absolute;
  content: "FEATURE";
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  color: #fff;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 230px;
  letter-spacing: 0.06em;
  line-height: 1;
  z-index: -1;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 70px 30px;
}

.feature_item {
  position: relative;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 35px);
  height: auto;
  margin: 25px 0 0 15px;
}

.feature_num {
  position: absolute;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #fff;
  background: var(--gradation-color);
  line-height: 1;
  width: 85px;
  min-height: 85px;
  border-radius: 50%;
  top: -25px;
  left: -15px;
  padding-top: 8px;
  margin: 4px !important;
  font-size: 85%;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  z-index: 1;
}
.feature_num::before {
  position: absolute;
  content: "";
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  z-index: -1;
  top: -4px;
}

.feature_img img {
  border-radius: 10px 10px 0 0;
}

.feature_num span {
  font-size: 140%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 20px 30px;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}
.feature_inner > *:not(:last-child) {
  margin-bottom: 30px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 90px;
  margin-bottom: 15px !important;
}

.feature_text::before {
  content: "";
  display: block;
  background: url(../images/square_img03.png) top left/cover no-repeat;
  width: 41px;
  height: 8px;
  margin: 0 auto 30px;
}

.feature_title h3 {
  color: #555;
  font-size: 150%;
  line-height: 1.6;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}
.feature_title h3 > span {
  font-size: 120%;
  color: var(--main-color);
}

.feature_item .btn01 {
  margin-top: auto;
  text-align: center;
}
.feature_item .btn01 a::before {
  z-index: 0;
}

/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}
.btnflex_feature .btn01 > * {
  width: 100%;
}

.feature_under_img {
  width: 100%;
  height: 500px;
}
.feature_under_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 640px) {
  .feature {
    background-size: 100px, 100%;
  }
  .feature::after {
    width: 100px;
    height: 110px;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
    margin: 25px 0 0 0;
  }
  .feature_num {
    width: 60px;
    min-height: 60px;
    font-size: 10px;
    left: -7px;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
  .feature .top_title::before {
    font-size: 80px;
  }
  /* ---- 横並びボタン ----- */
  .btnflex_feature .btn01 {
    width: 100%;
  }
  .feature_under_img {
    height: 150px;
  }
}
/*==================================================================================================================================

  *お悩みの部位から探す - 追加コンテンツ

==================================================================================================================================*/
.body-parts {
  position: relative;
  background: var(--gradation-color);
}
.body-parts .eng {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.body-parts h2 {
  color: #fff;
}
.body-parts::after {
  position: absolute;
  content: "SEARCH";
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  text-stroke: 1px rgba(255, 255, 255, 0.2);
  bottom: 0;
  right: -20px;
  font-size: 230px;
  letter-spacing: 0.06em;
  line-height: 1;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  white-space: nowrap;
}
.body-parts .inner {
  max-width: 100%;
  padding: 0;
}
.body-parts .top_title {
  margin-bottom: 0;
}
.body-parts .top_title_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border-radius: 0 0 10px 0;
}

.body-parts_box {
  min-width: 900px;
  padding: 30px 50px 150px;
  margin: 0 auto;
}

.body-parts_wrap {
  position: relative;
  z-index: 1;
  width: 900px;
  margin: 0 auto;
}

/* ----- 体の画像 ----- */
.body-parts_img {
  max-width: 250px;
  margin: 0 auto;
}

/* ----- 各部位の共通設定 ----- */
.body_parts_list > li {
  position: absolute;
  display: block;
  padding: 0;
}

/* ----- 各部位の位置 ----- */
#body-parts1 {
  top: 76px;
  left: 150px;
}
#body-parts1 .body_parts_title::before {
  top: 60%;
  right: -140px;
  width: 130px;
}

#body-parts2 {
  top: 60px;
  right: 150px;
}
#body-parts2 .body_parts_title::before {
  top: 45%;
  left: -170px;
  width: 160px;
}

#body-parts3 {
  top: 240px;
  left: 100px;
}
#body-parts3 .body_parts_title::before {
  top: 30%;
  right: -180px;
  width: 170px;
  transform: rotate(-10deg);
}

#body-parts4 {
  top: 197px;
  right: 140px;
}
#body-parts4 .body_parts_title::before {
  top: 90%;
  left: -160px;
  width: 150px;
  transform: rotate(-20deg);
}

#body-parts5 {
  top: 380px;
  left: 100px;
}
#body-parts5 .body_parts_title::before {
  top: -54%;
  right: -227px;
  width: 227px;
  transform: rotate(-25deg);
}

#body-parts6 {
  top: 376px;
  right: 100px;
}
#body-parts6 .body_parts_title::before {
  top: 0%;
  left: -149px;
  width: 142px;
  transform: rotate(20deg);
}

#body-parts7 {
  top: 492px;
  left: 150px;
}
#body-parts7 .body_parts_title::before {
  top: 128%;
  right: -192px;
  width: 192px;
  transform: rotate(25deg);
}

#body-parts8 {
  top: 530px;
  right: 150px;
}
#body-parts8 .body_parts_title::before {
  top: -50%;
  left: -178px;
  width: 176px;
  transform: rotate(29deg);
}

#body-parts9 {
  bottom: 0;
  left: 100px;
}

/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 15px;
  min-width: 100px;
  border-radius: 300px;
  background: var(--sub-color);
  border: 1px solid #fff;
  color: #ffffff;
  font-size: 130%;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.body_parts_title:hover {
  background: #ffffff;
  color: var(--sub-color);
}
.body_parts_title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background: #fff;
}

/* -----　部位ごとの病状・病名　----- */
.body-parts_search {
  margin: 10px 0 0;
}
.body-parts_search li {
  line-height: 1.5;
}
.body-parts_search li:not(:last-child) {
  margin-bottom: 5px;
}
.body-parts_search li a {
  font-size: 95%;
}

@media screen and (max-width: 1400px) {
  .body-parts .top_title .eng {
    font-size: 500%;
  }
}
/*==============================================
  *SP　お悩みの部位から探す（追加コンテンツ）
==============================================*/
@media screen and (max-width: 640px) {
  .body-parts::after {
    top: 180px;
    font-size: 170px;
  }
  .body-parts .top_title .eng {
    font-size: 50px;
  }
  .body-parts .inner {
    flex-flow: column;
    gap: 0;
  }
  .body-parts_wrap {
    max-width: 450px;
    width: 100%;
  }
  .body-parts .top_title_wrap {
    margin-bottom: 0;
    padding: 50px 20px;
  }
  .body-parts_box {
    width: 100%;
    min-width: auto;
    padding: 0px 20px 70px;
  }
  .body-parts_img {
    width: 55%;
    padding-bottom: 80px;
  }
  /* ----- 各部位の共通設定 ----- */
  .body_parts_list > li {
    padding: 8px;
  }
  /* ----- 各部位の位置 ----- */
  #body-parts1 {
    top: 5%;
    left: 0;
  }
  #body-parts2 {
    top: 0;
    right: 0;
  }
  #body-parts3 {
    top: 25%;
    left: 0;
  }
  #body-parts4 {
    top: 25%;
    right: 0;
  }
  #body-parts5 {
    top: 38%;
    left: 0;
  }
  #body-parts6 {
    top: 47%;
    right: 0;
  }
  #body-parts7 {
    top: 75%;
    left: 0;
  }
  #body-parts8 {
    top: 58%;
    right: 0;
  }
  #body-partsp {
    bottom: 0;
  }
  /* ----- 各部位のタイトル ----- */
  .body_parts_title {
    padding: 5px 10px;
    font-size: 130%;
  }
  .body_parts_title::before {
    display: none;
  }
  /* -----　部位ごとの病状・病名　----- */
  .body-parts_search {
    display: none;
  }
}
/* ==================================================================================================================================

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
}
.search .tab_list {
  gap: 10px;
}
.search .tab_list .tab {
  padding: 15px 20px;
}
.search .panel {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: var(--main-color);
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: fit-content;
}
.search_list li {
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
}
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 30px;
  background: var(--bg-color);
  color: var(--text-color);
}
.search_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  z-index: 2;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.search_list li a:hover::before {
  background: var(--main-color);
}
.search_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.search_list li a:hover::after {
  background: #ffffff;
}

/* ----- リンクボタン ----- */
/* 矢印の背景 */
/* ----- 画像あり ----- */
.panel_flex.active {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.search_img {
  width: calc(50% - 10px);
  margin: 0 !important;
}

.panel_flex .search_list {
  width: calc(50% - 10px);
}
.panel_flex .search_list li {
  width: calc(50% - 10px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }
  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
  }
  .search .panel {
    padding: 20px;
  }
  .search_list {
    gap: 10px;
  }
  .search_list li {
    width: 100%;
  }
  .search_list li a {
    min-height: auto;
    padding: 10px 40px;
  }
  /* ----- 画像あり ----- */
  .search .panel_flex.active {
    gap: 20px;
  }
  .search_img {
    width: 100%;
  }
  .panel_flex .search_list {
    width: 100%;
  }
  .panel_flex .search_list li {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *医療コラム（パターン01）

================================================================================================================================== */
.column {
  background: var(--bg-color);
}

.column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}

.column_box {
  width: calc(25% - 18.75px);
}
.column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}
.column_box dd {
  padding: 15px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.column_box dd a {
  color: var(--text-color);
}
.column_box dd a:hover {
  color: var(--main-color);
}

/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
  .column_list {
    gap: 40px;
  }
  .column_box {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 10px 0;
}
#infinitySlider .splide__list {
  gap: 10px;
}
#infinitySlider .splide__slide {
  width: 450px !important;
}
#infinitySlider .splide__slide img {
  border-radius: 10px;
}

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}