@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: 56px 16px 72px;
  }

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

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

  *タイトル

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

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

.top_title h2 {
  position: relative;
  color: var(--accent-color);
  font-family: "tbudrgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 180%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.top_title h2::before {
  display: block;
  width: 65px;
  height: 40px;
  margin: 0 auto 16px;
  background: url("../images/logo_icon.png") no-repeat center / contain;
  content: "";
}

.top_title .eng {
  display: inline-block;
  margin-top: 16px;
  color: var(--sub-color);
  font-family: "alkaline", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 150%;
  line-height: 1.1;
  letter-spacing: 0.075em;
}

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

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

  .top_title h2::before {
    width: 60px;
    height: 37px;
    margin: 0 auto 8px;
  }

  .top_title .eng {
    margin-top: 8px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.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: 35%;
  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: "tbudrgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 165%;
  line-height: 2;
  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 .mv_slogan01 span {
  color: var(--main-color);
  font-size: 125%;
}

/* ----- コンテンツ ----- */
.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%;
}

/* 新規開院・内覧会・バナー */
.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:hover {
	opacity:0.7;
}
.open_bnr a {
	color:white;
}
.open_bnr > *{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: 290px;
  padding: 16px;
  border-radius: 50%;
  background: rgba(46, 89, 167, 0.95);
  color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 100%;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}

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

.open_bnr .open_text {
  font-family: "tbudrgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 175%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 8px 0 0;
  padding: 4px 16px;
/*   background: #ffffff; */
  border-radius: 300px;
/*   color: var(--main-color); */
	background: #eb6272;
	color: #ffffff;
}

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

.open_bnr .nairakai_date span {
  margin-left: 4px;
}

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

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

/* バナー */
.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: 220px;
  height: 220px;
  padding: 16px;
  border-radius: 50%;
  background: url("../images/info_bnr_deco_01.png") no-repeat left top / 77%, url("../images/info_bnr_deco_02.png") no-repeat center bottom / 100%, linear-gradient(120deg, rgba(46, 89, 167, 0.95) 0%, rgba(0, 104, 183, 0.95) 100%);
  color: #ffffff;
	font-family: "tbudrgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 105%;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 0 5px rgba(68, 68, 68, 0.8);
}

.info_bnr a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
}

.info_bnr a:hover {
  background: url("../images/info_bnr_deco_01.png") no-repeat left top / 77%, url("../images/info_bnr_deco_02.png") no-repeat center bottom / 100%, linear-gradient(120deg, rgba(46, 89, 167, 0.8) 0%, rgba(0, 104, 183, 0.8) 100%);
  color: #ffffff;
}

.info_bnr a span {
  display: block;
}

.info_bnr a span:not(:last-child) {
  margin-bottom: 4px;
}

.info_bnr01 a::before {
  top: -20px;
  left: 12px;
  width: 120px;
  height: 68px;
  background: url("../images/info_bnr_deco_03.png") no-repeat center / contain;
}

.info_bnr02 a::before {
  top: -30px;
  right: 40px;
  width: 100px;
  height: 82px;
  background: url("../images/info_bnr_deco_04.png") no-repeat center / contain;
}

/* ----- 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: auto;
    bottom: 40px;
    transform: none;
  }

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

  .mvCatch p {
    font-size: 105%;
    line-height: 2;
  }

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

  /* ----- コンテンツ ----- */
  .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: 8px;
    width: 100%;
  }

  /* 新規開院・内覧会・バナー */
  .info_bnr_box {
    justify-content: center;
    gap: 48px 16px;
    position: static;
  }

  /* 新規開院・内覧会 */
  .open_bnr {
    width: 100%;
    border-radius: 5px;
    background: rgba(46, 89, 167, 0.2);
  }

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

  /* バナー */
  .info_bnr {
    padding: 2px;
    background: rgba(46, 89, 167, 0.2);
  }

  .info_bnr a {
    width: 155px;
    height: 155px;
    font-size: 90%;
  }

  .info_bnr01 a::before {
    top: -20px;
    left: 10px;
    width: 90px;
    height: 50px;
  }

  .info_bnr02 a {
    font-size: 100%;
  }

  .info_bnr02 a::before {
    top: -20px;
    right: 30px;
    width: 70px;
    height: 57px;
  }
}

