@charset "UTF-8";

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

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

  *基本設定

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

section .inner {
  padding: 100px 0;
}

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

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

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

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

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }

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

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

  *タイトル

================================================================================================================================== */
.top_title {
  position: relative;
	z-index: 1;
  margin-bottom: 80px;
  text-align: center;
}

.top_title::before {
  opacity: 0.15;
  position: absolute;
  top: -8%;
  left: 0;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
  margin: auto;
  background: -webkit-linear-gradient(rgba(28, 41, 111, 1) 0% 63%, rgba(91, 127, 204, 1) 37% 100%);
	background: linear-gradient(rgba(28, 41, 111, 1) 0% 63%, rgba(91, 127, 204, 1) 37% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: var(--main-color);
	font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 750%;
	line-height: 1.5;
	letter-spacing: 0.05em;
  content: "";
}

.top_title.title_left {
  text-align: start;
}

.top_title h2 {
  color: var(--text-color2);
	font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
	line-height: 1.5;
	letter-spacing: 0.1em;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
}

.top_title .eng {
  display: inline-block;
  margin-top: 8px;
  color: var(--sub-color);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 150%;
  line-height: 1;
  letter-spacing: 0.075em;
}

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

	.top_title::before {
		top: 0;
		font-size: 400%;
	}

  .top_title h2 {
    font-size: 26px;
  }

  .top_title .eng {
    margin-bottom: 4px;
  }
}

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

  *メインビジュアル

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

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

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

.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%;
  border-radius: 50%;
  background: var(--main-color);
  transition: background 0.2s;
}

.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}

.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  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%;
}

.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;
  transform: translateY(-50%);
  width: 100%;
}

.mvCatch .inner {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: relative;
  z-index: 1;
}

.mvCatch p {
  color: var(--text-color);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 1.75;
  letter-spacing: 0.2em;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
}

.mvCatch p span {
  margin: 0 4px;
  color: var(--sub-color);
  font-size: 130%;
}

.mvCatch p span:last-child {
  color: var(--main-color);
}

/* ----- コンテンツ ----- */
.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 {
  display: inline-block;
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: /*280*/250px;
  height: /*280*/250px;
  padding: 16px;
  border-radius: 50%;
  background: -webkit-linear-gradient(120deg, rgba(28, 41, 111, 1) 0%, rgba(91, 127, 204, 1) 100%);
  background: linear-gradient(120deg, rgba(28, 41, 111, 1) 0%, rgba(91, 127, 204, 1) 100%);
  color: #ffffff;
  font-size: /*105%*/110%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

.open_bnr .open_text {
/*   margin: 0 0 8px; */
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 170%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 4px 16px;
  border-radius: 300px;
  background: #ffffff;
  color: var(--main-color);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 95%;
}

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

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

/* バナー */
.info_bnr_box {
  display: flex;
	align-items: center;
	gap: 16px;
	position: absolute;
	bottom: 40px;
  left: /*304*/274px;
}

.info_bnr {
  display: inline-block;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.info_bnr a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
	position: relative;
  width: 230px;
  height: 230px;
  padding: 16px;
  border-radius: 50%;
  background: rgba(28, 41, 111, 0.9);
  color: #ffffff;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 110%;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}

.info_bnr a::before {
	display: block;
	margin: 0 auto 8px;
	font-family: "Font Awesome 5 Free";
	color: #ffffff;
	font-weight: 900;
	font-size: 180%;
	line-height: 1;
	content: "\f0f0";
}

.info_bnr a:hover {
	background: rgba(28, 41, 111, 0.8);
}

.info_bnr02 a {
  background: rgba(91, 127, 204, 0.9);
}

.info_bnr02 a::before {
	font-size: 220%;
	content: "\f554";
}

.info_bnr02 a:hover {
	background: rgba(91, 127, 204, 0.8);
}


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

.sp_only {
  display: none;
}

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

  /* ----- スライダーの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 {
    display: none;
		top: 50%;
  }

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

  .mvCatch p {
    font-size: 100%;
    line-height: 1.75;
		text-shadow: none;
    text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
  }

  .mvContents {
    display: none;
  }

  .sp_only {
    display: block;
    background: var(--bg-color2) !important;
  }

  .sp_only .inner {
    padding: 24px 16px;
  }

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

  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 16px 24px;
    border-radius: 5px;
  }

	/* バナー */
	.info_bnr_box {
		/*flex-flow: column;*/
		justify-content: center;
		gap: 8px;
		position: static;
		width: 100%;
		align-items: stretch;
	}

	.info_bnr {
		width: 100%;
		border-radius: 5px;
	}

	.info_bnr a {
		width: 100%;
		height: 100%;
		padding: 16px 10px;
		border-radius: 5px;
		font-size: 100%;
	}
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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;
  padding-bottom: 128px;
  background: var(--main-color);
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
  background: #ffffff url("../images/decor01.png") no-repeat left top / 20%;
}

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

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

.top_title.title_left {
  text-align: start;
}

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

.clinic .news .top_title .eng {
  margin: 0;
  background: -webkit-linear-gradient(rgba(28, 41, 111, 1) 0% 63%, rgba(91, 127, 204, 1) 37% 100%);
	background: linear-gradient(rgba(28, 41, 111, 1) 0% 63%, rgba(91, 127, 204, 1) 37% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: var(--main-color);
  font-weight: 500;
  font-size: 500%;
	line-height: 1.3;
}

.clinic .news .top_title h2 {
  font-size: 28px;
  text-shadow: none;
}

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

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  z-index: 1;
}

.clinic .info::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(100% - (50% - 680px));
  height: 100%;
  border-radius: 0 0 0 10px;
  background: #ffffff url("../images/decor02.png") no-repeat right bottom / 20%;
  content: "";
}

