@charset "UTF-8";

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

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

  *基本設定

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

section .inner {
  padding: 120px 0 144px;
}

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

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

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

  *タイトル

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

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

.top_title .eng {
  display: inline-block;
  margin-bottom: 4px;
  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.1;
	letter-spacing: 0.075em;
}

.top_title h2 {
	color: var(--accent-color);
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 200%;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

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

	.top_title .eng {
    font-size: 400%;
  }

  .top_title h2 {
    font-size: 130%;
  }
}

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

  *メインビジュアル

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

.mainvisual::before {
  position: absolute;
  top: 0;
  left: 0;
	z-index: 2;
  width: 100%;
  height: 365px;
  background: url("../images/fog.png") no-repeat center bottom / 100%;
  content: "";
}

@media screen and (max-width: 1940px) and (min-width: 640px) {
	.mainvisual::before {
    background: url("../images/fog.png") no-repeat center top / 100%;
  }
}

.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;
	gap: 8px;
  position: relative;
  z-index: 1;
}

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

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

.mvCatch .mv_slogan01 {
	color: var(--accent-color);
}

.mvCatch .mv_slogan01 span {
	margin-left: 4px;
	font-size: 125%;
}

.mvCatch .mv_slogan02 {
	font-weight: 400;
	font-size: 180%;
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
	left: 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%;
}

/* 新規開院・内覧会・バナー */
.info_bnr_box {
	display: flex;
	flex-wrap: wrap;
  align-items: flex-end;
	gap: 24px;
	position: absolute;
  bottom: 40px;
	left: 0;
}

/* 新規開院・内覧会 */
.open_bnr {
  display: inline-block;
  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: 280px;
  height: 280px;
  padding: 16px;
	border-radius: 50%;
  background: var(--main-color);
  color: #ffffff;
  font-size: 105%;
  line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
}

.open_bnr .open_text {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-style: normal;
  font-size: 170%;
}

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

.open_bnr .nairakai_date {
  margin: 8px 0 0;
}

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

.info_bnr a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
	position: relative;
  width: 300px;
  height: 170px;
  padding: 16px;
  background: rgba(11, 111, 184, 0.9);
  color: #ffffff;
	font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 110%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
	text-shadow: 0 0 5px rgba(68, 68, 68, 0.5);
}

.info_bnr a:hover {
	background: rgba(11, 111, 184, 0.8);
}

.info_bnr a span {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 120%;
}

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

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

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

.sp_only {
  display: none;
}

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

  .mainvisual::before {
    display: none;
  }

  /* ----- スライダーの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: auto;
    bottom: 16px;
  }

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

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

  .mvCatch .mv_slogan01 span {
    font-size: 120%;
  }

  .mvCatch .mv_slogan02 {
    font-size: 100%;
  }
	
	/* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }

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

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

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

	/* 新規開院・内覧会・バナー */
	.info_bnr_box {
    align-items: stretch;
		gap: 16px;
		position: static;
    width: 100%;
	}

	/* 新規開院・内覧会 */
  .open_bnr {
    width: 100%;
    max-width: 350px;
    border-radius: 0;
	  margin:auto;
  }

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

  .info_bnr {
    width: 100%;
  }

.info_bnr a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
	position: relative;
  width: 100%;
  height: auto;
  padding: 16px;
  background: rgba(11, 111, 184, 0.9);
  color: #ffffff;
	font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 110%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
	text-shadow: 0 0 5px rgba(68, 68, 68, 0.5);
}
}

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

  *バナーエリア

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

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

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

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

.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 64px;
	padding: 120px 0 144px;
}

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

/* ----- お知らせ ----- */
.clinic .news .top_title {
  top: -24px;
  margin-bottom: 24px;
}

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

