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

  *基本設定

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

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

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

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

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

/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-size: 150%;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 500%;
  font-family:  var(--en-font);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  background:linear-gradient(135deg,var(--sub-color02) 23px,var(--main-color) 23px);
	-webkit-background-clip:text;
	-webkit-text-fill-color: transparent;
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 900px;
  overflow: hidden;
  padding: 0 30px;
}
.mainvisual::before {
    position: absolute;
    content: "";
    background: url(../images/front/bg_texture01.png) bottom left / 600px repeat;
    width: 100%;
    height: 300px;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mvSlider::before {
    position: absolute;
    content: "";
    background: linear-gradient(rgba(40, 90, 138, 0),rgba(40, 90, 138, 0.7));
    width: 100%;
    height: 400px;
    left: 0;
    bottom: 0;
    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#sliderBtn_prev {
  left: 20px;
}
.mvSlider .sliderBtn#sliderBtn_next {
  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#sliderBtn_prev span::before {
  content: "\f053";
}
.mvSlider .sliderBtn#sliderBtn_next span::before {
  content: "\f054";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}
.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 {
  position: absolute !important;
  top: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.mvCatch p {
  font-size: 220%;
  color: var(--main-color);
  text-shadow: 0px 0px 5px rgba(255,255,255, 1),0px 0px 5px rgba(255,255,255, 1),0px 0px 5px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1);
}
.mvCatch p span {
    font-size: 120%;
    color: #b99805;
}

/* ----- コンテンツ ----- */
.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: 50px;
    display: inline-block;
    padding: 5px;
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
    border: 1px solid #fff;
}
.open_bnr > * {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 240px;
    padding: 15px 15px 15px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 62, 120, 1);
    font-size: 110%;
    line-height: 1.5;
    text-align: center;
    /* border: 1px solid #fff; */
    z-index: 1;
}
.open_bnr > *::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 120px;
    mask: url(../images/common/pattern02.png) top left / 8px;
    -webkit-mask: url(../images/common/pattern02.png) top left / 8px;
    background: rgba(255,255,255,0.2);
    bottom: 0;
    z-index: -1;
}
.open_bnr .date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 120%;
  letter-spacing: 0.2em;
}
.open_bnr .open_text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  margin: 0;
  font-size: 180%;
  font-family:  var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}
.open_bnr .nairankai_tit {
    display: block;
    width: fit-content;
    margin: 20px 0 10px;
    padding: 2px 40px;
    background: #fff;
    color: var(--main-color);
    font-size: 90%;
    text-align: center;
    letter-spacing: 0.12em;
    border-radius: 300px;
}
/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}
.open_bnr.subcolor > * .nairankai_tit {
  color: var(--sub-color);
}

/* mvバナー */
.mv_bnr_wrap {
    position: absolute;
    left: 0;
    bottom: 50px;
    display: flex;
    gap: 15px;
}
.mv_bnr {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255,255,255,0.8);
    width: 200px;
    height: 200px;
    padding-bottom: 20px;
    color: var(--main-color);
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
    z-index: 1;
    box-shadow: 0px 5px 15px rgb(0, 28, 53, 0.2);
}