.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 40px 0 80px;
}

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

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

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

.clinic .info address .location {
  padding: 10px 0 10px 50px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.clinic .info address .location .zipcode {
  display: block;
}

.clinic .info address .tel {
  margin-top: 16px;
  padding: 10px 0 10px 50px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.075em;
}

.clinic .info address .tel::before {
  content: "\f3cd";
}

.clinic .info address .tel a {
  color: var(--main-color);
}

.clinic .info address .tel a:hover {
  color: var(--sub-color);
}

.clinic .info address .fax {
  margin-top: 16px;
  padding: 10px 0 10px 50px;
  color: var(--main-color);
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.075em;
}

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

.clinic .info address .note {
  margin-top: 16px;
  padding-left: 16px;
  color: var(--text-color);
  font-size: 90%;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

/* 診療科目 */
.clinic .info .speciality {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  position: relative;
  margin-top: 16px;
  padding: 24px 24px 24px 152px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.clinic .info .speciality .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 100%;
  background: var(--main-color);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.clinic .info .office_hour:first-child {
  margin-top: 32px;
}

.clinic .info .googlemap iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
}

.clinic .info .illustmap img {
	border-radius: 10px;
}

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

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

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

/* ==============================================
  *SP 医院概要（パターン02）
============================================== */
@media screen and (max-width: 640px) {
	.clinic {
		padding-bottom: 24px;
	}

	.clinic .news {
    background: url(../images/decor01.png) no-repeat left top / 30%, url("../images/decor02.png") no-repeat right bottom / 30% #ffffff;
	}

  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 56px 16px;
  }

	.clinic .news .top_title {
		margin-bottom: 40px;
	}

	.clinic .news .top_title .eng {
		font-size: 460%;
	}

	.clinic .news .top_title h2 {
		font-size: 24px;
	}

	.clinic .info {
		padding: 16px 16px;
	}

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

  .clinic .info .inner {
    flex-flow: column;
		gap: 32px;
    padding: 24px 16px 48px;
		border-radius: 10px;
		background: #ffffff;
  }

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

	.clinic .info address > *::before {
		top: 4px;
	}
	
	.clinic .info address .location {
		font-size: 15px;
		line-height: 1.6;
	}

	.clinic .info address .tel {
		font-size: 24px;
	}

	.clinic .info address .fax {
		font-size: 22px;
	}

	.clinic .info address .fax::before {
		top: 2px;
	}

  .clinic .info .speciality {
    align-items: center;
    gap: 8px;
    padding: 60px 8px 16px 8px;
		font-size: 15px;
		line-height: 1.6;
  }

  .clinic .info .speciality .title {
    bottom: auto;
    width: 100%;
    height: auto;
    padding: 12px;
  }

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

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

  *ご挨拶

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

.greeting::before {
  position: absolute;
  top: 0;
	bottom: 0;
  right: 0;
  width: calc(100% - (50% + 400px));
  height: 100%;
  background: var(--bg-color);
  content: "";
}

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

.greeting_bg_box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  margin: auto;
  background: var(--main-color);
  content: "";
}

.greeting_bg {
  position: relative;
  width: calc(100% - (50% - 880px));
	height: 400px;
	margin: 0 0 0 auto;
  border-radius: 10px 0 0 10px;
	background: url("../images/top_clinic_img01.jpg") no-repeat center / cover;
}

.greeting .inner {
  padding: 180px 0 120px;
}

.greeting .top_title::before {
  content: "GREETING";
}

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

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

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

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

.greeting_text {
  color: var(--text-color);
  font-size: 100%;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

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

.greeting_profile {
  padding: 24px;
  border-radius: 0 0 10px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

.greeting_profile .position {
  margin-bottom: 4px;
  font-size: 105%;
}

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

.greeting_profile .name span.director {
  margin-right: 8px;
  font-size: 85%;
}

.greeting_profile .name span.furigana {
  font-size: 80%;
}

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

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
	.greeting::before {
		width: calc(100% - (50% + 80px));
	}

	.greeting_bg {
		width: calc(100% - (50% - 173px));
		height: 200px;
		background: url("../images/top_clinic_img01_sp.jpg") no-repeat center / cover;
	}

	.greeting .inner {
		padding: 80px 16px;
	}	

  .greeting_flex {
    flex-flow: column-reverse;
    gap: 24px;
  }

  .greeting_left {
    width: 100%;
  }
	.greeting_right{
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
	}

  .greeting_btn {
    margin-top: 40px;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
	position: relative;
	z-index: 1;
  background: linear-gradient(rgba(28, 41, 111, 0.1), rgba(28, 41, 111, 0.1)), url(../images/top_medical_bg.jpg) no-repeat center/cover !important;
}

.medical .inner {
	padding: 180px 0;
}

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

.medical .top_title h2 {
	text-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 9px #fff, 0 0 12px #fff;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 64px) / 5);
	overflow: hidden;
	border-radius: 5px;
}

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

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
	transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: background 0.2s;
}

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

.medical_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
	position: relative;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 24px 16px 40px;
  text-align: center;
}

.medical_inner::before {
	opacity: 0.4;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	margin: auto;
	background: -webkit-linear-gradient(to right bottom, var(--main-color), var(--main-color) 50%, var(--sub-color) 50%, var(--sub-color) 100%);
	background: linear-gradient(to right bottom, var(--main-color), var(--main-color) 50%, var(--sub-color) 50%, var(--sub-color) 100%);
	content: "";
}

.medical_inner::after {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 24px;
	height: 24px;
	background: -webkit-linear-gradient(120deg, rgba(28, 41, 111, 1) 0%, rgba(91, 127, 204, 1) 100%);
  background: linear-gradient(120deg, rgba(28, 41, 111, 1) 0%, rgba(91, 127, 204, 1) 100%);
	-webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
	content: "";
}

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

.medical_icon {
	position: relative;
  width: 100%;
  max-width: 112px;
  margin: 0 auto 16px !important;
	padding: 16px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.medical_icon::before {
	opacity: 0.95;
	position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin: auto;
	border-radius: 50%;
  background: var(--main-color);
  content: "";
}

.medical_title h3 {
  color: #ffffff;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 19px;
	line-height: 1.4;
	letter-spacing: 0.1em;
  /*text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);*/
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0 0 5px #000, 0 0 10px #000, 0 0 20px #000, 0 0 40px #1c296f, 0 0 40px #1c296f;
}

  .medical_item:nth-of-type(-n + 4) .medical_title h3 {
    font-size: 21px;
  }

.medical_title h3 span {
	display: block;
	margin-top: 4px;
	font-size: 85%;
}

.medical_title_eng {
  margin-top: 8px;
  color: #ffffff;
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
  font-size: 90%;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-align: center;
  /*text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);*/
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0 0 5px #000, 0 0 10px #000, 0 0 20px #000, 0 0 40px #1c296f, 0 0 40px #1c296f;
}

.medical_text {
  color: #ffffff;
	font-size: 85%;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.medical_btn {
	margin-top: auto;
}

.medical_btn span {
	display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 10px 30px 10px 20px;
	border-radius: 5px;
	border: 1px solid var(--sub-color);
	background: var(--sub-color);
  color: #ffffff;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 85%;
	line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

.medical_btn span::after {
	display: inline-block;
  position: absolute;
  top: 53%;
  right: 13px;
	transform: translateY(-50%);
	color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
	content: "\f105";
}

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

.medical_item:hover .medical_btn span::after {
	color: var(--sub-color);
}

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

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

.medical_item:nth-of-type(-n + 4) .medical_icon {
  max-width: 120px;
  margin: 0 auto 16px !important;
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(28, 41, 111, 0.1), rgba(28, 41, 111, 0.1)), url(../images/top_medical_bg_sp.jpg) no-repeat center/cover !important;
  }

	.medical .inner {
		padding: 80px 16px;
	}

  .medical_list {
    gap: 8px 8px;
  }

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

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

  .medical_inner {
    min-height: auto;
    padding: 24px 8px;
  }

  .medical_icon {
    width: 65%;
		max-width: none;
  }

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

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

  .medical_item:nth-of-type(-n + 4) .medical_inner {
    padding: 24px 8px;
  }

  .medical_item:nth-of-type(-n + 4) .medical_icon {
    width: 65%;
		max-width: none;
  }

  .medical_item:nth-of-type(-n + 4) .medical_title h3 {
    font-size: 100%;
  }
}

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

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

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

.pickup::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  width: calc(100% - (50% + 400px));
  height: 100%;
  background: var(--bg-color2);
  content: "";
}

.pickup .inner {
  width: 100%;
}

.pickup .inner {
	padding: 180px 0 160px;
}

.pickup .top_title {
	margin-bottom: 120px;
}

.pickup .top_title::before {
	content: "ORTHOPEDICS";
}

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

.pickup_item {
  display: flex;
  width: 100%;
	margin-top: 40px;
}

.pickup_img {
  position: relative;
  z-index: 1;
  height: fit-content;
	margin-top: -40px;
}

.pickup_img img {
	border-radius: 10px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.07);
}

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 100%;
	min-width: 624px;
  margin: 0 0 0 -40px;
  padding: 48px 48px;
	border-radius: 10px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.9);
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 16px;
  text-align: center;
}

