@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *バナーエリア
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *病状・病名から探す
  - *ピックアップ
  - *医療コラム
  - *無限スライダー
--------------------- */

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

  *基本設定

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

section .inner {
  padding: 220px 0;
}

.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: 60px 20px;
  }

  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}

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

  *タイトル

==================================================================================================================================*/
.top_title {
  position: relative;
  margin-bottom: 65px;
  line-height: 1;
  text-align: center;
}

.top_title::before {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  content: "GREETING";
  font-size: 150px;
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  color: #b3ab95;
  line-height: 1;
  opacity: 0.15;
  z-index: 0;
  width: 100%;
}

.top_title h2 {
  padding: 0;
  font-size: 150%;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-family: var(--font-en-sub);
  font-size: 70px;
  line-height: 100px;
  /* background: linear-gradient(var(--main-color) 0% 60%, var(--sub-color) 40% 100%); */
  background: linear-gradient(var(--main-color) 0% 55%, var(--sub-color) 45% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
}

/* 左寄せ */
.top_title.title_left {
  text-align: start;
}

/*==============================================
  *SP タイトル
==============================================*/
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 35px;
  }

  .top_title::before {
    top: 0;
    /* font-size: 60px; */
    font-size: 400%;
  }
  .top_title h2 {
    font-size: 23px;
    margin-top: -20px;
  }

  .top_title .eng {
    font-size: 30px;
    background: linear-gradient(var(--main-color) 0% 50%, var(--sub-color) 40% 100%);
    -webkit-background-clip: text;
  }
}

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

  *メインビジュアル

==================================================================================================================================*/
.mainvisual {
  position: relative;
  height: 800px;
  overflow: hidden;
  padding: 15px 15px;
  background: #fff;
}

.mvSlider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* スライダーのArrowボタン */
.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 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:hover span {
  background: var(--text-color);
}

.mvSlider .sliderBtn span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.2s;
}

.mvSlider #mv_btnPrev.sliderBtn {
  left: 20px;
}

.mvSlider #mv_btnPrev.sliderBtn span::before {
  content: "\f104";
}

.mvSlider #mv_btnNext.sliderBtn {
  right: 20px;
}

.mvSlider #mv_btnNext.sliderBtn span::before {
  content: "\f105";
  right: 20px;
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
  display: none;
}

/* ---------- MVの画像 ---------- */
.mvImg {
  width: 100%;
  height: 100%;
}

.mvImg .splide__track {
  width: 100%;
  height: 100%;
}

.mvImg .splide__slide {
  position: relative;
  overflow: hidden;
}

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

.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  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: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
}

.mvCatch p {
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
  font-family: var(--font-jp);
}

/* ---------- コンテンツ ---------- */
.mvContents {
  position: absolute !important;
  top: 0;
  width: 100%;
  height: 100%;
}

.mvContents .inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mvContents .splide__track {
  width: 100%;
  height: 100%;
}

.open_bnr {
  position: absolute;
  bottom: 220px;
  right: 0;
  display: inline-block;
  padding: 4px;
  background: rgb(230, 151, 160 , 0.5);
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: rgb(230, 151, 160 , 0.5);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-jp);
}

.open_bnr .date {
  font-size: 110%;
}

.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 270%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: rgb(255, 255, 255 , 0.7);
  border-radius: 300px;
  color: var(--sub-color);
  font-size: 90%;
  text-align: center;
}

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

.open_bnr.subcolor .nairankai_tit {
  color: var(--sub-color);
}

/* ポイント */
.mv_bnr {
  position: absolute;
  bottom: 40px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  max-width: 435px;
  width: 100%;
  gap: 15px;
}

.mv_bnr a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 210px;
  height: 115px;
  background: rgba(122, 82, 49, 0.8);
  border: 1px solid #fff;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  outline: solid 1px var(--line-color);
  outline-offset: -8px;
  color: #fff;
}

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

.sp_only {
  display: none;
}

