@charset "UTF-8";

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

  *基本設定

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

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

.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 {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 20px;

  /* 左寄せ */
}

.top_title::before {
    content: "";
    display: block;
    background: url(../images/logo_mark.svg) top left / cover no-repeat;
    width: 66px;
    height: 67px;
    margin-bottom: 10px;
}
/* .top_title::after {
    position: absolute;
    content: "";
    mask: url(../images/bg_shape02.png) top left / cover no-repeat;
    -webkit-mask: url(../images/bg_shape02.png) top left / cover no-repeat;
    background: #fffcf0;
    width: 240px;
    height: 217px;
    top: 6px;
    z-index: -1;
} */
.top_title.title_left {
  text-align: start;
}

.top_title h2 {
  font-size: 170%;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}

.top_title .eng {
  display: inline-block;
  padding-bottom: 18px;
      margin-top: -8px;
  color: var(--main-color);
  font-size: 450%;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1;
  background: linear-gradient(#4db4bb 40%, #92d387);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 10px;
  }

  .top_title h2 {
    margin: 5px 0 0;
    font-size: 18px;
  }

  .top_title .eng {
    font-size: 45px;
    padding-bottom: 5px;
  }
  .top_title::before {
    width: 45px;
    height: 46px;
  }
}

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

  *メインビジュアル

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

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0 30px;
}

/* ----- スライダーの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: "\f053";
}

.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f054";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
  border-radius: 100px 100px 5px 5px;
  overflow: hidden;
}

.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: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  position: relative;
  font-size: 170%;
  color: #656565;
  width: fit-content;
  margin: 0 auto;
  padding-top: 12px;
  font-family: var(--jp-font);
  text-align: center;
  font-weight: 500;
  font-style: normal;
  /* filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff); */
  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;
  letter-spacing: 0.12em;
}
.mvCatch p::before {
    position: absolute;
    content: "";
    background: url(../images/jasmine_img01.png) top left / cover no-repeat;
    width: 150px;
    height: 124px;
    top: 0;
    left: -58px;
    z-index: -1;
    opacity: 0.9;
}
.mvCatch p > span {
    font-size: 150%;
    color: #26b6b8;
}
/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

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

.open_bnr {
  position: absolute;
  right: 0;
  bottom: 80px;
  display: inline-block;
  padding: 3px;
  background: url(../images/open_bg.png) center / cover no-repeat;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

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

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

.open_bnr .nairankai_tit {
  display: block;
  width: 75%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
/*   color: var(--text-color02); */
  color: #7d643e;
  border-radius: 300px;
  font-size: 90%;
  text-align: center;
}

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

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

/* MVバナー */
.mv_info_wrap {
    position: absolute;
    bottom: 80px;
    display: flex;
    gap: 15px;
}
.mv_info > * {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 8px 20px 20px;
    width: 190px;
    height: 190px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    text-align: center;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    border: 2px solid #bae6e4;
    line-height: 1.4;
    letter-spacing: 0;
    font-size: 120%;
    transition: 0.2s;
}
.mv_info > a:hover {
    background: var(--bg-color03);
    color: #7d643e;
    border: 2px solid var(--sub-color);
}
.mv_info > * span {
    font-size: 70%;
    line-height: 1.2;
}
.mv_info > * img {
    width: 100px;
}
.mv_info.surgery > * {
    gap: 5px;
}
/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 470px;
  }
.mvSlider {
    padding: 0;
}
.mvImg {
    border-radius: 0;
}
.mvImg .splide__slide img {
    border-radius: 0;
}
  /* ----- スライダーの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 {
    top: auto;
    top: 230px;
    display: none;
  }

  .mvCatch.is-active {
    display: block;
  }

  .mvCatch p {
    font-size: /*70%*/95%;
    padding: 12px 0 0 0/* 30px*/;
    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;
  } */