.pickup_title h2, .pickup_title h3 {
	color: var(--text-color);
  font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 130%;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.pickup_title span {
	display: inline-block;
	position: relative;
	margin-bottom: 16px;
	padding: 0 24px;
  color: var(--main-color);
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 120%;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

.pickup_title span::before {
  display: block;
	position: absolute;
	top: 50%;
	left: 0;
  transform: translateY(-50%) rotate(-25deg);
  width: 1px;
  height: 90%;
  background: var(--main-color);
  content: "";
}

.pickup_title span::after {
  display: block;
	position: absolute;
	top: 50%;
	right: 0;
  transform: translateY(-50%) rotate(25deg);
  width: 1px;
  height: 90%;
  background: var(--main-color);
  content: "";
}

.pickup_text {
  margin: 32px 0;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
	justify-content: center;
  gap: 8px;
  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: 14px 32px;
	border-radius: 5px;
  border: 1px solid var(--main-color);
	background: var(--main-color);
  color: #ffffff;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 100%;
	line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

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

.pickup_link .pickup_btn a::before {
  display: block;
  position: absolute;
  top: 52%;
  right: 16px;
	transform: translateY(-50%);
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
	content: "";
  transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a:hover::before {
  right: 13px;
  background: var(--main-color);
}

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

.pickup_item:nth-child(even) .pickup_inner {
  margin: 0 -70px 0 0;
}


/* 再生治療について 準備中 */
.pickup_item:nth-child(2) .pickup_btn > * {
  pointer-events: none;
}

.pickup_item:nth-child(2) .pickup_btn > *::after {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0 , 0.7);
  color: #ffffff;
  transform: translate(-50%,-50%);
  border-radius: 5px;
}

/*==============================================
  *SP　ピックアップ（パターン01）
==============================================*/
@media screen and (max-width:640px) {
	.pickup::before {
		width: calc(100% - (50% + 80px));
	}

	.pickup .inner {
		padding: 80px 16px;
	}

	.pickup .top_title {
		margin-bottom: 0;
	}

	.pickup .top_title::before {
		top: 4%;
		font-size: 300%;
	}

  .pickup_list {
		gap: 8px;
    width: calc(100%);
  }

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

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

  .pickup_inner {
    width: 100%;
    width: calc(100% - 24px);
		min-width: auto;
    margin: -32px 0 0 auto;
    padding: 32px 24px;
  }

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

	.pickup_title span::before, .pickup_title span::after {
		height: 80%;
	}

	.pickup_title h2, .pickup_title h3 {
    font-size: 110%;
  }

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

  .pickup_link .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: -32px auto 0 0;
  }
}

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

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

================================================================================================================================== */
.feature {
	position: relative;
	z-index: 1;
  background: var(--bg-color);
}

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

.feature_bg_box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  margin: auto;
  background: #ffffff;
  content: "";
}

.feature_bg {
  position: relative;
  width: calc(100% - (50% - 880px));
	height: 400px;
	margin: 0 auto 0 0;
  border-radius: 0 10px 10px 0;
	background: url("../images/top_clinic_img02.jpg") no-repeat center / cover;
}

.feature .inner {
	padding: 180px 0 160px;
}

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

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 64px 32px;
}

