@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
--------------------- */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
}

section .inner {
  padding: 120px 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: 70px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title::before {
  display: block;
  content: "";
  background: url(../images/front/logo_h2.png) top left / cover no-repeat;
    width: 65px;
    height: 62px;
  margin-bottom: 15px;
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-size: 240%;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 150%;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title::before {
    width: 50px;
    height: 47px;
    margin-bottom: 5px;
  }
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
  }
  .top_title .eng {
    font-size: 18px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 2;
  height: 750px;
  overflow: hidden;
}

.mvSlider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;

}
.mvSlider::before {
  position: absolute;
    content: "";
    width: 218px;
    height: 222px;
    background: url(../images/front/leaf_img01.png) top left / contain no-repeat;
    top: 85px;
    left: 228px;
    z-index: 1;
}
/* ----- スライダーの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#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: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  position: relative;
  width: 100%;
  max-width: calc(100% - 400px);
  margin-left: 300px;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.mvImg::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/front/marukado.svg) bottom left / cover no-repeat;
  left: 0;
  bottom: 215px;
  z-index: 1;
}

.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 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 {
  display: flex;
  align-items: center;
  position: absolute !important;
  top: 45px;
  left: 0;
  z-index: 3;
  width: 300px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.mvCatch .splide__track {
  overflow: visible;
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.mvCatch p {
  position: relative;
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}
.mvCatch p::before {
  position: absolute;
  content: "";
  bottom: -87px;
  left: -18px;
  width: 114px;
  height: 74px;
  background: url(../images/front/bird_img01.png) top left / contain no-repeat;
  z-index: -1;
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  padding: 0 50px;
}
.mvContents .splide__track {
  width: 100%;
  height: 100%;
}
/* ----- MVバナー ----- */
.mv_info {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
    padding: 45px 50px 0 70px;
    background: #fff;
    border-radius: 0 30px 0 0;
}
.mv_info::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/front/marukado.svg) bottom left / cover no-repeat;
  right: -30px;
  bottom: 0;
}
.mv_info_item {
  position: relative;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: 170px;
  height: 170px;
  padding: 0 10px 30px;
  background: url(../images/front/mv_info_bg01.png) center / contain no-repeat;
  color: #fff;
  text-align: center;
  line-height: 1.5;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    transition: bottom 0.2s;
}
.mv_info_item:nth-child(1) {
  padding: 20px 10px 27px;
}
.mv_info_item:nth-child(2) {
  background: url(../images/front/mv_info_bg02.png) center / contain no-repeat;
}
.mv_info_item:nth-child(3) {
  background: url(../images/front/mv_info_bg03.png) center / contain no-repeat;
}
.mv_info_item::before {
  display: block;
  content: "";
  background: url(../images/front/mv_info_icon01.png) top left / cover no-repeat;
  width: 40px;
  height: 40px;
}
.mv_info_item:nth-child(2)::before {
  background: url(../images/front/mv_info_icon02.png) top left / cover no-repeat;
}
.mv_info_item:nth-child(3)::before {
  background: url(../images/front/mv_info_icon03.png) top left / cover no-repeat;
}

a.mv_info_item:hover {
  color: #fff;
  bottom: 7px;
}
.mv_info_item span {
  font-size: 120%;
}
a.mv_info_item::after {
  position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\f061";
    position: absolute;
    bottom: 20px;
    width: 20px;
    height: 20px;
    background: #fff;
    color: var(--main-color);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    transition: right 0.2s;
}
/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  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: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 90%;
  text-align: center;
}

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

/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 500px;
    padding: 0 20px;
  }
  .mvImg {
    max-width: 100%;
    margin-left: 0;
  }
  .mvImg::before {
    content: none;
  }
  .mvSlider::before {
    width: 100px;
    height: 126px;
    top: 56px;
    left: -22px;
    z-index: 4;
  }
  /* ----- スライダーのArrowボタン ----- */
  .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;
  }
  /* ----- キャッチコピー ----- */
  .mvCatch {
    position: relative;
    top: auto;
    bottom: 20px;
    display: none;
    width: auto;
    transform: none;
    background: #fff;
    bottom: 0;
    border-radius: 0 20px 0 0;
  }
    .mvCatch::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/front/marukado.svg) bottom left / cover no-repeat;
    top: -20px;
    left: 0;
}
  .mvCatch::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/front/marukado.svg) bottom left / cover no-repeat;
    right: -20px;
    bottom: 0;
}
  .mvCatch .inner {
    padding: 25px 20px 75px 0;
  }
  .mvCatch.is-active {
    display: block;
  }
  .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);
  }
  .mvCatch p::before {
    bottom: -58px;
    left: 2px;
    width: 76px;
    height: 49px;
  }
  h1 {
    position: relative;
    background: none;
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    position: relative;
    display: block;
    background: none !important;
    z-index: 2;
  }
  .sp_only .inner {
    padding: 0 20px;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  
  }
  /* ----- MVバナー ----- */