@media screen and (max-width: 320px) {
  .info_bnr a {
    width: 130px;
    height: 130px;
    font-size: 70%;
  }

  .info_bnr01 a::before {
    top: -15px;
    left: 10px;
    width: 80px;
    height: 40px;
  }

  .info_bnr02 a::before {
    top: -15px;
    right: 25px;
    width: 60px;
    height: 47px;
  }
}

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

  *バナーエリア

================================================================================================================================== */
.top_banner {
  display: none !important; /* バナーの表示が必要な場合は削除してください（初期制作のワイヤーにないため未装飾です）*/
	position: relative;
	z-index: 1;
}

/* ----- 共通設定 ----- */
.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 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  cursor: pointer;
}

#bannerSlider .bannerSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  border-radius: 50%;
  background: var(--main-color);
  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 {
  display: flex;
  gap: 15px;
  z-index: 1;
  margin: 30px auto 0;
}

#bannerSlider .bannerSlider_page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e8e8e8;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider_page.is-active {
  background: var(--main-color);
}

/* ==============================================
  *SP バナーエリア
============================================== */
@media screen and (max-width: 640px) {
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }

  /* スライダーのArrowボタン */
  #bannerSlider .bannerSlider_arrow {
    width: 40px;
    height: 40px;
  }

  #bannerSlider .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }

  /* ページネーション */
  #bannerSlider .bannerSlider_pagination {
    gap: 12px;
    margin: 20px auto 0;
  }

  #bannerSlider .bannerSlider_page {
    width: 8px;
    height: 8px;
  }
}

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

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

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

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}

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

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

.clinic .news .top_title {
  margin: 0;
}

.clinic .news .top_title h2 {
  font-size: 180%;
}

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

.clinic .news .top_title .eng {
  margin-top: 16px;
  font-size: 150%;
}

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

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--surface-color);
}

.clinic .info .inner {
  display: flex;
  gap: 32px;
  padding: 56px 56px 64px;
  border-radius: 10px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.03);
  background: #ffffff;
}

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