.feature_item {
  display: flex;
  flex-flow: column;
	position: relative;
  width: calc(33.3333% - 21.3333px);
}

.feature_num {
	display: flex;
  align-items: baseline;
	gap: 0 4px;
	position: absolute;
  top: 10px;
  left: -10px;
	padding: 14px 16px 16px 16px;
	background: var(--main-color);
  color: #ffffff;
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings: "wdth" 100;
  font-size: 115%;
	line-height: 1;
	letter-spacing: 0.075em;
}

.feature_num::before {
  position: absolute;
  top: 100%;
	left: 0;
	border-bottom: 10px solid transparent;
  border-right: 10px solid var(--sub-color);
	content: "";
}

.feature_num::after {
	position: absolute;
  top: 0;
	right: -19px;
  width: 20px;
  height: 100%;
  background: var(--main-color);
  clip-path: polygon(0 0, 100% 1%, 7% 100%, 0% 100%);
	content: "";
}

.feature_num span {
  color: #ffffff;
  font-size: 155%;
}

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

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 24px 24px 32px;
	border-radius: 0 0 5px 5px;
  background: #ffffff;
	color: var(--text-color);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

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

.feature_title h3 {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	font-style: normal;
  font-size: 105%;
  line-height: 1.75;
	letter-spacing: 0.1em;
  text-align: center;
}