.mv_bnr:hover {
    color: var(--main-color);
}
/* .mv_bnr::before {
    position: absolute;
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 1px solid var(--main-color);
    z-index: -1;
} */
.mv_bnr > img {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
}
.mv_bnr_title {
    font-size: 134%;
    line-height: 1.5;
    font-weight: 600;
}
.mv_bnr_title_sub {
    font-size: 14px;
    display: block;
}
.mv_bnr_text {
    font-size: 90%;
}
.mv_bnr_arrow {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 22px;
    transition: 0.2s;
}
.mv_bnr_arrow::before {
    position: absolute;
    content: "";
    background: rgba(218, 184, 112, 0.5);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    right: -10px;
    z-index: -1;
    transition: 0.2s;
}
.mv_bnr:hover .mv_bnr_arrow::before {
    width: 34px;
    height: 34px;
    background: rgba(218, 184, 112, 0.8);
}
.mv_bnr_arrow img {
    width: 50px;
    height: 5px;
    margin-bottom: 0;
}
/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
    padding: 0;
  }
  .mvSlider::before {
    height: 150px;
  }
  h1 {
    background: #fff;
    margin-bottom: 0;
  }
  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 10px;
  }
  .mvSlider .sliderBtn#sliderBtn_prev {
    left: 10px;
  }
  .mvSlider .sliderBtn#sliderBtn_next {
    right: 10px;
  }
  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }
  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 20px;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;

  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    border-radius: 0;
  }
  .open_bnr > *::before {
    height: 80px;
  }
  .open_bnr .date,
  .open_bnr .open_text {
	height: 70px;
  }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    padding: 30px 0 20px;
    background: url(../images/front/bg_texture01.png) bottom left / 600px repeat;
  }
  .sp_only .inner {
    padding: 0 20px;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  .mv_bnr_wrap {
    position: static;
    flex-wrap: wrap;
  }
  .mv_bnr {
    width: calc(50% - 8px);
    height: auto;
    padding: 15px 5px 40px;
    box-shadow: 0px 3px 10px rgb(0, 28, 53, 0.1);
  }
   .mv_bnr:nth-child(3) {
    width: 100%;
   }
   .mv_bnr_title_sub {
    display: inline-block;
    padding-left: 5px;
   }
   .mv_bnr > img {
    margin-bottom: 6px;
   }
}
/* ==================================================================================================================================

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.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 .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_banner .input .banner_slide .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}
.top_banner .input .banner_slide .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 .banner_slide .slide_content {
  font-size: 90%;
}

.top_banner .input a.banner_slide:hover {
  opacity: 0.6;
}

/* ----- グリッドバナー ----- */
.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(--sub-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）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: 
  linear-gradient(rgba(255,255,255,0) 80%,rgba(255,255,255,1)),
  url(../images/front/bg_texture01.png) top left / 600px repeat;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 100px 0;
}
.clinic .news .news_left {
  flex-shrink: 0;
  width: 25%;
}
.clinic .news .top_title {
    position: relative;
  margin: 0 0 30px;
}

.clinic .news .top_title h3 {
    font-size: 150%;
}
.clinic .news .top_title .eng {
    font-size: 400%;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info {
    padding: 0 50px;
}
.clinic .info .inner {
  display: flex;
  gap: 70px;
    padding: 70px 100px 180px;
    background: #fff;
}

.clinic .info .inner > * {
  width: calc(50% - 20px);
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}
.clinic .info .office_hour .title {
  background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
  background: none;
  border: 1px solid var(--main-color);
}
.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: #e2ebf3;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  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;
  letter-spacing: 0.12em;
  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;
  color: var(--main-color);
  letter-spacing: 0.12em;
  font-family:  var(--en-font);
  font-weight: 500;
  font-style: normal;
}
.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: 0;
  background: none;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}