/* 所在地・電話・FAX */
.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: 0;
  left: 0;
  width: 40px;
  height: 40px;
  padding: 1px 0 0 2px;
  border-radius: 50%;
  background: var(--main-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-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.clinic .info address .location .zipcode {
  margin-right: 8px;
}

/* 電話 */
.clinic .info address .tel {
  margin-top: 16px;
  padding: 5px 0 5px 50px;
	color: var(--main-color);
	font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	font-variant-numeric: lining-nums;
  font-size: 32px;
  line-height: 1.1;
	letter-spacing: 0.075em;
}

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

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

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

/* FAX */
.clinic .info address .fax {
  margin-top: 16px;
  padding: 5px 0 5px 50px;
	color: var(--main-color);
	font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	font-variant-numeric: lining-nums;
  font-size: 28px;
  line-height: 1.1;
	letter-spacing: 0.075em;
}

.clinic .info address .fax::before {
  top: 1px;
  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: 24px;
  padding: 24px 24px 24px 152px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 100%;
  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: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
}

/* 診療時間 */
.clinic .info .office_hour:first-child {
  margin-top: 24px;
}

/* Google Map */
.clinic .info .googlemap {
  position: relative;
}

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

/* イラストマップ */
.clinic .info .illustmap {
  position: relative;
}

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

/* カレンダー */
.clinic .info .calendar_text {
  margin-top: 24px;
}

/* アクセス詳細 */
.clinic .info .list_access {
  margin-top: 16px;
}

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

.clinic_bg_box {
	position: relative;
	width: 100%;
	height: 400px;
}

.clinic_bg {
  width: inherit;
	height: inherit;
	background: url("../images/top_clinic_img_01.jpg") no-repeat center / cover;
}

/* ==============================================
  *SP 医院概要（パターン02）
============================================== */
@media screen and (max-width: 640px) {
  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 56px 16px;
  }

  .clinic .news .top_title {
    margin: 0 0 32px;
  }

  .clinic .news .top_title h2 {
    font-size: 175%;
  }

  .clinic .news .top_title .eng {
    margin-top: 8px;
    font-size: 160%;
  }

  /* ----- 医院概要 ----- */
  .clinic .info {
    padding: 16px 16px 40px;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 24px 16px 56px;
  }

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

  /* 所在地 */
  .clinic .info address .location {
    top: 4px;
  }

  /* 電話 */
  .clinic .info address .tel {
    font-size: 28px;
  }

  .clinic .info address .tel::before {
    top: 0;
  }

  /* FAX */
  .clinic .info address .fax {
    font-size: 24px;
  }

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

  /* 診療科目 */
  .clinic .info .speciality {
    align-items: center;
    gap: 8px;
    padding: 60px 8px 16px 8px;
		font-size: 100%;
  }

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

  /* Google Map */
  .clinic .info .googlemap iframe {
    height: 300px;
  }

  /* ------ アクセス ------ */
  .clinic .info .list_access {
    margin-top: 8px;
  }

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

@media screen and (max-width: 320px) {
  .clinic .info address > *::before {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  /* 所在地 */
  .clinic .info address .location {
    padding: 10px 0 10px 45px;
  }

  .clinic .info address .location::before {
    top: 5px;
  }

  /* 電話 */
  .clinic .info address .tel {
    padding: 10px 0 10px 45px;
    fzont-size: 24px;
  }

  .clinic .info address .tel::before {
    top: -1px;
  }

  /* FAX */
  .clinic .info address .fax {
    padding: 10px 0 10px 45px;
    font-size: 22px;
  }
}

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

  *ご挨拶

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

.greeting .inner {
	padding: 80px 0 144px;
}

.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-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
  font-size: 100%;
  line-height: 2;
  letter-spacing: 0.1em;
	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;
}

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

.greeting_slogan {
	color: var(--heading-color);
	font-family: "tbudrgothic-std", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 130%;
  line-height: 1.8;
  letter-spacing: 0.2em;
}

.greeting_slogan span {
	color: var(--main-color);
	font-size: 120%;
}

.greeting_img figure {
	position: relative;
	border-radius: 10px 10px 0 0;
}

.greeting_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
	border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
}

.greeting_img figure img {
	border-radius: 10px 10px 0 0;
  border: 1px solid var(--line-color);
  border-bottom: none;
}

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

.greeting_profile .position {
	margin-bottom: 8px;
}

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

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

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

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

.greeting_bg_box {
	position: absolute;
	right: 120px;
  bottom: 120px;
  width: 304px;
  height: 304px;
  border-radius: 5px;
}

.greeting_bg {
  position: relative;
  width: 100%;
	height: 100%;
  border-radius: 5px;
	background: url("../images/top_clinic_img_03.jpg") no-repeat center / cover;
}

.greeting_bg::before {
  position: absolute;
  bottom: -48px;
  right: -80px;
  z-index: -1;
  width: 160px;
  height: 160px;
  border-radius: 5px;
  background: var(--bg-color);
  content: "";
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting .inner {
    padding: 56px 16px 72px;
  }

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

  .greeting_left {
    width: 100%;
  }

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

  .greeting_slogan {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 110%;
  }

  .greeting_slogan span {
    font-size: 105%;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_bg_box {
    position: absolute;
    right: 16px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 5px;
    background: var(--bg-color);
  }

  .greeting_bg, .greeting_bg::before {
    display: none;
  }
}

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

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

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

.pickup .inner {
  width: 100%;
	padding: 120px 0 144px;
}

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

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

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

.pickup_img figure {
	position: relative;
}

.pickup_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
	border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
}

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

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 720px;
  margin: 0 0 0 -56px;
  padding: 56px 56px 72px;
	border-radius: 10px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.03);
  background: rgba(255, 255, 255, 0.95);
}

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