/*==============================================
  *SP メインビジュアル
==============================================*/
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 450px;
    padding: 70px 15px 15px;
  }

  /* スライダーのArrowボタン */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
  }

  .mvSlider #mv_btnPrev.sliderBtn {
    left: 10px;
  }

  .mvSlider #mv_btnNext.sliderBtn {
    right: 10px;
  }

  .mvCatch {
    top: auto;
    bottom: 20px;
  }

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }

  .mvContents {
    display: none;
  }

  .sp_only {
    display: block;
    background: none !important;
  }

  .sp_only .inner {
    padding: 0 20px;
  }

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .open_bnr {
    position: static;
  }

  .open_bnr {
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
	
  .mv_bnr {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .mv_bnr p {
    width: 50%;
    min-height: 120px;
}
  .mv_bnr a {
    width: 100%;
    height: 100%;
    font-size: 15px;
}
}


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

  *バナーエリア

==================================================================================================================================*/
.banner_grid .inner {
  padding: 80px 0 0;
}

:is(.banner_grid , .banner_slider) .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

/* 画像のみのバナー */
:is(.banner_grid , .banner_slider) .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

:is(.banner_grid , .banner_slider) .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

:is(.banner_grid , .banner_slider) .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}

/* インプットバナー */
:is(.banner_grid , .banner_slider) .input .banner_slide {
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--bg-color);
}

:is(.banner_grid , .banner_slider) .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

:is(.banner_grid , .banner_slider) .input a.banner_slide:hover {
  background: #f5f5f5;
}

:is(.banner_grid , .banner_slider) .input .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

:is(.banner_grid , .banner_slider) .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:is(.banner_grid , .banner_slider) .input .slide_inner {
  width: calc(100%);
  height: 100%;
  padding: 0 0 10px;
}

:is(.banner_grid , .banner_slider) .input .slide_title {
  margin: 0 auto 10px;
  padding: 5px 5px 5px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 110%;
  line-height: 1.5;
}

:is(.banner_grid , .banner_slider) .input .slide_content {
  font-size: 90%;
}

/* ----- グリッドバナー ----- */
.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.banner_grid ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% / 2) - (20px / 2));
}

/* ----- スライダーバナー ----- */
#bannerSlider .splide {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  padding: 0 20px;
}

/* スライダーのArrowボタン */
#bannerSlider .splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 3px;
  background: rgb(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

#bannerSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}

#bannerSlider .splide__arrow:hover span {
  background: var(--text-color);
}

#bannerSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.2s;
}

#bannerSlider .splide__arrow--prev {
  left: 0;
}

#bannerSlider .splide__arrow--prev span::before {
  content: "\f104";
}

#bannerSlider .splide__arrow--next {
  right: 0;
}

#bannerSlider .splide__arrow--next span::before {
  content: "\f105";
}

#bannerSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

/* ----- ページネーション ----- */
#bannerSlider .splide__pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  z-index: 1;
  display: flex;
  gap: 15px;
  transform: translateX(-50%);
}

#bannerSlider .bannerSlider-page {
  width: 12px;
  height: 12px;
  background-color: #e8e8e8;
  border-radius: 50%;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider-page.is-active {
  background: var(--main-color);
}

/*==============================================
  *SP バナーエリア（追加コンテンツ）
==============================================*/
@media screen and (max-width: 640px) {
  .banner_grid .inner {
    padding: 30px 20px;
  }
  /* ----- グリッドバナー ----- */
  .banner_grid ul li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .splide {
    margin-bottom: 30px;
    padding: 0 15px;
  }

  #bannerSlider .splide__arrow {
    width: 40px;
    height: 40px;
  }

  #bannerSlider .splide__arrow span::before {
    font-size: 16px;
  }

  #bannerSlider .splide__pagination {
    bottom: -30px;
  }
}


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

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

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

.clinic::before {
    position: absolute;
    content: "";
    left: 15px;
    top: -86px;
    width: 855px;
    height: 695px;
    background: url(../images/info_bg.png) no-repeat top 5% left / 100%;
    opacity: 0.8;
    z-index: -1;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}

.clinic .news .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 0;
  margin: 120px auto 70px;
  z-index: 1;
}

.clinic .news .news_left {
  flex-shrink: 0;
}