.mvCatch p::before {
    width: 76px;
    height: 50px;
    top: 0;
    left: 0;
}
  .mvContents .mv_info_wrap {
    display: none;
  }
  .sp_only {
    display: block;
    background: none !important;
    padding-bottom: 25px;
  }

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

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .sp_only_contents .open_bnr {
    display: none;
  }
  .open_bnr {
        position: absolute;
        max-width: fit-content;
        bottom: 20px;
        left: auto;
        right: 20px;
        font-size: 9px;
  }

  .open_bnr > * {
        width: 150px;
        height: 150px;
    padding: 15px 20px;
  }
.open_bnr .open_text {
    margin: 0 0 4px;
}
.open_bnr .nairankai_tit {
    margin: 0 0 4px;
    padding: 0 10px;
}
.mv_info_wrap {
    width: 100%;
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.mv_info {
    width: calc(100% / 3 - 4px);
    height: auto;
    aspect-ratio: 1 / 1;
}
.mv_info > * {
    width: 100%;
    height: 100%;
    font-size: 11px;
    padding: 12px 10px 20px;
}
.mv_info > * img {
    width: 55px;
}
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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;
}

/* スライダーのArrowボタン */
#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);
}

/* ==============================================
  *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;
  }

  /* スライダーのArrowボタン */
  #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;
  }
}

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

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

==================================================================================================================================*/
.clinic {
  position: relative;
  z-index: 1;
}
.clinic::after {
    position: absolute;
    content: "";
    mask: url(../images/bg_nami.svg) top left / 100% no-repeat;
    -webkit-mask: url(../images/bg_nami.svg) top left / 100% no-repeat;
    background: url(../images/suisai.png) top left,
    var(--bg-color02);
    width: 100%;
    height: 100px;
    bottom: -100px;
}
/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news::before {
    position: absolute;
    content: "";
    background: url(../images/leaf02.png) top left / cover no-repeat;
    width: 480px;
    height: 300px;
    top: -70px;
    left: -70px;
    opacity: 0.5;
}
.clinic .news::after {
    position: absolute;
    content: "";
    background: url(../images/leaf02.png) top left / cover no-repeat;
    width: 480px;
    height: 300px;
    top: -70px;
    right: -70px;
    opacity: 0.5;
    transform: scaleX(-1);
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 80px 50px;
}

.clinic .news .news_left {
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 350px;
  height: 350px;
  background: url(../images/midashi_bg01.png) top left / cover no-repeat;
}

.clinic .news .top_title {
  margin: 0;
  padding: 0;
}
.clinic .news .top_title::before,
.clinic .news .top_title::after {
    content: none;
}
.clinic .news .top_title .eng {
    font-size: 350%;
    -webkit-text-fill-color: #fff;
}
.clinic .news .top_title h2 {
      font-size: 135%;
      color: #fff;
}
.clinic .news .btn01 {
  margin-top: 0;
  text-align: center;
}
.clinic .news .btn01 > a {
    background: #fff;
    color: var(--text-color02);
    border: 1px solid #fff;
    padding: 5px 40px 5px 30px;
    font-family: var(--en-font);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.12em;
    line-height: 1.5;
    font-size: 80%;
    min-width: 170px;
}
.clinic .news .btn01 > a::after {
    color: var(--text-color02);
    background: #dbf2dc;
    width: 18px;
    height: 18px;
}
/* ----- 医院概要 ----- */
.clinic .info {
    position: relative;
    background: 
    url(../images/bg_nami02.svg) top left / 250px repeat-x,
    url(../images/suisai.png) bottom left,
    var(--bg-color02);
    z-index: 1;
}
.clinic .info::before {
    position: absolute;
    content: "";
    background: url(../images/leaf_w_01.png) top left / cover no-repeat;
    width: 250px;
    height: 275px;
    top: 100px;
    left: -35px;
    z-index: -1;
}
.clinic .info::after {
    position: absolute;
    content: "";
    background: url(../images/leaf_w_02.png) top left / cover no-repeat;
    width: 215px;
    height: 250px;
    bottom: 100px;
    right: -25px;
    z-index: -1;
}
.clinic .info .inner {
    position: relative;
  display: flex;
  gap: 50px;
  padding: 120px 50px 80px;
}
.clinic .info .inner::before {
    position: absolute;
    content: "";
    background: url(../images/bird01.png) top left / cover no-repeat;
    width: 122px;
    height: 125px;
    top: -80px;
    right: -55px;
}
.clinic .info .inner > * {
  width: calc(50% - 20px);
  font-family: var(--jp-font);
  font-weight: 500;
  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: var(--main-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;
}

.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;
  color: var(--main-color);
}