.feature_item .btn02 {
  margin-top: auto;
  text-align: center;
}

/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.btnflex_feature .btn02 {
  width: calc(50% - 4px);
}

.btnflex_feature .btn02 > * {
  width: 100%;
}

/*==============================================
  *SP　当院の特徴（パターン01）
==============================================*/
@media screen and (max-width: 640px) {
	.feature_bg {
		width: calc(100% - (50% - 173px));
		height: 200px;
		background: url("../images/top_clinic_img02_sp.jpg") no-repeat center / cover;
	}

	.feature .inner {
		padding: 80px 16px;
	}

  .feature_list {
    gap: 32px;
  }

  .feature_item {
    width: 100%;
  }

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

	.feature_title h3 {
		font-size: 95%;
	}

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

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

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

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

.body-parts::before {
	opacity: 0.15;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	margin: auto;
	background: url("../images/decor03.png") no-repeat center top / 100%, url("../images/decor04.png") no-repeat center bottom / 100%;
	content: "";
}

.body-parts .inner {
	padding: 180px 0 160px;
}

.body-parts .top_title::before {
	content: "SEARCH";
}

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

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

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

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

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

#body-parts2 {
  top: 80px;
  right: 150px;
}

#body-parts2 .body_parts_title::before {
  top: 50%;
  left: -112px;
  width: 102px;
}