.clinic .news .top_title {
  margin: 0 0 40px;
  line-height: 1.1;
}

.clinic .top_title::before {
  display: none;
}

.clinic .news .top_title .eng {
  font-size: 400%;
  font-family: var(--font-en);
}

.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 30px 0 140px;
}

.clinic .info .inner > * {
  width: calc(50% - 20px);
}

.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}

.clinic .info address > *::before {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: #e9edb6;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 16px;
}

.illustmap {
  width: 500px;
  margin: auto;
}

.illustmap img {
  width: 100%;
  text-align: center;
}

.info_logo {
  width: 90%;
  height: auto;
  margin: 0 auto 40px;
}

.clinic .info address .location {
  padding: 30px 0 30px 45px;
  background: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.clinic .info address .location::before {
  content: "\f3c5";
}

.clinic .info address .tel {
  margin-top: 15px;
  padding: 30px 0 30px 45px;
  background: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 3px;
  font-family: var(--font-jp);
  color: var(--main-color);
}

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

.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);
  font-family: var(--font-jp);
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}

.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 .btn01 a {
  width: 100%;
}

.clinic .info .googlemap {
  border: 1px solid #cdd7db;
}

.clinic .info .googlemap iframe {
  height: 410px;
}

@media screen and (max-width: 640px) {
  .clinic::before {
    left: 0;
    top: -33px;
    background: url(../images/info_bg.png) no-repeat top 5% center / 100%;
  }
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 0 20px 50px;
    margin: 0 auto 50px;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
    gap: 50px;
  }

  .clinic .info .inner > * {
    width: 100%;
  }

  .clinic .info address > *::before {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
	
  .clinic .info address .location {
    padding: 30px 20px 30px 20px;
    gap: 6px;
    font-size: 12.5px;
  }

  .clinic .info address .tel {
    padding: 30px 20px 30px 20px;
  }

  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }

  .illustmap {
    width: 80%;
  }
}

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

  *ご挨拶

==================================================================================================================================*/
.greeting {
  position: relative;
  background: #fff;
  z-index: 0;
}

.greeting::before {
  position: absolute;
  bottom: 35px;
  left: -50px;
  content: "";
  width: 40%;
  aspect-ratio: 1 / 0.673;
  background: url(../images/feature_img_bg.jpg) no-repeat center / cover;
  opacity: 0.9;
  z-index: -1;
}

.greeting .inner {
  max-width: 1500px;
  padding: 220px 40px 150px;
}

.greeting_box {
  position: relative;
  z-index: 1;
}

.greeting_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
}

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

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

.greeting_text {
  padding: 50px 50px 77px;
  background: #fff;
  box-shadow: 0 0 10px rgb(198 169 147 / 29%);
}

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

.greeting_text h3 {
  color: var(--main-color);
  font-size: 150%;
  letter-spacing: .1em;
  line-height: 1.55;
  padding: 30px 0;
  border-bottom: solid 1px var(--line-color);
  font-style: normal;
}

.greeting_img {
  position: relative;
}

.greeting_img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.greeting_profile {
  padding: 20px 0;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-jp);
}

.greeting_profile .position {
  font-size: 115%;
}

.greeting_profile .name {
  font-size: 160%;
}

.greeting_btn {
  margin-top: 30px;
  text-align: center;
}

.greeting_btn a {
  width: 100%;
}

.doctor_bg {
  position: relative;
  display: block;
  width: 100%;
  /* height: 600px;
  background: url(../images/doctor_bg.jpg) no-repeat center / 1300px,#fff; */
  z-index: 3;
}

.doctor_bg:before {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 13%;
  margin: auto;
  background: #fff;
  content: "";
  z-index: -2;
}


/*==============================================
  *SP ご挨拶
==============================================*/
@media screen and (max-width: 640px) {
  .greeting {
	  background: #fff;
    padding-bottom: 0;
    z-index: 1;
  }
	
  .greeting::before {
    bottom: -5px;
    width: 60%;
 }

  .greeting .inner {
    padding: 80px 20px 100px;
  }
	
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
    padding: 20px 0 0;
  }

  .greeting_left {
    width: 100%;
  }

  .greeting_text {
    padding: 20px 30px 57px;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_img {
    width: 90%;
    margin: 0 auto;
  }

  .greeting_img img {
    height: 100%;
  }

/*   .doctor_bg {
    height: 320px;
    background: url(../images/doctor_bg.jpg) no-repeat center / 600px,#fff;
  } */
}


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

  *診療案内