.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;
  justify-content: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 10px 20px;
  color: #fff;
  background: var(--sub-color03);
  border-radius: 300px;
}

.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: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

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

@media screen and (max-width: 640px) {
.clinic .info {
    background-size: 100px, auto;
}
.clinic .news::before {
    top: 0;
     width: 247px;
    height: 155px;   
}
.clinic .news::after {
    top: 0;
     width: 247px;
    height: 155px;   
}
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
.clinic .news .news_left  {
    width: 180px;
    height: 180px;
}
.clinic .news .btn01 {
    margin-top: 20px;
}
.clinic .news .btn01 > a {
    border: 1px solid var(--sub-color03);
}
  .clinic .info .inner {
    flex-flow: column;
    padding: 70px 20px;
  }

  .clinic .info .inner > * {
    width: 100%;
  }
.clinic .info .inner::before {
    width: 70px;
    height: 71px;
    top: -27px;
    right: 15px;   
}
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .news .top_title .eng {
    font-size: 38px;
    padding-bottom: 0;
  }
  .clinic .news .top_title h2 {
    font-size: 18px;
  }
  .clinic .info .list_access li {
        flex-flow: nowrap;
        gap: 15px;
    line-height: 1.75;
    width: 100%;
  }
  .list_access li span.big {
    line-height: 1.5;
  }
  
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
    padding: 0 80px;
    background:
    url(../images/leaf03_l.png) top left / 700px no-repeat,
    url(../images/leaf03_r.png) top right / 800px no-repeat;
}
.greeting::after {
    position: absolute;
    content: "";
    mask: url(../images/bg_nami03.svg) bottom left / 150px repeat-x;
    background: url(../images/suisai02.png) bottom left, var(--sub-color03);
    width: 100%;
    height: 420px;
    bottom: 0;
    left: 0;
}
.greeting .inner {
    position: relative;
    padding: 170px 0 120px;
    z-index: 1;
}
.greeting .inner::before {
    position: absolute;
    content: "";
    background: url(../images/tree_img01.png) top left / cover no-repeat;
    width: 320px;
    height: 158px;
    left: -303px;
    bottom: 384px;
    z-index: 1;
    opacity: 0.6;
}
.greeting .inner::after {
    position: absolute;
    content: "";
    background: url(../images/tree_img01.png) top left / cover no-repeat;
    width: 320px;
    height: 158px;
    right: -303px;
    bottom: 384px;
    opacity: 0.6;
    transform: scaleX(-1);
}
.greeting_box {
  position: relative;
  z-index: 1;
}
.greeting_box::before {
    position: absolute;
    content: "";
    background: url(../images/bird02.png) top left / cover no-repeat;
    width: 128px;
    height: 135px;
    top: 0;
    left: 170px;
}
.greeting_flex {
  display: flex;
    gap: 70px;
    background: #fff;
    padding: 0 50px 80px;
    border-radius: 30px;
}

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