.mv_info {
  position: static;
  flex-wrap: wrap;
  justify-content: center;
  background: none;
  padding: 0;
  gap: 0 10px;
}
.mv_info::before {
  content: none;
}
.mv_info_item {

  width: calc(50% - 5px);
}
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
}
.clinic::before {
  position: absolute;
  content: "";
  width: 750px;
  height: 891px;
  background: url(../images/front/bg_mv_img03.png) top left / contain no-repeat;
  top: -650px;
  right: 0;
  z-index: -2;
}

/* ----- お知らせ ----- */

.clinic .news {
    position: relative;
    z-index: 1;
    padding: 50px;
}
.clinic .news::before {
  position: absolute;
  content: "";
  width: 387px;
  height: 332px;
  background: url(../images/front/leaf_img02.png) top right / contain no-repeat;
    top: 40px;
    right: 0;
}


.clinic .news .inner {
position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    gap: 35px;
    max-width: 1300px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
}

.clinic .news .news_left {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.clinic .news .top_title {
  display: flex;
  flex-flow: wrap;
  align-items: flex-end;
  margin: 0;
  gap: 15px;
}
.clinic .news .top_title::before {
  margin-bottom: 0;
      width: 53px;
    height: 50px;
}
.clinic .news .top_title .eng {
  line-height: 1.3;
  margin-bottom: 3px;
}
.clinic .news .btn01 {
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
}
.clinic .info::before {
  position: absolute;
    content: "";
    width: 292px;
    height: 399px;
    background: url(../images/front/leaf_img03.png) top left / contain no-repeat;
    top: -230px;
    left: 0;
}
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 0 0 100px;
}

.clinic .info .inner>* {
  width: calc(50% - 20px);
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}

.clinic .info .office_hour .title {
  background: #ffffff;
}

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
}

.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: var(--sub-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}

.clinic .info address .location {
  padding: 5px 0 5px 50px;
}

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

.clinic .info address .location .zipcode {
  margin-right: 10px;
  display: block;
}

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-size: 30px;
  line-height: 1;
}
.clinic .info address .tel a {
  color: var(--sub-color03);
}
.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;
  color: var(--sub-color03);
}

.clinic .info address .fax::before {
  content: "\f249";
}

.clinic .info .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 .googlemap iframe {
  height: 420px;
  border-radius: 20px;
}

.clinic .info .list_access {
  margin-top: 5px;
}

.clinic .info .calendar_text {
  margin-top: 20px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.clinic::before {
  width: 350px;
}
  /* ----- お知らせ ----- */
  .clinic .news {
    padding: 40px 20px;
  }
  .clinic .news::before {
        width: 50%;
        height: 300px;
        top: -42px;
  }
  .clinic .news .inner {
    flex-flow: column;
    gap: 20px;
    padding: 40px 20px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info::before {
    width: 40%;
    height: 350px;
    top: -152px;
  }
  .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%;
  }
  .clinic .info .note {
    padding-left: 0;
  }
  .clinic .info .googlemap iframe {
    height: 250px;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  background:
  url(../images/front/bg_nami_w.svg) top center / 100% no-repeat,
  url(../images/front/suisai.png) bottom left / 500px,
  var(--bg-color02);
}
.greeting::before {
    position: absolute;
    content: "";
    width: 247px;
    height: 672px;
    background: url(../images/front/ring_img02.png) top left / contain no-repeat;
    top: -450px;
    right: -35px;
}
.greeting::after {
    position: absolute;
    content: "";
    width: 218px;
    height: 222px;
    background: url(../images/front/leaf_img01.png) top left / contain no-repeat;
    top: -60px;
    left: 50px;
}
.greeting .inner {
  padding: 150px 0 120px;
}

.greeting_box {
  position: relative;
  z-index: 1;
}
.greeting_box::before {
    position: absolute;
    content: "";
    top: 135px;
    right: -18px;
    width: 114px;
    height: 74px;
    background: url(../images/front/bird_img01.png) top left / cover no-repeat;
    z-index: -1;
}
.greeting_flex {
  display: flex;
  gap: 85px;
}

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

.greeting_left {
  flex-shrink: 0;
  width: 60%;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.greeting_img {
  position: relative;
}
.greeting_img::before {
  position: absolute;
  content: "";
  background: url(../images/front/leaf_img04.png) bottom right / contain no-repeat;
    width: 232px;
    height: 253px;
    right: -55px;
    bottom: 0;
}
.greeting_img::after {
  position: absolute;
  content: "";
  background: url(../images/front/leaf_img05.png) top left / contain no-repeat;
    width: 139px;
    height: 199px;
    top: -10px;
    left: -35px;
    z-index: -1;
    opacity: 0.7;
}
.greeting_catch {
  font-size: 170%;
  margin-bottom: 40px;
  color: #775426;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.greeting_text > p {
  position: relative;
  line-height: 3em;
  background: url(../images/front/line_img01.svg) top left / 6px repeat-x;
}
.greeting_text > p::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/front/line_img01.svg) top left / 6px 3em;
    padding-bottom: 1px;
    top: 22px;
    z-index: -1;
}