==================================================================================================================================*/
.medical {
  background: #f7f7f7;
}

.medical .inner {
  padding: 220px 40px 180px;
  max-width: 1500px;
}

.medical .top_title::before {
  content: "MEDICAL";
}

.medical h3 {
  font-size: 170%;
  text-align: left;
  background: var(--sub-color);
  color: #fff;
  margin-bottom: 20px;
  padding: 0 30px;
}

.medical h3:nth-of-type(2){
  margin-top: 100px;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% / 3) - (60px / 3));
  height: auto;
}

.medical_item:hover {
  transform: translateY(-10px);
  /* background: rgba(0, 0, 0, 0.5); */
  /* background-color: var(--main-color); */
  box-shadow: 0 0 10px rgb(198 169 147 / 75%);
  border: 1px solid var(--line-color) !important;
}

.medical_img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  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;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 380px;
  /* background: url(../images/medical_item_bg.png) no-repeat center / cover; */
  background: linear-gradient(315deg, rgb(255 255 255 / 60%), rgb(255 255 255 / 70%), rgb(255 255 255 / 70%), rgb(255 255 255 / 70%)), url(../images/medical_item_bg.png) no-repeat center / cover, url(../images/medical_icon02_bg.jpg) no-repeat center / cover;
  border: 1px solid var(--line-color);
  padding: 45px 20px 30px;
  /* background: rgba(0, 0, 0, 0.3); */
  text-align: center;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
  transition: 0.4s ease-in;
}

.medical_inner::before {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: block;
  width: 20px;
  height: 20px;
  /* background: rgb(255, 255, 255 , 0.8); */
  background: rgb(198 169 147 / 30%);
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
  transition: background 0.4s , width 0.4s , height 0.4s;
  z-index: 2;
}

.medical_inner::after {
  position: absolute;
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid #fff;
  top: 4px;
  left: 4px;
}

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

.medical_item:hover .medical_inner::before {
  background: #fff;
  width: 15px;
  height: 15px;
}

.medical_icon {
  position: relative;
  max-width: 150px;
  padding: 15px;
  margin-bottom: 0!important;
  border-radius: 50%;
  z-index: 1;
  /* background: rgb(0, 0, 0, 0.2); */
  background-color: var(--sub-color);
}

.medical_icon::after {
    position: absolute;
    content: "";
    top: 5px;
    left: 5px;
    border-radius: 50%;
    box-sizing: border-box;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid var(--line-color);
}    

.medical_title {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: max-content;
  padding: 10px 20px;
  border-radius: 20px;
  /* background: rgb(0, 0, 0, 0.2); */
}

.medical_title h4 {
  /* color: #fff; */
  color: var(--text-color);
  font-size: 165%;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.08em;
  transition: background 0.2s;
  margin-bottom: 8px;
  /* -moz-text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54);
  -webkit-text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54);
  -ms-text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54);
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54); */
}

.medical_title h4 span {
  font-size: 70%;
}

.medical_title_eng {
  color: #fff;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--font-en);
  -moz-text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54);
  -webkit-text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54);
  -ms-text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54);
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.54);
}

.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;
  font-family: var(--font-jp);
}

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

/*==============================================
  *SP　診療案内
==============================================*/
@media screen and (max-width: 640px) {
  .medical {
    padding: 70px 4%;
  }
	
  .medical .inner {
    padding: 0;
  }
	
  .medical h3:nth-of-type(2) {
	margin-top: 70px;
  }

  .medical_list {
    gap: 10px;
  }

  .medical_item {
    width: calc(50% - 5px);
  }

  .medical_item:hover {
    transform: translateY(-5px);
  }

  .medical_inner {
    min-height: auto;
    padding: 20px 15px;
    outline-offset: -5px;
  }
	
  .medical_inner::before {
    right: 10px;
    bottom: 10px;
    width: 15px;
    height: 15px;
  }

  .medical_icon {
    width: 70%;
  }

  .medical_title {
    min-height: 80px;
	width: auto;
  }

  .medical_title h4 {
    font-size: 110%;
  }

  .medical_title_eng {
    font-size: 11px;
  }
}


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

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