.clinic .info .googlemap iframe {
  height: 350px;
}
.clinic .info .list_access {
  margin-top: 5px;
}
.clinic .info .calendar_text {
  margin-top: 20px;
}
.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}
.clinic_under_img_wrap {
    display: flex;
    gap: 30px;
    padding: 0 50px 0 0;
    margin-top: -100px;
    align-items: flex-end;
}
.clinic_under_img {
    height: 600px;
    background: var(--sub-color);
}
.clinic_under_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.clinic_under_img:first-child {
    width: 70%;
}
.clinic_under_img:nth-child(2) {
    width: 30%;
    height: 530px;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- お知らせ ----- */
  
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
  .clinic .news .news_left {
    width: 100%;
  }
  .clinic .news .top_title .eng {
    font-size: 46px;
  }
  /* ----- 医院概要 ----- */
.clinic .info {
    padding: 0 10px;
  }
  .clinic .info .inner {
    flex-flow: column;
    padding: 50px 20px 130px;
  }
  .clinic .info .inner > * {
    width: 100%;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 0;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info address .location .zipcode {
    display: block;
  }
.clinic_under_img_wrap {
     gap: 10px;
    padding: 0 25px 0 0;  
}
.clinic_under_img {
    height: 180px;
}
.clinic_under_img:nth-child(2) {
    height: 130px;
}
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}
.greeting::after {
    position: absolute;
    content: "";
    background: 
    linear-gradient(rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.4)),
    url(../images/front/bg_img01.jpg) center / cover no-repeat;
    right: 0;
    bottom: 0;
    width: calc(100% - 50px);
    height: calc(100% - 570px);
}
.greeting .inner {
    max-width: 1500px;
    padding: 170px 50px 200px;
}
.greeting .top_title {
    position: relative;
    padding: 0 120px 0 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: start;    
}
.greeting .top_title::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    background: url(../images/front/clinic_circle_img.png) top left / cover no-repeat;
    top: -92px;
    left: -130px;
    opacity: 0.1;
    z-index: -1;
}
.greeting .top_title h2 {
    padding-right: 10px;
}
.greeting .top_title .eng {
    background: linear-gradient(135deg,var(--sub-color02) 35px,var(--main-color) 35px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.greeting_box {
  display: flex;
  position: relative;
  z-index: 1;
}

.greeting_flex {
  display: flex;
  flex-flow: column;
  gap: 0;
}

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

.greeting_left {
    position: relative;
  display: flex;
  flex-shrink: 0;
  background: rgba(255,255,255,0.95);
  padding: 50px 20px;
  margin: -50px 50px 0 -50px;
      box-shadow: 0px 5px 15px rgb(0, 28, 53, 0.1);
      z-index: 1;
}
.greeting_left::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 75px;
    mask: url(../images/common/pattern02.png) top left / 8px;
    -webkit-mask: url(../images/common/pattern02.png) top left / 8px;
    background: rgba(40, 90, 138, 0.1);
    bottom: 0;
    left: 0;
    z-index: -1;
}
.greeting_text {
    padding: 0 30px;
	width: 50%;
}
.greeting_text:first-child {
    border-right: 1px solid var(--line-color);
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 1.5em;
}
.greeting_catch {
    font-size: 160%;
    color: var(--main-color);
    text-align: center;
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
}

.greeting_img {
    position: relative;
    width: 100%;
    height: 650px;
    text-align: center;
    z-index: -1;
}
.greeting_img::before {
    position: absolute;
    content: "";
    background: linear-gradient(rgba(40, 90, 138, 0), rgba(40, 90, 138, 0.7));
    width: 100%;
    height: 30%;
    left: 0;
    bottom: 0;
}
.greeting_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.greeting_profile {
  padding: 20px 0;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
}
.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: 30px;
  text-align: center;
}
.greeting_btn a {
    background: var(--main-color);
    color: #fff;
    padding: 8px 70px 8px 50px;
}
.greeting_btn a:hover {
    background: var(--sub-color);
    color: #fff;
}
.greeting_btn a::before {
    background: #fff;
    right: 18px;
}
.greeting_btn a:hover::before {
    right: 10px;
}
.greeting_btn a::after {
    content: none;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.greeting::after {
  width: 100%;
  height: calc(100% - 400px);
}
.greeting .inner {
    padding: 100px 20px;
}
.greeting .top_title {
    padding: 0;
    writing-mode: revert;
    -ms-writing-mode: revert;
}
.greeting .top_title .eng {
    background: linear-gradient(135deg, var(--sub-color02) 15px, var(--main-color) 15px);
        -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.greeting .top_title::before {
    top: -70px;
}
  .greeting_flex {
    gap: 25px;
  }
  .greeting_box {
    flex-flow: column;
  }
.greeting_right {
    margin-right: -20px;
    margin-left: 20px;
}
  .greeting_img {
    height: 300px;
  }
  .greeting_left {
    flex-flow: column;
    width: 100%;
    margin: -50px 0 0 0;
  }
  .greeting_catch {
    line-height: 1.5;
    font-size: 18px;
  }
  .greeting_text > *:not(:last-child) {
    margin-bottom: 1em;
} 
  .greeting_text {
    padding: 0;
	  width: 100%;
  }

  .greeting_text:first-child {
    border-right: none;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 50px;
  }
    .greeting_text:not(:first-child) {
        padding-top: 50px;
    }
  .greeting_btn {
    margin-top: 10px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    position: relative;
}
.medical::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 700px;
    background: 
    linear-gradient(90deg,rgba(3255,255,255, 1) 20%,rgba(255,255,255,0)),
    url(../images/front/bg_img03.jpg) center / cover no-repeat;
    z-index: -1;

}
.medical .inner {
    padding: 200px 50px 2px;
}
.medical .top_title {
    position: relative;
    text-align: left;
    margin-bottom: 140px;
}
.medical .top_title::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    background: url(../images/front/clinic_circle_img.png) top left / cover no-repeat;
    top: -104px;
    left: -112px;
    opacity: 0.1;
    z-index: -1;
}
.medical_flexbox {
    display: flex;
    padding: 0;
    background: url(../images/front/bg_texture01.png) top left / 600px repeat;
}
.medical_list {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    width: 100%;
    padding: 80px;
    margin: 0;
}
.medical_subject_title {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    /* margin-bottom: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    gap: 20px;
    padding: 20px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
}
.medical_subject_title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    mask: url(../images/common/pattern02.png) top left / 8px;
    -webkit-mask: url(../images/common/pattern02.png) top left / 8px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 0;
    left: 0;
    z-index: -1;

}

.medical_subject_title h3 {
    color: #fff;
    font-size: 200%;
    font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2em;
}
.medical_subject_title span {
    display: block;
    color: #fff;
    font-size: 90%;
    font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2em;
}
.medical_item {
  position: relative;
  z-index: 1;
  width: calc(100% / 4);
  height: auto;
  overflow: hidden;
}


.medical_item::before {
    position: absolute;
    content: "";
    background: #fff;
    mask: url(../images/common/arrow_img.svg) center right / cover no-repeat;
    -webkit-background: url(../images/common/arrow_img.svg) center right / cover no-repeat;
    width: 60px;
    height: 8px;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    transition: 0.2s;    
}
.medical_item:hover::before {
    left: calc(50% + 10px);
}
.medical_img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}

.medical_item:hover .medical_img {
    transform: scale(1.2);
    filter: blur(3px);
}
.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 15px 40px;
  background: linear-gradient(135deg,rgba(40, 90, 138, 0.4),rgba(40, 90, 138, 0.7));
  text-align: center;
  transition: background 0.2s;
}

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

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

.medical_title h4 {
  color: #fff;
  font-size: 130%;
  letter-spacing: 0.12em;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

.medical_title_eng {
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--jp-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.gynecology::before {
    content: none;
}
.medical.gynecology .inner {
    padding-top: 0;
    padding-bottom: 120px;
}
.medical.gynecology .medical_inner {
    background: linear-gradient(135deg,rgba(132, 104, 46, 0.4),rgba(132, 104, 46, 0.7));
}
.medical.gynecology .medical_subject_title {
    background: #b0955e;
}

/* ----- 先頭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 h4 {
  font-size: 150%;
} */

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.medical::before {
    height: 250px;
}

.medical .inner {
    padding: 90px 20px 2px;
}
.medical .top_title {
    margin-bottom: 40px;
}
.medical .top_title::before {
    top: -120px;
}
.medical_flexbox {
    flex-flow: column;
}
.medical_subject_title {
    flex-flow: column;
    width: 100%;
    height: auto;
    gap: 0;
    -ms-writing-mode: revert;
    writing-mode: revert;
    padding: 10px 20px;
}
.medical_subject_title::before {
    width: 50%;
    height: 100%;
}
.medical_subject_title h3 {
    font-size: 20px;
}
.medical_subject_title span {
    font-size: 10px;
}
  .medical_list {
    padding: 20px;
  }
  .medical_item {
    width: 50%;
  }
  .medical_item::before {
    width: 35px;
  }

  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
    height: 150px;
  }
  .medical_icon {
    width: 50%;
  }
  .medical_title h4 {
    font-size: 15px;
    line-height: 1.5;
  }
  .medical_title_eng {
    font-size: 8px;
  }

    /* ----- 婦人科 ----- */