/* ----- 医院概要 ----- */
/* 診療科目 */
.clinic .info .speciality {
	display: flex;
  flex-wrap: wrap;
  position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 24px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.clinic .info .speciality p {
	width: 78%;
	padding: 24px 24px;
	border: 1px solid var(--line-color);
	border-left: none;
}

.clinic .info .speciality .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22%;
	padding: 24px 16px;
	border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

/* 所在地・電話・FAX */
.clinic .info address {
  margin-top: 16px;
}

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

/* 所在地 */
.clinic .info address .location {
  display: flex;
  flex-wrap: wrap;
	width: 100%;
  background: #ffffff;
  color: var(--text-color);
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.clinic .info address .location p {
	width: 78%;
	padding: 24px 24px;
	border: 1px solid var(--line-color);
	border-left: none;
}

.clinic .info address .location .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22%;
	padding: 24px 16px;
	border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

.clinic .info address .location p span {
  display: block;
}

/* TEL */
.clinic .info address .tel {
  display: flex;
  flex-wrap: wrap;
	width: 100%;
	margin-top: 16px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.clinic .info address .tel p {
	width: 78%;
	padding: 24px 24px;
	border: 1px solid var(--line-color);
	border-left: none;
}

.clinic .info address .tel p a {
	color: var(--main-color);
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: 0.075em;
}

.clinic .info address .tel p a:hover {
	opacity: 0.8;
}

.clinic .info address .tel .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22%;
	padding: 24px 16px;
	border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

/* FAX */
.clinic .info address .fax {
  display: flex;
  flex-wrap: wrap;
	width: 100%;
	margin-top: 16px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.clinic .info address .fax p {
	width: 78%;
	padding: 24px 24px;
	border: 1px solid var(--line-color);
	border-left: none;
}

.clinic .info address .fax p span {
	color: var(--main-color);
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: 0.075em;
}

.clinic .info address .fax .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22%;
	padding: 24px 16px;
	border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

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

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

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

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

.clinic_bg {
	position: relative;
  width: 100%;
	height: 500px;
	background: url("../images/top_clinic_img_01.jpg") no-repeat center / cover;
}

/* ==============================================
  *SP 医院概要（パターン01）
============================================== */
@media screen and (max-width: 640px) {
  .clinic .inner > * {
    width: 100%;
  }

  .clinic .inner {
    gap: 40px;
    padding: 40px 16px 80px;
  }

  /* ----- お知らせ ----- */
  .clinic .news .top_title {
    top: 0;
    margin-bottom: 24px;
    text-align: center;
  }

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

  /* ----- 医院概要 ----- */
  /* 診療科目 */
  .clinic .info .speciality {
    margin-top: 24px;
  }

  .clinic .info .speciality p {
    width: 100%;
    padding: 16px 16px;
    border-top: none;
    border-left: 1px solid var(--line-color);
  }

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

  /* 所在地 */
  .clinic .info address .location p {
    width: 100%;
    padding: 16px 16px;
    border-top: none;
    border-left: 1px solid var(--line-color);
  }

  .clinic .info address .location .title {
    width: 100%;
    padding: 16px 16px;
  }

  /* TEL */
  .clinic .info address .tel p {
    width: 100%;
    padding: 16px 16px;
    border-top: none;
    border-left: 1px solid var(--line-color);
    text-align: center;
  }

  .clinic .info address .tel p a {
    font-size: 26px;
  }

  .clinic .info address .tel .title {
    width: 100%;
    padding: 16px 16px;
  }

  /* FAX */
  .clinic .info address .fax p {
    width: 100%;
    padding: 16px 16px;
    border-top: none;
    border-left: 1px solid var(--line-color);
    text-align: center;
  }

  .clinic .info address .fax p span {
    font-size: 26px;
  }

  .clinic .info address .fax .title {
    width: 100%;
    padding: 16px 16px;
  }

  .clinic .info address .note {
    margin-top: 16px;
  }

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

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

  .clinic_bg {
    height: 250px;
    background: url("../images/top_clinic_img_01_sp.jpg") no-repeat center / cover;
  }
}

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

  *病状・病名から探す

================================================================================================================================== */
.search {
  position: relative;
	z-index: 2;
}

.search .inner {
	padding: 120px 0 0;
}

.search .tab_list {
  gap: 8px;
}

.search .tab_list .tab {
  padding: 16px 24px;
}

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

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

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

/* ----- リンクボタン ----- */
.search_list li a {
	display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 48px 10px 32px;
  background: #ffffff;
  color: var(--text-color);
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
    font-size: 86%;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.search_list li a::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 21px;
  z-index: 2;
  transform: translateY(-50%);
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
	content: "\f002";
  transition: background 0.2s;
}

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

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

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

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

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

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

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

/* ==============================================
  *SP 病状・病名から探す
============================================== */
@media screen and (max-width: 640px) {
  .search .inner {
    padding: 64px 16px 80px;
  }

  .search .tab_list {
    flex-flow: column;
    gap: 8px;
    margin: 0 0 16px;
  }

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

  .search .panel {
    padding: 16px;
  }

  .search_list {
    gap: 8px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 12px 48px;
  }

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

  *診療案内背景

================================================================================================================================== */
.medical_bg {
	position: relative;
  margin-top: -240px;
/* 	background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/top_medical_bg.jpg") no-repeat center / cover !important; */
	background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/top_medical_bg.jpg") no-repeat center / cover !important;
}

/* ==============================================
  *SP 診療案内背景
============================================== */
@media screen and (max-width: 640px) {
  .medical_bg {
    margin-top: -160px;
/*     background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/top_medical_bg_sp.jpg") no-repeat center / cover !important; */
	  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/top_medical_bg_sp.jpg") no-repeat center / cover !important;
  }
}

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

  *診療案内

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

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

.medical .top_title {
	text-align: left;
}

.medical .top_title .eng {
	color: #ffffff;
}

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

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

.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;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 24px 12px 40px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

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

.medical_icon {
	position: relative;
	z-index: 1;
  width: 100%;
  max-width: 128px;
  margin: 0 auto 16px !important;
	padding: 20px;
	border-radius: 50%;
}

.medical_icon::before {
	position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin: auto;
	border-radius: 50%;
	background: #eef1f3;
  content: "";
}
.medical_icon img,
.medical_secondary_icon img {
	  filter: brightness(0) saturate(100%)
          invert(29%) sepia(86%)
          saturate(1521%) hue-rotate(187deg)
          brightness(90%) contrast(95%);
}
.medical_title h3 {
  color: var(--sub-color);
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-style: normal;
  font-size: 125%;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: center;
}

.medical_title_eng {
  margin-top: 8px;
  color: var(--accent-color);
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
  font-size: 90%;
  line-height: 1.7;
  letter-spacing: 0.075em;
  text-align: center;
}

.medical_text {
  position: relative;
  color: var(--text-color);
	font-size: 90%;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

.medical_btn span {
	display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 12px 32px 12px 24px;
  border: 1px solid var(--sub-color);
	background: var(--sub-color);
  color: #ffffff;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 90%;
	line-height: 1.7;
  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: 52%;
  right: 12px;
	transform: translateY(-50%);
  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);
}

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

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

.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}

.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 150%;
}
*/

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical .inner {
    padding: 140px 16px 0;
  }

  .medical_list {
    gap: 8px 8px;
  }

  .medical_item {
    width: calc((100% - 16px) / 3);
  }

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

  .medical_inner {
    min-height: auto;
    padding: 24px 8px;
	flex-direction: column;
    height: 100%;
  }
	
	.medical_title {
    flex-grow: 1;           /* 余ったスペースをこのエリアが埋める */
}

.medical_btn {
    margin-top: auto;       /* 自動的に一番下へ押し出す */
}

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

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

  .medical_title_eng {
    font-size: 70%;
  }

  .medical_btn span {
    padding: 8px 8px;
    font-size: 70%;
  }

  .medical_btn span::after {
    display: none;
  }

  /* ----- 先頭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%;
  }
  */
}

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

  *診療案内 - 追加コンテンツ

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

.medical_secondary .inner {
	padding: 80px 0 320px;
}

.medical_secondary .top_title {
  margin-bottom: 40px;
	text-align: left;
}

.medical_secondary .top_title .eng {
	color: #ffffff;
}

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

.medical_secondary_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 48px) / 3);
}

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

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

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