.pickup_title span {
	display: inline-block;
	margin-bottom: 16px;
  color: var(--sub-color);
	font-family: "alkaline", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 150%;
	line-height: 1.5;
	letter-spacing: 0.075em;
}

.pickup_title span em {
	color: var(--main-color);
	font-style: normal;
}

.pickup_title h2, .pickup_title h3 {
  color: var(--heading-color);
	font-family: "tbudrgothic-std", sans-serif;
	font-weight: 400;
	font-style: normal;
  font-size: 140%;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

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

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

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

.pickup_link .pickup_btn a {
	display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 15px 42px 15px 32px;
	border-radius: 30px;
	border: 1px solid var(--highlight-color);
  background: var(--highlight-color);
  color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
  font-size: 95%;
	line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

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

.pickup_link .pickup_btn a::before {
  display: block;
  position: absolute;
  top: 50%;
  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(--highlight-color);
}

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

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

.pickup_bg_box {
	position: relative;
	width: 100%;
	height: 400px;
}

.pickup_bg {
  width: inherit;
	height: inherit;
	background: url("../images/top_clinic_img_02.jpg") no-repeat center / cover;
}

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

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

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

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

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

  .pickup_title span {
    mbargin-bottom: 8px;
    font-size: 130%;
  }

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

  .pickup_text {
    margin: 24px 0;
  }

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

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

  .pickup_bg_box {
    height: 200px;
  }
}

@media screen and (max-width: 320px) {
  .pickup_img {
    width: calc(100% - 8px);
  }

  .pickup_inner {
    width: calc(100% - 8px);
    min-width: auto;
    padding: 24px 16px;
  }

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

  .pickup_link .pickup_btn a {
    font-size: 90%;
  }
}

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

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

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

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

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

.feature_item {
  display: flex;
  flex-flow: column;
	position: relative;
  width: calc(33.3333% - 21.3333px);
  border-radius: 10px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.03);
}

.feature_num {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
	position: absolute;
	top: -24px;
	left: -16px;
	z-index: 1;
  width: 88px;
  height: 88px;
  padding-top: 4px;
  border-radius: 50%;
  border: 1px solid rgba(133, 184, 228, 0.9);
  color: #ffffff;
	font-family: "alkaline", sans-serif;
	font-weight: 500;
	font-style: normal;
  font-size: 80%;
	line-height: 1.1;
	letter-spacing: 0.1em;
}

.feature_num::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  margin: auto;
  border-radius: 50%;
  background: rgba(133, 184, 228, 0.9);
  content: "";
}

.feature_num span {
  font-size: 180%;
}

.feature_img {
	border-radius: 10px 10px 0 0;
}

.feature_img figure {
	position: relative;
	border-radius: 10px 10px 0 0;
}

.feature_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
	border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
}

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

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 24px 24px 32px;
	border-radius: 0 0 10px 10px;
  background: #ffffff;
	color: var(--text-color);
  font-size: 105%;
  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;
  position: relative;
  z-index: 1;
  min-height: 70px;
  margin-bottom: 16px !important;
}

.feature_title h3 {
  color: var(--heading-color);
	font-family: "tbudrgothic-std", sans-serif;
	font-weight: 400;
	font-style: normal;
  font-size: 115%;
  line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 1px  1px 1px #ffffff, -1px  1px 1px #ffffff, 1px -1px 1px #ffffff, -1px -1px 1px #ffffff, 1px  0px 1px #ffffff, 0px  1px 1px #ffffff, -1px  0px 1px #ffffff, 0px -1px 1px #ffffff;
}

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