.greeting_left {
  flex-shrink: 0;
  width: calc(60% - 70px);
}
.greeting_right {
    width: 40%;
}
.doctor_catch {
    font-size: 150%;
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.12em;
    color: var(--text-color02);
}
.greeting_img {
    position: relative;
    height: fit-content;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.greeting_img::before {
    position: absolute;
    content: "";
    mask: url(../images/doc_img_shape_bg.png) top left / cover no-repeat;
    background: linear-gradient(var(--sub-color02),var(--main-color));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}

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

.greeting_img img {
    mask: url(../images/doc_img_shape.png) top left / cover no-repeat;
    -webkit-mask: url(../images/doc_img_shape.png) top left / cover no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
    font-size: 80%;
    padding-right: 10px;
}
.greeting_btn {
  margin-top: 50px;
  text-align: center;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
.greeting {
    background-size: 300px,300px;
    background-position: top left -50px, top right -50px;
    padding: 0;
}
.greeting .inner {
    padding: 70px 20px;
}
.greeting .inner::before {
    left: -22px;
    bottom: 395px;
    width: 172px;
    height: 85px;
}
.greeting .inner::after {
     width: 172px;
    height: 85px;
    right: -74px;
    bottom: 410px;   
}
.greeting_box::before {
    width: 72px;
    height: 76px;
    top: -48px;
    left: 12px;
}
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
    padding: 0 15px 50px;
  }

  .greeting_left {
    width: 100%;
  }
.greeting_right {
    width: 100%;
}
.greeting_profile .position {
    font-size: 13px;
}
.doctor_catch {
    font-size: 18px;
    padding-top: 20px;
}
  .greeting_btn {
    margin-top: 20px;
  }
}
/*==================================================================================================================================

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

==================================================================================================================================*/
.pickup {
    position: relative;
    background: 
    url(../images/leaf06.png) top 20% left -25px / 285px no-repeat,
    url(../images/leaf07.png) bottom 30% right -25px / 250px no-repeat
}
.pickup::before {
    position: absolute;
    content: "";
    mask: url(../images/bg_arch.svg) top left / 100% no-repeat;
    background: url(../images/suisai02.png) top left, var(--sub-color03);
    width: 100%;
    height: 350px;
    top: -1px;
    left: 0;
}
.pickup .inner {
    position: relative;
  width: 100%;
  padding: 170px 50px 170px;
}
.pickup .inner::before {
    position: absolute;
    content: "";
    background: url(../images/bird03.png) top left / cover no-repeat;
    width: 141px;
    height: 66px;
    top: 260px;
    right: -55px;
}
.pickup .inner::after {
    position: absolute;
    content: "";
    background: url(../images/bird02.png) top left / cover no-repeat;
    width: 128px;
    height: 135px;
    bottom: 400px;
    left: -130px;
}
.pickup .top_title::before,
.pickup .top_title::after {
    content: none;
}
.pickup .top_title {
    margin-bottom: 70px;
}

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

.pickup_item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.pickup_img {
  position: relative;
  z-index: 1;
  height: fit-content;
}
.pickup_img img {
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(39, 124, 109, 0.2);
}
.pickup_inner {
    position: relative;
    flex-shrink: 0;
    width: 58%;
    margin: 0 0 0 -50px;
    padding: 0 50px 70px 100px;
    background: url(../images/suisai.png) bottom left, var(--bg-color02);
    border: 1px solid #daf0ef;
    border-radius: 20px;
}

.pickup_sub_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    font-size: 170%;
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
    width: fit-content;
    background: var(--bg-color03);
    padding: 12px 30px;
    border-radius: 300px;
    margin-bottom: 15px;
}
.pickup_sub_title::before {
    flex-shrink: 0;
    display: block;
    content: "";
    background: url(../images/pickup_icon.png) top left / cover no-repeat;
    width: 85px;
    height: 70px;
    margin-top: -25px;
}
.pickup_sub_title::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: var(--bg-color03);
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.pickup .top_title h2 {
    font-size: 240%;
    color: #6d5f4a;
}
.pickup .top_title h2 > span {
    font-size: 140%;
}
.pickup .top_title h2 > span > span {
    color: #c7c1b8;
}
.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 15px;
  text-align: center;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 170%;
  background: url(../images/dotline_img.svg) bottom left / 10px repeat-x;
  padding: 30px 0;
  line-height: 1.5;
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
}