==================================================================================================================================*/
.feature {
  position: relative;
  background: #fff;
  z-index: 0;
}

.feature:before {
  position: absolute;
  top: -160px;
  bottom: 0;
  right: 0;
  width: 1280px;
  height: 85%;
  margin: auto;
  background: url(../images/body_bg.jpg);
  content: "";
  z-index: -2;
  opacity: 0.8;
}

.feature .inner {
  max-width: 1400px;
  padding: 180px 0;
}

.feature .top_title {
  margin-bottom: 90px;
}

.feature .top_title::before {
  content: "FEATURES";
}

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

.feature_item {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.feature_img {
  position: relative;
  width: 700px;
  height: 450px;
  flex-shrink: 0;
  padding-left: 50px;
  margin-top: -50px;
}

.feature_item .feature_img::before {
  position: absolute;
  top: 35px;
  left: -50px;
  content: "";
  width: 100%;
  aspect-ratio: 1 / 0.673;
  background: url(../images/feature_img_bg.jpg) no-repeat center / cover;
  z-index: -1;
  opacity: 0.9;
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);

  height: 100%;
  min-height: 370px;
  margin: 0 0 0 -50px;
  padding: 60px 70px;
  background: #fff;
  box-shadow: 0 0 10px rgb(198 169 147 / 29%);
}

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

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 20px !important;
}

.feature_title h3 {
  position: relative;
  color: var(--text-color);
  font-size: 180%;
  letter-spacing: .1em;
  line-height: 1.55;
  padding: 15px 0 23px;
  /* border-bottom: 1px solid var(--line-color); */
}

.feature_title h3::before {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    bottom: 7px;
    left: 0;
    background: linear-gradient(45deg, var(--main-color) 0%, var(--main-color) 50%, var(--sub-color2) 50%, var(--sub-color2) 100%);
    z-index: 3;
}

.feature_num {
  margin: 0 0 5px !important;
  font-size: 135%;
  line-height: 1.2;
  letter-spacing: .1em;
  margin-bottom: 0 !important;
  color: var(--sub-color);
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.feature_num span {
  font-size: 200%;
  letter-spacing: .1em;
  margin-left: 5px;
}

.feature_item .btn01>* {
  padding: 20px 40px 20px 30px;
  width: 100%;
  color: var(--text-color);
}

.feature_item .btn01>*:hover {
  color: #fff;
}

.btnflex_feature {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 5px;
  margin-top: auto;
}

/* 左右 */
.feature_item:nth-child(even) {
  flex-flow: row-reverse;
}

.feature_item:nth-child(even) .feature_inner {
  margin: 0 -50px 0 0;
}

.feature_item:nth-child(even)::before {
  right: auto;
  left: -30%;
}

.feature_item:nth-child(even) .feature_img {
  padding-left: 0;
  padding-right: 50px;
}

.feature_item:nth-child(even) .feature_img::before {
  left: auto;
  right: -50px;
}

/* ボタン横並び */
.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}