.medical.gynecology .inner {
    padding-bottom: 70px;
}


  /* ----- 先頭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;
}
.feature::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 75%;
    background: 
    url(../images/front/clinic_circle_img_w.png) bottom -120px right -100px / 500px no-repeat,
    url(../images/front/bg_texture01.png) top left / 600px repeat;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

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

.feature_num {
  margin: 0 0 0 !important;
  font-size: 150%;
  font-family:  var(--en-font);
  font-weight: 500;
  font-style: normal;
}
.feature_num span {
  color: var(--sub-color02);
  font-size: 140%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 0 20px;
  /* background: #ffffff; */
}

.feature_title {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 110px;
    padding: 20px 0;
    margin-bottom: 34px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.feature_title::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 1px;
    background: var(--main-color);
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.feature_title h3 {
  color: var(--main-color);
  font-size: 150%;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 600;
  font-style: normal;
}
.feature_inner .text {
    line-height: 1.8;
}

.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 {
    width: 100%;
    padding: 8px 70px 8px 50px;
    color: #fff;
    background: var(--main-color);
}
.feature_button .btn01 a:hover {
    background: var(--sub-color);
}
.feature_button .btn01 a::before {
    background: #fff;
    right: 20px;
    top: calc(50% - 2px);
}
.feature_button .btn01 a:hover::before {
    right: 10px;
} 
.feature_button .btn01 a::after {
    content: none;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.feature::before {
    height: 92%;
    background-size: 300px, 500px;
}
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
  }
  .feature_inner {
    padding: 0 10px;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
        padding: 30px 0;
  }
  .feature_title h3 {
    font-size: 18px;
  }
}
/* ==================================================================================================================================

  *病状、症状から探す（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
}
.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  background: #a9a9a9;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}
.search .tab_list li.is-active {
  background: var(--main-color);
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 20px;
  background: var(--bg-color);
}
.search .panel > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: fit-content;
}
.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 30px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 110%;
}

/* ----- 画像あり ----- */
.panel_flex.is-active {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.panel_flex .search_img {
  width: calc(50% - 10px);
  margin: 0 !important;
}
.panel_flex .search_list {
  grid-template-columns: repeat(2, 1fr);
  width: calc(50% - 10px);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }
  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
  }
  /* ----- パネル ----- */
  .search .panel {
    padding: 20px;
  }
  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }
  /* ----- 画像あり ----- */
  .panel_flex.is-active {
    gap: 20px;
  }
  .panel_flex .search_img {
    width: 100%;
  }
  .panel_flex .search_list {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup .inner {
  width: 100%;
}

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

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

.pickup_img {
  position: relative;
  z-index: 1;
  height: fit-content;
}

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 55%;
  margin: 0 0 0 -70px;
  padding: 50px 50px 70px;
  background: url(../images/front/bg_texture01.png) top left / 600px repeat;
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 15px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 15px;
}
.pickup_title::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background: var(--main-color);
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 200%;
  color: var(--main-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}