.greeting_text > *:not(:last-child) {
  margin-bottom: 3em;
}
.greeting_img img {
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0px 6px 6px -6px rgba(165, 200, 84, 0.3);
}

.greeting_profile {
  padding: 20px 0 0;
  line-height: 1.5;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.greeting_profile .position {
  font-size: 130%;
}
.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
  font-size: 70%;
}
.greeting_profile .name .position {
  padding-right: 10px;
}

.greeting_btn {
  margin-top: 50px;
}
.greeting_under_wrap {
  position: relative;
    display: flex;
    padding: 0 100px;
    gap: 50px;
    z-index: 1;
}
.greeting_under_wrap::before {
  position: absolute;
  content: "";
  background: url(../images/front/ring_img01.png) top left / contain no-repeat;
  width: 200px;
  height: 415px;
  left: 0;
  top: -200px;
  z-index: -1;
}
.greeting_under_wrap img {
  border-radius: 30px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before {
   width: 22%;
  height: 400px;
  top: -125px;
  }
  .greeting::after {
    width: 100px;
    height: 100px;
    top: -20px;
    left: 20px;
  }
  .greeting .inner {
    position: relative;
    padding: 70px 20px;
    z-index: 2;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_box::before {
    top: 151px;
    right: 21px;
    width: 65px;
    height: 43px  
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_img {
    width: 80%;
    margin: 0 auto;
  }
  .greeting_img::before {
    width: 136px;
    height: 149px;
    right: -29px;
  }
  .greeting_img::after {
    width: 100px;
    height: 148px;
    left: -25px;
  }
.greeting_profile {
  font-size: 90%;
}
.greeting_catch {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.greeting_text > p {
  line-height: 2em;
}
.greeting_text > p::before {
  background-size: 6px 2em;
  top: 15px;
}
  .greeting_btn {
    margin-top: 40px;
    text-align: right;
  }
  .greeting_under_wrap {
    padding: 0 20px;
    gap: 10px;
  }
  .greeting_under_wrap::before {
    width: 20%;
    top: -100px;
  }
  .greeting_under_wrap img {
    border-radius: 15px;
}
}
/* ==================================================================================================================================

  *診療案内（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  background:
  url(../images/front/ring_img01.png) bottom 100px left / 200px no-repeat,
  url(../images/front/bg_nami_w.svg) top center / 100% no-repeat,
  url(../images/front/suisai_img02.png) top -350px left -500px / 1000px no-repeat,
  url(../images/front/suisai_img01.png) bottom -400px right -500px / 1000px no-repeat,
  url(../images/front/suisai.png) bottom left / 500px, var(--bg-color02);
}
.medical::before {
    position: absolute;
    content: "";
    width: 218px;
    height: 222px;
    background: url(../images/front/leaf_img01.png) top left / contain no-repeat;
    top: -42px;
    left: 50px;
}
.medical::after {
    position: absolute;
    content: "";
    width: 247px;
    height: 672px;
    background: url(../images/front/ring_img02.png) top left / contain no-repeat;
    top: -115px;
    right: 0;
}
.medical .inner {
  padding: 150px 0 120px;
}
.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
}
.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 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 10px 10px -10px rgba(165, 200, 84, 0.5);
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_icon {
  width: 70%;
  max-width: 100px;
  margin: 0 auto 15px !important;
}

.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
}

.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);
}
.medical_item:nth-child(1) .medical_icon,
.medical_item:nth-child(3) .medical_icon,
.medical_item:nth-child(6) .medical_icon,
.medical_item:nth-child(8) .medical_icon {
  background: url(../images/front/med_icon_bg01.png) center / contain no-repeat;
}
.medical_item:nth-child(2) .medical_icon,
.medical_item:nth-child(4) .medical_icon,
.medical_item:nth-child(5) .medical_icon,
.medical_item:nth-child(7) .medical_icon {
  background: url(../images/front/med_icon_bg02.png) center / contain no-repeat;
}
/* ----- 先頭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%;
} */

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.medical {
  background:
  url(../images/front/ring_img01.png) bottom 100px left / 100px no-repeat,
  url(../images/front/bg_nami_w.svg) top center / 100% no-repeat,
  url(../images/front/suisai_img02.png) top -120px left -308px / 500px no-repeat,
  url(../images/front/suisai_img01.png) bottom -200px right -200px / 500px no-repeat,
  url(../images/front/suisai.png) bottom left / 500px, var(--bg-color02)
}
.medical::before {
  width: 100px;
  height: 100px;
  left: 20px;
}
.medical::after {
  width: 22%;
}
.medical .inner {
  padding: 70px 20px;
}
  .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: 50%;
  }
  .medical_title h3 {
    font-size: 110%;
    line-height: 1.5;
  }
  .medical_title_eng {
    font-size: 8px;
  }
  .medical_item:nth-child(1) .medical_icon,
  .medical_item:nth-child(4) .medical_icon,
  .medical_item:nth-child(5) .medical_icon,
  .medical_item:nth-child(8) .medical_icon {
background: url(../images/front/med_icon_bg01.png) center / contain no-repeat;    
  }
  .medical_item:nth-child(2) .medical_icon,
  .medical_item:nth-child(3) .medical_icon,
  .medical_item:nth-child(6) .medical_icon,
  .medical_item:nth-child(7) .medical_icon {
background: url(../images/front/med_icon_bg02.png) center / contain no-repeat;    
  }
  /* ----- 先頭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）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  background:
    url(../images/front/suisai.png) top left / 500px,
  var(--bg-color02);
  z-index: 1;
}
.feature::before {
    position: absolute;
    content: "";
    width: 387px;
    height: 332px;
    background: url(../images/front/leaf_img02.png) top right / contain no-repeat;
    top: -80px;
    right: 0;
}

.feature .inner {
  max-width: 1600px;
  padding: 120px 50px;
}
.feature .inner::before {
    position: absolute;
    content: "";
    width: 218px;
    height: 222px;
    background: url(../images/front/leaf_img01.png) top left / contain no-repeat;
    top: -42px;
    left: 50px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.feature_item {
  position: relative;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
}

.feature_num {
  position: absolute;
  top: -30px;
  left: -10px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  min-height: 100px;
  margin: 0 0 0 !important;
  background: url(../images/front/fukidashi_img.png) center / cover no-repeat;
  color: #fff;
  font-size: 100%;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}
.feature_num span {
  font-size: 200%;
}

.feature_img img {
  border-radius: 20px;
  border: 8px solid #fff;
  box-shadow: 0px 6px 6px -6px rgba(165, 200, 84, 0.3);
}
.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 0 20px 30px;
}

.feature_title {
display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 110px;
    margin-top: -30px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 6px 6px -6px rgba(165, 200, 84, 0.3);
}
.feature_title h3 {
  font-size: 130%;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #645749;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.feature_title h3 span {
  color: #2bb370;
}
.feature_text.text {
  line-height: 1.9;
}
.feature_button {
  display: flex;
  /* flex-flow: column; */
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}
.feature_button .btn01 {
  text-align: center;
}
.feature_button .btn01 a {
    background: none;
    border: none;
    padding: 10px 15px 10px 50px;
    color: var(--text-color);
    border-bottom: 1px dashed var(--sub-color03);
    border-radius: 0;
}
.feature_button .btn01 a::before {
  content: none;
}
.feature_button .btn01 a::after {
  background: var(--sub-color);
  left: 5px;
  color: #fff;
  transition: left 0.2s, background 0.2s;
}
.feature_button .btn01 a:hover::after {
  left: 8px;
  background: var(--sub-color02);
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature::before {
    width: 40%;
    top: -30px;
  }
  .feature .inner {
    padding: 70px 20px;
  }
  .feature .inner::before {
    width: 100px;
    height: 100px;
    left: 20px;
    top: -25px;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
  }
  .feature_num {
    width: 80px;
    min-height: 80px;
    font-size: 80%;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
    padding: 20px 10px;
  }
  .feature_title h3 {
    font-size: 17px;
	  font-size: 15px;
  }
  .feature_button {
    padding-top: 5px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}
.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}
.column .column_box {
  width: calc(25% - 18.75px);
}
.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}
.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .column .column_list {
    gap: 40px;
  }
  .column .column_box {
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
.body-parts {
  position: relative;
  z-index: 1;
}
.body-parts::before {
    position: absolute;
    content: "";
    width: 387px;
    height: 332px;
    background: url(../images/front/leaf_img02.png) top right / contain no-repeat;
    top: -100px;
    left: 0;
    transform: scaleX(-1);
}
.body-parts::after {
    position: absolute;
    content: "";
    width: 292px;
    height: 399px;
    background: url(../images/front/leaf_img03.png) top left / contain no-repeat;
    top: -50px;
    right: 0;
    transform: scaleX(-1);
}
.body-parts .inner::before {
  position: absolute;
  content: "";
  width: 100%;
  min-width: 900px;
  height: 600px;
  background: url(../images/front/search_bg_img.png) center / 100% no-repeat;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.7;
}

.body-parts_wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  /* background: rgba(217,71,71,1);
  background: rgb(217, 117, 71);
  background: rgb(139, 217, 71); */
}

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

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