.feature_item .btn02 > * {
  padding: 13px 50px 13px 40px;
  font-size: 95%;
}

.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* 横並び */
.btnflex_feature .btn02 {
  width: calc(50% - 2px);
}

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

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

  .feature_list {
    gap: 56px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_num {
    top: -16px;
    left: -8px;
    width: 72px;
    height: 72px;
  }

  .feature_inner {
    font-size: 100%;
  }

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

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

  .feature_item .btn01 {
    text-align: center;
  }

  /* 横並び */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}

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

  *診療案内

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

.medical .inner {
  padding: 80px 0 144px;
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 40px;
  padding: 0 80px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 80px) / 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;
  align-items: center;
	position: relative;
	z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 40px 32px 56px;
	border-radius: 10px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.03);
  background: rgba(255, 255, 255, 0.95);
}

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

.medical_inner::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
	border-radius: 10px;
  border: 1px solid rgba(224, 224, 224, 0.4);
  content: "";
}

.medical_icon {
  position: relative;
	z-index: 1;
  width: 100%;
  max-width: 120px;
  margin: 0 auto 16px !important;
	padding: 16px;
	border-radius: 50%;
  background: var(--surface-color);
}

.medical_icon::before {
	position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  margin: auto;
	border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  content: "";
}

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

.medical_title h3 {
  color: var(--heading-color);
	font-family: "tbudrgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 115%;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
}

.medical_title_eng {
  margin-top: 8px;
  color: var(--sub-color);
	font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 90%;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-align: center;
}

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

.medical_btn {
	position: relative;
	z-index: 1;
  margin-top: auto;
}

.medical_btn span {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 10px 30px 10px 20px;
	border-radius: 25px;
  border: 1px solid var(--highlight-color);
	background: var(--highlight-color);
  color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 85%;
	line-height: 1.5;
  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: 14px;
	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(--highlight-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 {
    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;
  }

  .medical .inner {
    padding: 56px 16px 72px;
  }

  .medical_list {
    gap: 8px 8px;
    padding: 0;
  }

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

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

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

  .medical_inner::before {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }

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

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

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

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

@media screen and (max-width: 320px) {
  .medical_btn span {
    font-size: 65%;
  }
}

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

  *病状・病名から探す

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

.search .inner {
	padding: 80px 0 144px;
}

.search .tab_list {
  gap: 8px;
}

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

.search .panel {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 0 0 10px 10px;
  background: #ffffff linear-gradient(120deg, rgba(0, 104, 183, 0.1) 0%, rgba(133, 184, 228, 0.1) 100%);
}

.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 45px 10px 30px;
	border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.03);
  background: rgba(255, 255, 255, 1);
  color: var(--text-color);
	font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 100%;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.search_list li a::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 19px;
  z-index: 2;
	transform: translateY(-50%);
  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;
	content: "";
  transition: background 0.2s;
}

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

/* 矢印の背景 */
.search_list li a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
	transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--sub-color);
  background: var(--sub-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;
}

.search_img figure {
	position: relative;
}

.search_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
	border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
}

.search_img figure img {
	border-radius: 10px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.03);
}

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

  .search .top_title h2 {
    font-size: 145%;
  }

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

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

  .search .panel {
    padding: 16px;
  }

  .search_list {
    gap: 8px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 14px 45px 14px 30px;
  }

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

@media screen and (max-width: 320px) {
  .search .tab_list .tab {
    font-size: 100%;
  }
}

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

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

================================================================================================================================== */
.column {
  display: none !important; /* 医療コラムの表示が必要な場合は削除してください（初期制作のワイヤーにないため未装飾です）*/
  background: var(--bg-color);
}

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

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

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

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

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

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

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

  .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  position: relative;
	z-index: 1;
	background: linear-gradient(var(--surface-color), var(--surface-color)) bottom left / 100% 50% no-repeat;
}

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

#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: 250px !important;
  }
}