.pickup_number {
    display: flex;
    align-items: center;
    justify-content: center;
  color: #fff;
  font-family: var(--en-font);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.12em;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(120deg, #82ccaf, #4dbbb5);
    padding: 5px 20px;
    border-radius: 300px;
    min-width: 280px;
    margin-top: -20px;
}

.pickup_text {
  margin: 30px 0;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: auto;
}

.pickup_link .pickup_btn {
  width: calc((100% / 2) - (10px / 2));
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 35px;
  background: #fff;
  color: #7d643e;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
    border-radius: 300px;
}

.pickup_link .pickup_btn a:hover {
  background: var(--bg-color03);
}

.pickup_link .pickup_btn a::before {
font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    background: var(--sub-color);
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
    padding-left: 2px;
}

.pickup_link .pickup_btn a:hover::before {
  right: 12px;
}

/* 偶数 */
.pickup_item:nth-child(even) {
  flex-flow: row-reverse;
}

.pickup_item:nth-child(even) .pickup_inner {
  margin: 0 -50px 0 0;
  padding: 0 100px 70px 50px;
}
.pickup_item:nth-child(even) .pickup_inner::before {
    right: auto;
    left: -8px;
}
/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
.pickup::before {
    top: 0;
}
.pickup .inner {
        padding: 70px 20px;
    }
.pickup .inner::before {
    top: 185px;
    width: 70px;
    height: 32px;
    right: 10px;
}
  .pickup_list {
    width: calc(100%);
    gap: 30px;
  }
.pickup_number {
    min-width: 180px;
}
.pickup .top_title {
    gap: 0;
    margin-bottom: 10px;
}
.pickup .top_title h2 {
    font-size: 20px;
}
.pickup_sub_title {
    padding: 10px 20px;
    gap: 7px;
}
.pickup_sub_title::before {
    width: 50px;
    height: 41px;  
}
.pickup_sub_title {
    font-size: 15px;
}
  .pickup_title h2, .pickup_title h3 {
    font-size: 18px;
    padding: 20px 0 25px;
  }

  .pickup_item {
    flex-flow: column;
    width: 100%;
  }

  .pickup_img {
    width: calc(100% - 20px);
    margin: 0 auto;
  }

  .pickup_inner {
    width: 100%;
    margin: -30px 0 0 0;
    padding: 30px 20px;
  }

  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }

  /* 偶数 */
  .pickup_item:nth-child(even) {
    flex-flow: column;
  }

  .pickup_item:nth-child(even) .pickup_img {
    margin: 0 auto;
  }

  .pickup_item:nth-child(even) .pickup_inner {
    margin: -30px auto 0 0;
    padding: 30px 20px;
  }
}
/* ==================================================================================================================================

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  background: 
  linear-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0.5)),
  url(../images/medical_bg.jpg) top center / cover no-repeat;
}
.medical::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
}
.medical::after {
    position: absolute;
    content: "";
    mask: url(../images/bg_nami04.svg) bottom left / 100% no-repeat;
    -webkit-mask: url(../images/bg_nami04.svg) bottom left / 100% no-repeat;
    background: #fff;
    width: 100%;
    height: 100px;
    bottom: -1px;
    z-index: 1;
}
.medical .inner {
    position: relative;
    padding: 120px 50px 180px;
}
.medical .inner::before {
    position: absolute;
    content: "";
    background: url(../images/bird01.png) top left / cover no-repeat;
    width: 122px;
    height: 125px;
    top: 130px;
    right: 50px;
}
.medical .top_title span {
  color: var(--main-color);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 31px);
  height: auto;
    margin: 0 8px 8px 0;
}

.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: url(../images/suisai02.png) top left, var(--main-color);
  text-align: center;
  border-radius: 20px;
  box-shadow: 8px 8px 0px 0px rgba(77, 187, 170, 0.5);
}

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

.medical_icon {
  width: 70%;
  max-width: 120px;
  margin: 0 auto 15px !important;
  background: #fff;
  border-radius: 50%;
}

.medical_title h3 {
  color: #fff;
  font-size: 120%;
  font-family: var(--jp-font);
  font-weight: 500;
  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;
}

.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(2) .medical_inner,
.medical_item:nth-child(4) .medical_inner,
.medical_item:nth-child(5) .medical_inner,
.medical_item:nth-child(7) .medical_inner {
   background: url(../images/suisai02.png) top left, #82c562; 
   box-shadow: 8px 8px 0px 0px rgba(130, 197, 98, 0.5);
}

/* ----- 先頭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: linear-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0.5)),
  url(../images/medical_bg_sp.jpg) top center / cover no-repeat;
  }

.medical::after {
    bottom: -1px;
} 
.medical .inner {
    padding: 70px 20px;
}
  .medical_list {
    gap: 15px 10px;
  }

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

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

  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }
.medical .inner::before {
    top: 58px;
    right: 27px;
    width: 70px;
    height: 71px;
}
  .medical_icon {
    width: 50%;
  }

  .medical_title h3 {
    font-size: 100%;
    font-size: 15px;
  }

.medical_item:nth-child(odd) .medical_inner {
    box-shadow: 5px 5px 0px 0px rgba(77, 187, 170, 0.5);
    background: url(../images/suisai02.png) top left, var(--main-color);
  }
  .medical_item:nth-child(even) .medical_inner {
    box-shadow: 5px 5px 0px 0px rgba(130, 197, 98, 0.5);
    background: url(../images/suisai02.png) top left, #82c562;
  }

  /* ----- 先頭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/suisai.png) bottom left,
  url(../images/leaf_w_01.png) top 40% left -50px / 250px no-repeat,
  url(../images/leaf_w_02.png) bottom 20% right -20px / 250px no-repeat,
  linear-gradient(var(--bg-color02),var(--bg-color02)) top 260px left no-repeat;
  z-index: 1;
}
.feature::before {
    position: absolute;
    content: "";
    background: url(../images/bg_arch02.svg) top left / 100% no-repeat;
    width: 100%;
    height: 300px;
    top: 260px;
    left: 0;
    z-index: -1;
}
.feature::after {
    position: absolute;
    content: "";
    mask: url(../images/bg_nami02.svg) top left / 250px repeat-x;
    -webkit-mask: url(../images/bg_nami02.svg) top left / 250px repeat-x;
    background: url(../images/suisai.png) top left, var(--bg-color02);
    width: 100%;
    height: 50px;
    bottom: -50px;
}
.feature .inner {
    padding: 0 50px 120px;
}
.feature .inner::before {
    position: absolute;
    content: "";
    background: url(../images/leaf04.png) center left / contain no-repeat;
    max-width: 386px;
    width: 23%;
    height: 600px;
    top: -130px;
    left: -20px;
    z-index: -1;
    opacity: 0.5;
}
.feature .inner::after {
    position: absolute;
    content: "";
    background: url(../images/leaf04.png) center right / contain no-repeat;
    max-width: 386px;
    width: 23%;
    height: 600px;
    top: -130px;
    right: -20px;
    z-index: -1;
    opacity: 0.5;
    transform: scaleX(-1);
}
.feature .top_title {
    margin-bottom: 60px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.feature_item {
  position: relative;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 28px);
  height: auto;
  margin: 58px 8px 8px 0;
}
.feature_item::before {
    position: absolute;
    content: "";
    background: rgba(77, 187, 170, 0.4);
    width: 100%;
    height: 100%;
    border-radius: 25px;
    right: -8px;
    bottom: -8px;
    z-index: -1;
}
.feature_num {
    position: absolute;
    margin: 0 0 0 !important;
    padding: 10px 40px 10px 45px;
    font-size: 120%;
    color: #fff;
    background: linear-gradient(120deg, #82ccaf, #4dbbb5);
    top: -58px;
    border-radius: 0 20px 0 0;
    line-height: 1;
    font-family: var(--en-font);
    font-weight: 500;
    font-style: normal;
    height: 58px;
}
.feature_num span {
    font-size: 170%;
}
.feature_num::before {
    position: absolute;
    content: "";
    background: url(../images/jasmine_img02.png) top left / cover no-repeat;
    width: 45px;
    height: 44px;
    top: -13px;
    left: -17px;
}
.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 20px 30px;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
}

.feature_inner > *:not(:last-child) {
  margin-bottom: 30px;
}
.feature_img img {
    border-radius: 0 20px 0 0;
}
.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 15px !important;
}

.feature_title h3 {
  color: var(--main-color);
  font-size: 120%;
  line-height: 1.6;
  color: var(--text-color);
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}
.feature_title h3 span {
    color: #16b39b;
    font-size: 125%;
}
.feature_item .btn01 {
  margin-top: auto;
  text-align: center;
}
.feature_item .btn01 > a {
    line-height: 1.3;
    padding: 10px 42px 10px 25px;
}
/* ---- 横並びボタン ----- */
.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%;
}