.pickup_title .eng {
  color: var(--sub-color02);
  font-size: 110%;
  letter-spacing: 0.12em;
  font-family:  var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

.pickup_text {
  margin: 30px 0;
  letter-spacing: 1.8;
}

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

.pickup_btn {
  width: calc(50% - 5px);
  height: fit-content;
}
.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 25px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 95%;
  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;
}
.pickup_btn a:hover {
  background: var(--sub-color)
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup_list {
    width: 100%;
  }
  .pickup_title h2, .pickup_title h3 {
    font-size: 160%;
  }
  .pickup_item {
    flex-flow: column;
    width: 100%;
  }
  .pickup_img {
    width: calc(100% - 20px);
    margin: 0 auto 0 0;
  }
  .pickup_inner {
    width: 100%;
    width: calc(100% - 20px);
    margin: -30px 0 0 auto;
    padding: 30px 20px;
  }
  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }
  .pickup_btn {
    width: 100%;
  }
  /* ----- 偶数 ----- */
  .pickup_item:nth-child(even) {
    flex-flow: column;
  }
  .pickup_item:nth-child(even) .pickup_img {
    margin: 0 0 0 auto;
  }
  .pickup_item:nth-child(even) .pickup_inner {
    margin: -30px auto 0 0;
  }
}
/*==================================================================================================================================

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

==================================================================================================================================*/
.body-parts {
    background: url(../images/front/bg_texture01.png) top left / 600px repeat;
}
.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: 370px;
  margin: 0 auto;
}