#body-parts3 {
  top: 275px;
  left: 90px;
}

#body-parts3 .body_parts_title::before {
  top: 70%;
  right: -52px;
  width: 42px;
  transform: rotate(25deg);
}

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

#body-parts4 .body_parts_title::before {
  top: 65%;
  left: -70px;
  width: 60px;
  transform: rotate(-20deg);
}

#body-parts5 {
  top: 380px;
  left: 100px;
}

#body-parts5 .body_parts_title::before {
  top: -5%;
  right: -137px;
  width: 137px;
  transform: rotate(-35deg);
}

#body-parts6 {
  top: 310px;
  right: 100px;
}

#body-parts6 .body_parts_title::before {
  top: -20%;
  left: -185px;
  width: 185px;
  transform: rotate(30deg);
}

#body-parts7 {
  top: 525px;
  left: 150px;
}

#body-parts7 .body_parts_title::before {
  top: 25%;
  right: -148px;
  width: 148px;
  transform: rotate(-35deg);
}

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

#body-parts8 .body_parts_title::before {
  top: -50%;
  left: -143px;
  width: 133px;
}

/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 16px;
	border-radius: 5px;
	border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #ffffff;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 125%;
	line-height: 1.5;
	letter-spacing: 0.1em;
  text-align: center;
}

.body_parts_title:hover {
  background: #ffffff;
  color: var(--main-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::before {
		background: url("../images/decor03.png") no-repeat center top / 100%, url("../images/decor04.png") no-repeat center bottom / 100%;
	}

	.body-parts .inner {
		padding: 80px 16px;
	}

  .body-parts .inner {
    flex-flow: column;
    gap: 0;
  }

  .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: 40%;
    right: 0;
  }

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

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

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

  .body_parts_title::before {
    display: none;
  }

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

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

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

==================================================================================================================================*/
#columnSlider {
  background: var(--bg-color2);
}

#columnSlider .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 136px;
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 120px 80px;
}

#columnSlider .top_title {
  flex-shrink: 0;
}

#columnSlider .top_title::before {
	display: none;
}

#columnSlider .top_title .eng {
  margin: 0;
  background: -webkit-linear-gradient(rgba(28, 41, 111, 1) 0% 63%, rgba(91, 127, 204, 1) 37% 100%);
	background: linear-gradient(rgba(28, 41, 111, 1) 0% 63%, rgba(91, 127, 204, 1) 37% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: var(--main-color);
  font-weight: 500;
  font-size: 500%;
	line-height: 1.3;
}

#columnSlider .top_title h2 {
	font-size: 28px;
	text-shadow: none;
}

#columnSlider .top_title h2::before, #columnSlider .top_title h2::after {
  display: none;
}

/* ----- コラムスライダー設定 ----- */
#columnSlider .splide {
  width: 100%;
  padding-top: 80px;
  overflow: hidden;
}

#columnSlider .splide__list {
  align-items: flex-start;
  width: 100%;
}

/* スライダーのArrowボタン */
#columnSlider .splide__arrow {
	display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 10;
  width: 60px;
  height: 45px;
  border-radius: 5px;
  border: 1px solid var(--main-color);
	background: var(--main-color);
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition: background 0.2s , color 0.2s;
}

#columnSlider .splide__arrow:hover {
  background: #ffffff;
  color: var(--main-color);
}

#columnSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background 0.2s;
}

#columnSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
  font-style: normal;
}

#columnSlider .splide__arrow--prev {
  right: 70px;
}

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

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

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

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

/* ----- ページネーション ----- */
#columnSlider .splide__pagination {
	display: flex;
  gap: 16px;
  position: absolute;
  top: 16px;
  right: 190px;
  z-index: 1;
}

#columnSlider .columnSlider-page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
	background: #ffffff;
  transition: background 0.2s;
}

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

/* ----- コラム個別 ----- */
#columnSlider .column_item a {
  width: 100%;
}

#columnSlider .column_item_thum {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin: 0 0 16px;
  overflow: hidden;
	border-radius: 10px;
}

#columnSlider .column_item_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 13 / 9;
	transition: 0.4s;
}

#columnSlider .column_item a:hover .column_item_thum img {
  transform: scale(1.1);
}

#columnSlider .column_item:first-child .column_item_thum::before {
	display: flex;
  justify-content: center;
  align-self: center;
  opacity: 0.9;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: 90px;
  height: 90px;
  padding: 15px 30px 0 0;
  background: var(--accent-color);
  color: #ffffff;
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings: "wdth" 100;
  font-size: 16px;
	line-height: 1;
  letter-spacing: 0.075em;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
	content: "New";
}

#columnSlider .column_info {
  display: flex;
  flex-flow: wrap;
	align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  color: #646464;
  font-size: 90%;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

#columnSlider .column_date {
  flex-shrink: 0;
}

#columnSlider .column_info ul {
  display: flex;
  flex-flow: wrap;
  gap: 6px;
}

#columnSlider .column_info ul li {
  min-width: 80px;
  padding: 6px 8px 5px;
	border-radius: 5px;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 95%;
	line-height: 1.5;
	letter-spacing: 0.1em;
  text-align: center;
}

#columnSlider .column_title {
	overflow: hidden;
  color: var(--text-color);
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 105%;
	line-height: 1.5;
	letter-spacing: 0.1em;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

#columnSlider .column_item a:hover .column_title {
  color: var(--main-color);
}

/*==============================================
  *SP　医療コラム（パターン03）
==============================================*/
@media screen and (max-width: 640px) {
  #columnSlider .inner {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 48px 16px;
  }

  #columnSlider .top_title {
    margin: 0 auto 40px;
  }

	#columnSlider .top_title .eng {
		font-size: 460%;
	}

	#columnSlider .top_title h2 {
		font-size: 24px;
	}

  #columnSlider .splide {
    margin-right: -40px;
  }

  #columnSlider .splide__arrow {
    width: 50px;
    height: 40px;
  }

  #columnSlider .splide__arrow--next {
    right: 20px;
  }

  #columnSlider .splide__arrow--prev {
    right: 80px;
  }

  #columnSlider .splide__pagination {
    justify-content: flex-end;
    gap: 13px;
		top: 13px;
    left: 0;
		right: auto;
    transform: translate(0);
  }

  #columnSlider .columnSlider-page {
    width: 8px;
    height: 8px;
  }

  #columnSlider .splide__slide:first-child .column_item_thum::before {
    width: 80px;
    height: 80px;
    padding: 13px 25px 0 0;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 8px;
}

#infinitySlider .splide__list {
  gap: 16px;
}

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

#infinitySlider .splide__slide img {
	border-radius: 10px;
}

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

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

  *病状・病名から探す

================================================================================================================================== */
.search {
  position: relative;
}

.search .tab_list {
  gap: 10px;
}

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

.search .panel {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: var(--main-color);
}

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

.search_list li {
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
}

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 30px;
  background: var(--bg-color);
  color: var(--text-color);
}

.search_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  z-index: 2;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

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

/* 矢印の背景 */
.search_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.search_list li a:hover::after {
  background: #ffffff;
}

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

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

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

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

/* ==============================================
  *SP 病状・病名から探す
============================================== */
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

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

  .search .panel {
    padding: 20px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

  .panel_flex .search_list li {
    width: 100%;
  }
}