@media screen and (max-width: 640px) {
.feature::after {
    mask-size: 100px;
    -webkit-mask-size: 100px;
}
    .feature .inner {
        padding: 0 20px 70px;
    }
.feature .inner::before,
.feature .inner::after {
   width: 30%;
    height: 200px;
    top: -80px; 
}
  .feature_list {
    gap: 30px;
  }
.feature_item {
    margin: 40px 5px 5px 0;
}
.feature_item::before {
    right: -5px;
    bottom: -5px;
}
  .feature_item {
    width: 100%;
  }

.feature_num {
    font-size: 14px;
    height: 40px;
    padding: 6px 25px 10px 40px;
    top: -40px;
}
.feature_num::before {
    width: 33px;
    height: 33px;
    top: -8px;
    left: -10px;
}
.feature .top_title {
    margin-bottom: 20px;
}
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
  .feature_title h3 {
    font-size: 17px;
  }

  /* ---- 横並びボタン ----- */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  background: #fff;
}
.search::before {
    position: absolute;
    content: "";
    background: url(../images/leaf02.png) top left / contain no-repeat;
    max-width: 600px;
    width: 38%;
    height: 420px;
    top: -115px;
    left: -100px;
    opacity: 0.5;
    z-index: 1;
}
.search::after {
    position: absolute;
    content: "";
    background: url(../images/leaf02.png) top left / contain no-repeat;
    max-width: 600px;
    width: 38%;
    height: 420px;
    top: -115px;
    right: -100px;
    opacity: 0.5;
    z-index: 1;
    transform: scaleX(-1);
}
.search .inner {
    position: relative;
    padding: 100px 50px 120px;
}