.medical_secondary_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 24px 24px 40px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

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

.medical_secondary_icon {
  position: relative;
	z-index: 1;
  width: 100%;
  max-width: 128px;
  margin: 0 auto 16px !important;
	padding: 16px;
	border-radius: 50%;
}

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

.medical_secondary_title h3 {
  color: var(--sub-color);
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-style: normal;
  font-size: 125%;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: center;
}

.medical_secondary_title_eng {
  margin-top: 8px;
  color: var(--accent-color);
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
  font-size: 90%;
  line-height: 1.7;
  letter-spacing: 0.075em;
  text-align: center;
}

.medical_secondary_text {
  position: relative;
  color: var(--text-color);
	font-size: 90%;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

.medical_secondary_btn span {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 12px 32px 12px 24px;
  border: 1px solid var(--sub-color);
	background: var(--sub-color);
  color: #ffffff;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 90%;
	line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

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

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

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

.medical_secondary_item:nth-of-type(-n + 2) .medical_secondary_inner {
  padding: 20px 20px 40px;
}

.medical_secondary_item:nth-of-type(-n + 2) .medical_secondary_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}

.medical_secondary_item:nth-of-type(-n + 2) .medical_secondary_title h3 {
  font-size: 150%;
}
*/

/* ==============================================
  *SP 診療案内 - 追加コンテンツ
============================================== */
@media screen and (max-width: 640px) {
  .medical_secondary .inner {
    padding: 64px 16px 184px;
  }
  
  .medical_secondary_list {
    gap: 8px 8px;
  }

  .medical_secondary_item {
    width: calc((100% - 16px) / 3);
  }

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

  .medical_secondary_inner {
    min-height: auto;
    padding: 24px 8px;
	  flex-direction: column;
  }
	
.medical_secondary_title {
    flex-grow: 1;
}

.medical_secondary_btn {
    margin-top: auto;
	}
	
  .medical_secondary_icon {
    width: 80%;
    max-width: none;
  }

  .medical_secondary_title h3 {
    font-size: 80%;
  }

  .medical_secondary_title_eng {
    font-size: 70%;
  }

  .medical_secondary_btn span {
        padding: 8px 4px;
        font-size: 69%;
  }

  .medical_secondary_btn span::after {
    display: none;
  }

  /* ----- 先頭2つの設定----- */
  /*
  .medical_secondary_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }

  .medical_secondary_item:nth-of-type(-n + 2) .medical_secondary_inner {
    padding: 15px 20px 30px;
  }

  .medical_secondary_item:nth-of-type(-n + 2) .medical_secondary_icon {
    width: 30%;
  }

  .medical_secondary_item:nth-of-type(-n + 2) .medical_secondary_title h3 {
    font-size: 140%;
  }
  */
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
	position: relative;
	z-index: 1;
	margin-top: -240px;
	padding-top: 80px;
}

#infinitySlider .splide__track {
  overflow: visible !important;
}