/* ----- 各部位の共通設定 ----- */
.body_parts_list > li {
  position: absolute;
  display: block;
  /* padding: 15px 20px;
  background: var(--bg-color); */
}

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

#body-parts1 .body_parts_title::before {
    top: 132%;
    right: -144px;
    width: 150px;
    transform: rotate(32deg);
}
#body-parts2 {
    top: 0;
    right: 166px;
}

#body-parts2 .body_parts_title::before {
    top: 96%;
    left: -198px;
    width: 195px;
    transform: rotate(-14deg);
}

#body-parts3 {
    top: 190px;
    left: 60px;
}

#body-parts3 .body_parts_title::before {
    top: 47%;
    right: -136px;
    width: 129px;
}

#body-parts4 {
    top: 169px;
    right: 58px;
}

#body-parts4 .body_parts_title::before {
    top: 85%;
    left: -152px;
    width: 150px;
    transform: rotate(-14deg);
}
#body-parts5 {
    top: 310px;
    left: 70px;
}

#body-parts5 .body_parts_title::before {
    top: -39%;
    right: -238px;
    width: 240px;
    transform: rotate(-20deg);
}

#body-parts6 {
    top: 303px;
    right: 136px;
}

#body-parts6 .body_parts_title::before {
    top: -56%;
    left: -190px;
    width: 200px;
    transform: rotate(32deg);
}

#body-parts7 {
    top: 479px;
    left: 130px;
}

#body-parts7 .body_parts_title::before {
    top: -44%;
    right: -154px;
    width: 162px;
    transform: rotate(-34deg);
}

#body-parts8 {
    top: 416px;
    right: 86px;
}
#body-parts8 .body_parts_title::before {
    top: -10%;
    left: -190px;
    width: 190px;
    transform: rotate(17deg);
}
/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 15px;
  background: var(--main-color);
  color: #ffffff;
  min-width: 120px;
  font-size: 130%;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

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

.body_parts_title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background: var(--main-color);
}

/* -----　部位ごとの病状・病名　----- */
.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 .inner {
    flex-flow: column;
    gap: 0;
  }
  .body-parts .top_title .eng {
    font-size: 38px;
  }

  .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%;
    min-width: auto;
  }

  .body_parts_title::before {
    display: none;
  }

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

  *医療コラム（パターン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%;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
}
#infinitySlider .splide__list {
  gap: 10px;
}
#infinitySlider .splide__slide {
  width: 500px !important;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 300px !important;
  }
}