.btnflex_feature .btn01>* {
  width: 100%;
}
/* .feature_inner .btnflex p {
	display: none;
} */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
  }
	
  .feature .inner {
      padding: 70px 20px;
  }

  .feature .top_title {
    margin-bottom: 35px;
  }

  .feature_list {
    gap: 35px;
  }

  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
  }

  .feature_item::before {
    bottom: -20px;
    right: -20px;
    background: url(../images/feature_bg_sp.jpg) no-repeat left top / cover;
  }

  .feature_item:nth-child(even)::before{
    left: -20px;
  }

  .feature_item .feature_img::before {
    top: 50px;
    left: -20%;
  }

  .feature_item:nth-child(even) .feature_img::before {
    right: -20%;
  }

  .feature_item .feature_img::after {
    width: 100%;
    top: -3%;
    left: 2%;
  }

  .feature_item:nth-child(even) .feature_img::after {
    right: 2%;
  }

  .feature_img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 !important;
  }

  .feature_inner {
    width: 100%;
    min-height: auto;
    padding: 30px 30px 40px;
    margin: 0;
    outline-offset: -8px;
  }

  .feature_num {
    font-size: 100%;
    margin-bottom: 3px !important;
  }

  .feature_title {
    margin-bottom: 15px !important;
    min-height: auto;
  }

  .feature_title h3 {
    font-size: 5vw;
    line-height: 1.7;
  }

  .feature_item .btn01 {
    text-align: center;
  }

  /* 左右 */
  .feature_item:nth-child(even) {
    flex-flow: column;
  }

  .feature_item:nth-child(even) .feature_inner {
    margin: 0 auto;
  }

  /* 横並び */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}

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

  *ピックアップ（パターン02） - 追加コンテンツ

==================================================================================================================================*/
.pickup {
  position: relative;
  background: #fff/*url(../images/trouble_bg.jpg) no-repeat top / cover*/;
  z-index: 0;
}

.pickup:before {
  position: absolute;
  top: 190px;
  right: 0;
  left: 0;
  max-width: 1700px;
  height: 70%;
  margin: auto;
  background: url(../images/body_bg.jpg);
  content: "";
  z-index: -2;
}

.pickup .inner {
  width: 100%;
  max-width: 1600px;
  padding: 180px 0 0;
}

.pickup .top_title::before {
	/*   content: "TROUBLE"; */
	content: "SEARCH";
}

.pickup_list {
  position: relative;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 0 40px;
}

.pickup_item {
  position: relative;
  width: 33.33333%;
  padding: 30px 30px 70px;
}

.pickup_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 600px;
  height: auto;
}

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 25px 20px;
  color: #ffffff;
  text-align: center;
  /* background: url(../images/medical_icon_bg.jpg) no-repeat center / cover; 
  background: linear-gradient(315deg, rgb(178 147 144 / 90%), rgb(178 147 144 / 80%), rgb(178 147 144 / 75%), rgb(178 147 144 / 65%)), url(../images/medical_icon02_bg.jpg) no-repeat center / cover;*/
	background: var(--sub-color);
}

.pickup_title::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  display: block;
  width: 30px;
  height: 25px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
/*   background: var(--main-color); */
	background: var(--sub-color);  
}

.pickup_title h2,
.pickup_title h3 {
  background: none;
  font-size: 150%;
}

.pickup_title span {
  font-size: 70%;
}

.pickup_img {
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 0;
  margin-bottom: 30px;
}

.pickup_text {
  margin: 50px 0;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  gap: 6px;
}

.pickup_link .pickup_btn {
  width: 100%;
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 40px 20px 30px;
  border: 1px solid var(--line-color);
  color: var(--text-color);
  font-size: 110%;
  letter-spacing: 0.15em;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-jp);
  margin: auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.pickup_link .pickup_btn a::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  width: 22px;
  height: 22px;
  background: rgb(198 169 147 / 30%);
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
  transition: background 0.4s, width 0.4s, height 0.4s;
}

.pickup_link .pickup_btn a:hover::before {
  background: #fff;
  width: 15px;
  height: 15px;
}
/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
  .pickup .inner {
    padding: 0 20px;
  }

  .pickup .top_title {
    margin: 0;
    padding: 0 20px;
  }

  .pickup .top_title h2 {
    font-size: 140%;
  }

  .pickup_list {
    width: calc(100%);
    padding: 0;
  }	
	
  .pickup_list::before {
    display: none;
  }

  .pickup_item {
    width: 100%;
    padding: 50px 20px 10px!important;
  }

  .pickup_title {
    padding: 10px;
    font-size: 110%;
  }

  .pickup_title::before {
    bottom: -20px;
    width: 25px;
    height: 20px;
  }

  .pickup_inner {
    max-width: none;
    min-height: auto;
    margin: 0!important;
  }

  .pickup_link {
    min-height: auto;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }
	
  .pickup_link .pickup_btn a {
    min-height: auto;
    padding: 7px 40px;
    font-size: 15px;
  }
}

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

  *病状、症状から探す