.search .inner::before {
    position: absolute;
    content: "";
    background: url(../images/bird02.png) top left / cover no-repeat;
    width: 128px;
    height: 135px;
    top: 25px;
    left: 286px;
    z-index: 1;
}
.tab_wrap {
    background: url(../images/suisai.png) bottom left, var(--bg-color02);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #daf0ef;
}
.search .tab_list {
  gap: 10px;
}

.search .tab_list .tab {
  padding: 15px 20px;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 40px 0 0 0;
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 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: #fff;
  color: var(--text-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  border-radius: 300px;

}
.search_list li a:hover {
    background: var(--bg-color03);
}

.search_list li a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    background: var(--sub-color);
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
    padding-left: 2px;
}

.search_list li a:hover::before {
    right: 12px;
}



.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;
}
.search_img img {
    border-radius: 20px;
}
.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 .inner::before {
    top: 10px;
    left: 30px;
    width: 76px;
    height: 80px;
}
.tab_wrap {
    padding: 40px 20px;
}
  .search .tab_list {
    flex-wrap: wrap;
    flex-flow: wrap;
    gap: 15px 8px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    width: calc(50% - 4px);
    min-height: auto;
    padding: 10px !important;
    font-size: 14px;
    transform: translate(0, 0) !important;
    flex: none;
  }

  .search .panel {
    padding: 0;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

  /* ----- 画像あり ----- */
  .search .panel_flex.active {
    gap: 20px;
    flex-direction: column-reverse;
  }

  .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: 400px !important;
}

.splide__slide img {
    border-radius: 20px;
}

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