/* ----- 各部位の位置 ----- */
#body-parts1 {
    top: 84px;
    left: 152px;
}

#body-parts1 .body_parts_title::before {
  top: 60%;
  right: -140px;
  width: 130px;
}

#body-parts2 {
  top: 60px;
  right: 162px;
}

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

#body-parts3 {
  top: 246px;
  left: 124px;
}

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

#body-parts4 {
  top: 240px;
  right: 100px;
}

#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: -38%;
    right: -219px;
    width: 217px;
    transform: rotate(-22deg);
}

#body-parts6 {
    top: 416px;
    right: 115px;
}

#body-parts6 .body_parts_title::before {
  top: 61%;
    left: -214px;
    width: 200px;
    transform: rotate(-6deg);
}

#body-parts7 {
    top: 568px;
    left: 160px;
}

#body-parts7 .body_parts_title::before {
  top: 70%;
  right: -175px;
  width: 160px;
  transform: rotate(10deg);
}

#body-parts8 {
  top: 520px;
  right: 150px;
}

#body-parts8 .body_parts_title::before {
  top: -10%;
  left: -190px;
  width: 190px;
  transform: rotate(30deg);
}

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

.body_parts_title:hover {
  background: var(--sub-color02);
  color: #fff;
}

.body_parts_title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background: #867860;
}