==================================================================================================================================*/
.search {
  position: relative;
  background: #fff;
  z-index: 0;
}

.search .inner {
  max-width: 1500px;
  padding: 220px 40px 100px;
}

.search .top_title::before {
  content: "SEARCH";
}

/* .search .tab_wrap {
  border: solid 1px var(--line-color);
} */


.search .tab_list {
  gap: 0 3px;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: solid 1px var(--line-color);
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  height: fit-content;
}

.search_list li {
	/* 	width: calc((100% / 3) - (40px / 3)); */
	width: calc((100% / 4) - (60px / 4));
	height: auto;
}
.search .tab_list li:not(last-of-type) {
	border-right: solid 1px #fff;
}
/* .search .tab_list li.tab1,
.search .tab_list li.tab2 {
border-right: solid 1px #fff;
} */

/* リンク */
.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: 26px 45px 26px 30px;
  background: #f7f7f7;
  color: var(--text-color);
  font-family: var(--font-jp);
  border: solid 1px var(--line-color);
  font-size: 17px;
}

/* 矢印 */
.search_list li a::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  width: 22px;
  height: 22px;
  background: rgb(198 169 147 / 30%);;
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
  transition: background 0.4s, width 0.4s, height 0.4s;
}

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

.search_list li a:hover::before {
  width: 15px;
  height: 15px;
  background: #fff;
}

/* ----- 画像あり ----- */
.search .panel_flex.active {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

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

.search_img::after {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid #dcd3b3;
  content: "";
}

.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 .inner {
    padding: 70px 20px;
  }

  .search .tab_list {
    flex-flow: column;
    gap: 7px;
  }

  .search .tab {
    width: 100%;
    min-height: auto;
    padding: 15px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: calc(100%);
  }

  .search_list li a {
    min-height: auto;
    padding: 7px 40px;
    font-size: 15px;
  }

/* 矢印 */
.search_list li a::before {
  right: 10px;
  bottom: 10px;
  width: 15px;
  height: 15px;
}

  .search .panel {
  }

  /* ----- 画像あり ----- */
  .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 {
  position: relative;
  z-index: 0;
  background: #f7f7f7;
}

.column:before {
  position: absolute;
  top: 190px;
  left: 0;
  right: 0;
  width: 1500px;
  height: 65%;
  margin: auto;
  background: #fff;
  content: "";
  z-index: -2;
}

.column .top_title::before {
  content: "COLUMN";
}

.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
}

.column .column_box {
  width: calc((100% / 4) - (75px / 4));
  background: #fff;
  padding: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.column .column_box dt a {
  display: block;
  padding: 20px 10px;
  margin-bottom: 5px;
  /* background: url(../images/medical_icon_bg.jpg) no-repeat center / cover; */
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  font-weight: 500;
  text-align: center;
  font-family: var(--font-jp);
}

.column .column_box dd {
  padding: 15px;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  /* background: rgb(225, 232, 133, 0.4); */
  background: var(--bg-color);
}

.column .column_box dd:last-child {
  margin-bottom: 0;
}

/*==============================================
  *SP 医療コラム
==============================================*/
@media screen and (max-width: 640px) {
  .column:before {
    top: 90px;
    left: 0;
  }
	
  .column .column_list {
    gap: 22px;
  }

  .column .column_box {
    width: 100%;
  }
}
/*==================================================================================================================================

  *無限スライダー

==================================================================================================================================*/
.infinitySlider {
  background: #fff;
}

#infinitySlider {
  padding: 0 0 80px;
}

#infinitySlider .splide__list {
  gap: 40px;
}

#infinitySlider .splide__slide {
  width: 300px !important;
}

/*==============================================
  *SP 無限スライダー
==============================================*/
@media screen and (max-width: 640px) {

  #infinitySlider {
    padding: 50px 0;
  }

  #infinitySlider .splide__slide {
    width: 130px !important;
  }
}