#infinitySlider .splide__list {
  gap: 16px;
}

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

#infinitySlider .splide__slide:nth-child(even) {
  position: relative;
  top: -40px;
}

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider {
    margin-top: -160px;
    padding-top: 40px;
  }

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

  #infinitySlider .splide__slide:nth-child(even) {
    top: -20px;
  }
}

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

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

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

.pickup .inner {
  padding: 168px 0 152px;
}

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

.pickup_item {
	width: calc(50% - 20px);
}

.pickup_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 12px;
  padding: 16px 32px;
  color: #ffffff;
  text-align: center;
}

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

.pickup_title span {
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
  font-size: 140%;
	line-height: 1.2;
	letter-spacing: 0.075em;
}

.pickup_title span em {
	margin-left: 4px;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 120%;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 130%;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

.pickup_title h2 span, .pickup_title h3 span {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 120%;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

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

.pickup_text {
  margin: 24px 0;
	color: var(--text-color);
	font-size: 100%;
	line-height: 2;
	letter-spacing: 0.1em;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
  height: 100%;
  margin-top: auto;
}

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

.pickup_link .pickup_btn a {
	display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 16px 40px 16px 32px;
  border: 1px solid var(--main-color);
	background: var(--main-color);
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-style: normal;
  color: #ffffff;
  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: 12px;
  background: var(--main-color);
}

/* 奇数 */
.pickup_item:nth-child(odd) .pickup_title {
  background: var(--main-color);
}

.pickup_item:nth-child(odd) .pickup_title::before {
  background: var(--main-color);
}

/* 偶数 */
.pickup_item:nth-child(even) .pickup_title {
  background: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_title::before {
  background: var(--sub-color);
}

.pickup_item:nth-child(2) .pickup_link .pickup_btn a {
  border: 1px solid var(--sub-color);
	background: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover {
  background: #ffffff;
  color: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover::before {
  background: var(--sub-color);
}

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

.pickup_bg {
	position: relative;
  width: 100%;
	height: 500px;
	background: url("../images/top_clinic_img_02.jpg") no-repeat center / cover;
}

/*==============================================
  *SP　ピックアップ（パターン02） - 追加コンテンツ
==============================================*/
@media screen and (max-width:640px) {
  .pickup .inner {
    padding: 80px 16px 80px;
  }

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

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

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

  .pickup_item {
    width: 100%;
  }

  .pickup_title {
    padding: 16px;
    font-size: 100%;
  }

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

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

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

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

  .pickup_link .pickup_btn {
    width: 100%;
  }

  .pickup_bg {
    height: 250px;
    background: url("../images/top_clinic_img_02_sp.jpg") no-repeat center / cover;
  }
}

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

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

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

.feature .inner {
	padding: 120px 0 144px;
}

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

.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);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
}

.feature_num {
  position: absolute;
  top: -80px;
  left: 8px;
  margin: 0 !important;
  color: var(--accent-color);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 165%;
  line-height: 1.1;
  letter-spacing: 0.075em;
	text-shadow: 0 0 2px #ffffff, 0 0 2px #ffffff, 0 0 2px #ffffff, 0 0 4px rgba(255, 255, 255, 0.6);
}

.feature_num span {
  color: var(--main-color);
  font-size: 425%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 24px 24px 32px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 100%;
  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;
  border-bottom: 1px solid var(--line-color);
}

.feature_title h3 {
  color: var(--accent-color);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 125%;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}

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

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

.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}

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

/*==============================================
  *SP　当院の特徴（パターン01）
==============================================*/
@media screen and (max-width: 640px) {
  .feature .inner {
    padding: 64px 16px 80px;
  }

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

  .feature_list {
    gap: 56px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_num {
    top: -64px;
  }

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

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

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

  *ご挨拶

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

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

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

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

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

.greeting_profile {
  padding: 20px;
  background: var(--main-color);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
}

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

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

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

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }

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

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

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

================================================================================================================================== */
.column {
  background: var(--bg-color);
}

.column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}

.column_box {
  width: calc(25% - 18.75px);
}

.column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}

.column_box dd {
  padding: 15px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.column_box dd a {
  color: var(--text-color);
}

.column_box dd a:hover {
  color: var(--main-color);
}

/* ==============================================
  *SP 医療コラム（パターン01）
============================================== */
@media screen and (max-width: 640px) {
  .column_list {
    gap: 40px;
  }

  .column_box {
    width: 100%;
  }
}