/* -----　部位ごとの病状・病名　----- */
.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%;
}

/* ==============================================
  *SP　お悩みの部位から探す（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  .body-parts::before {
    width: 37%;
    top: -45px;
  }
  .body-parts::after {
    width: 30%;
    top: -18px;
  }
  .body-parts .inner {
    flex-flow: column;
    gap: 0;
  }
.body-parts .inner::before {
  min-width: 100%;
}
  .body-parts_wrap {
    max-width: 450px;
  }

  .body-parts_img {
    width: 55%;
  }

  /* ----- 各部位の共通設定 ----- */
  .body_parts_list>li {
    padding: 8px;
  }

  /* ----- 各部位の位置 ----- */
  #body-parts1 {
    top: 0;
    left: 0;
  }

  #body-parts2 {
    top: 0;
    right: 0;
  }

  #body-parts3 {
    top: 25%;
    left: 0;
  }

  #body-parts4 {
    top: 25%;
    right: 0;
  }

  #body-parts5 {
    top: 50%;
    left: 0;
  }

  #body-parts6 {
    top: 50%;
    right: 0;
  }

  #body-parts7 {
    top: 75%;
    left: 0;
  }

  #body-parts8 {
    top: 75%;
    right: 0;
  }

  /* ----- 各部位のタイトル ----- */
  .body_parts_title {
    padding: 10px 15px;
    font-size: 90%;
  }

  .body_parts_title::before {
    display: none;
  }

  /* -----　部位ごとの病状・病名　----- */
  .body-parts_search {
    display: none;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 30px 0;
}
#infinitySlider .splide__list {
  gap: 30px;
}
#infinitySlider .splide__slide {
  width: 450px !important;
}
#infinitySlider .splide__slide img {
  border-radius: 30px;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}