@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
body::before {
  position: absolute;
  content: "";
  width: 68%;
  height: 1265px;
  background: url(../images/bg_dairiseki01.jpg) top left / cover no-repeat;
  top: 0;
  right: 0;
  opacity: 0.7;
}
.front {
  overflow: hidden;
}

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

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

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

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

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

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
    body::before {
        display: none;
    }
    h1 {
        margin: 0 auto;
    }
  section .inner {
    padding: 70px 20px;
  }

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

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

  *タイトル

================================================================================================================================== */
.top_title {
  margin-bottom: 100px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
    font-size: 140%;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    margin-top: -15px;
    letter-spacing: 0.12em;
}

.top_title .eng {
  display: inline-block;
  padding-bottom: 30px;
	background:linear-gradient(135deg,#4292b4,#208989,#247f65);
	-webkit-background-clip:text;
	-webkit-text-fill-color: transparent;
  font-size: 600%;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.13em;
  line-height: 1;
}

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

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

  .top_title .eng {
    font-size: 50px;
    padding-bottom: 0;
  }
}

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

  *メインビジュアル

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

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

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

.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}

.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}

.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.5s;
}

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

.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.5s;
}

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

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

.mvCatch p {
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

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

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

.open_bnr {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: inline-block;
  border-radius: 50%;
  text-shadow: 0px 0px 3px rgba(0,0,0, 0.3),
  0px 0px 15px rgba(0,0,0, 0.1);
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 120%;
  line-height: 1.5;
  text-align: center;
      font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
}

.open_bnr .date {
  font-size: 180%;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
}

.open_bnr .open_text {
margin: 0 0 22px;
    font-size: 300%;
    font-family: var(--en-font02);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}

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

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

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

/* 今すぐ来院する */
.mv_reservation_bnr {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  background: #fff;
  padding: 10px 10px 0 0;
}
.mv_reservation_bnr a {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
    width: 300px;
    height: 130px;
    font-size: 19px;
    padding: 10px 10px 10px 70px;
    letter-spacing: 0.12em;
    line-height: 1.5;  
}
.mv_reservation_bnr a:hover {
  background: var(--bg-color);
  color: var(--main-color);
}

.mv_reservation_bnr a::before {
  position: absolute;
  content: "";
  display: flex;
  background: url(../images/btn_arrow02.svg) center / 25% no-repeat,
  linear-gradient(135deg,#4292b4,#208989,#247f65);
  width: 60px;
  height: 60px;
  left: 15px;
  border-radius: 50%;
    animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 0.5s;
  animation-name: anim_h;
}
@keyframes anim_h {
  0% {
    transform: translate(0px, 0);
  }
  50% {
    transform: translate(5px, 0);
  }
  100% {
    transform: translate(5px, 0);
  }
}
.mv_reservation_bnr_inner > span {
  display: block;
  font-size: 70%;
  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: 400px;
    margin: 0;
  }

  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }

  .mvSlider .sliderBtn#mv_btnPrev {
    left: 10px;
  }

  .mvSlider .sliderBtn#mv_btnNext {
    right: 10px;
  }

  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }

  .mvCatch {
    top: auto;
    bottom: 20px;
    display: none;
  }

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

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }

  .mvContents {
    display: none;
  }

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

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

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

  .open_bnr {
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
  .sp_only {
    position: relative;
    padding: 40px 20px 22px;
  }
    .sp_only::before {
    position: absolute;
    content: "";
    width: 68%;
    height: 335px;
    background: url(../images/bg_dairiseki01.jpg) top left / cover no-repeat;
    top: 0;
    right: 0;
    opacity: 0.7;
    z-index: -1;
  }
  .mv_reservation_bnr {
    position: static;
    padding: 0;
    border: 1px solid var(--line-color);
}
.mv_reservation_bnr a {
    position: relative;
}
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.top_banner .inner {
  padding: 150px 50px 100px;
}
.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.5s;
}

.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;
  border-radius: 50%;
  color: #9e9e9e;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.5s;
}

#bannerSlider .bannerSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--line-color);
  font-size: 80%;
  transition: background 0.5s;
}
#bannerSlider .bannerSlider_arrow:hover {
    color: #fff;
}
#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--main-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.5s;
}

#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;
  }

  /* ----- スライダーバナー ----- */
  .top_banner {
    position: relative;
  }

  .top_banner .inner {
    padding: 10px 20px 40px;
  }
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }
#bannerSlider .splide__slide {
    min-height: 150px;
}
  /* スライダーの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::before {
  position: absolute;
  content: "";
  background: url(../images/bg_dairiseki02.jpg) top left / cover no-repeat;
  width: 20%;
  height: 500px;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
}
/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news::before {
    position: absolute;
    content: "";
    background: url(../images/news_bg.jpg) center right / cover no-repeat;
    width: 50%;
    height: 100%;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  padding: 100px 50px;
}
.news_box {
    background: url(../images/bg_dairiseki01.jpg) top left / cover no-repeat;
    padding: 60px 80px;
    width: 60%;
    margin-left: auto;
}
.clinic .news .news_left {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

.clinic .news .top_title {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.clinic .news .top_title h2 {
  line-height: 1;
  margin-bottom: 5px;
}
.clinic .news .top_title .eng {
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 500%;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 50px;
  padding: 100px 50px 120px;
}

.clinic .info .inner > * {
  width: calc(50% - 20px);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

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

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

.clinic .info address .location {
  padding: 5px 0 5px 50px;
}

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
}

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
}

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

.clinic .info address .note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 90%;
}

.clinic .info .speciality {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
  color: var(--main-color);
}

/* .clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
} */
.clinic .info .speciality span {
  border: 1px solid var(--main-color);
  width: calc(25%);
  text-align: center;
    padding: 5px;
}

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

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

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

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

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

@media screen and (max-width: 640px) {
.clinic::before {
    width: 40%;
    opacity: 0.4;
}
  .clinic .news .inner {
    padding: 200px 20px 40px;
  }
  .clinic .news::before {
    width: 100%;
    height: 250px;
  }
.news_box {
    width: 100%;
    padding: 40px 20px;
}
.clinic .news .top_title {
    gap: 10px;
}
.clinic .news .top_title .eng {
    font-size: 50px;
}
.clinic .news .top_title h2 {
    font-size: 17px;
    margin: 0 0 3px 0;
}
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
  }

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

  .clinic .info .speciality {
    gap: 10px;
    flex-wrap: wrap;
  }
.clinic .info .speciality span {
    width: calc(50% - 5px);
}
  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info address .location .zipcode {
    display: block;
  }
}
/* ==================================================================================================================================

  *コンセプト

================================================================================================================================== */
.concept {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.concept_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.concept_bg_img::before {
  content: "";
  position: fixed;
  background: 
  linear-gradient(rgba(0,0,0,0.2),rgba(11, 56, 43, 0.5)),
  url(../images/concept_bg.jpg) center / cover no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media print {
.concept_bg_img {
  background: 
  linear-gradient(rgba(0,0,0,0.2),rgba(11, 56, 43, 0.5)),
  url(../images/concept_bg.jpg) center / cover no-repeat;    
}
.concept_bg_img::before {
    display: none;
}
}
.concept .top_title {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.concept .top_title::before {
  position: absolute;
  content: "";
  background: url(../images/logo_B_w.svg) top left / cover no-repeat;
  width: 600px;
  height: 308px;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  z-index: -1;
}
.concept .top_title .eng {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.concept .top_title h2 {
  color: #fff;
}
.concept_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px 0 0;
  gap: 40px;
}

.concept_item {
  position: relative;
  z-index: 1;
  width: calc(33.333% - 27px);
  height: auto;
  min-height: 420px;
}


.concept_inner {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.concept_title {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
      --x-gradient: linear-gradient(90deg, var(--sub-color) 0 10px, transparent 0 calc(100% - 10px), var(--sub-color) calc(100% - 10px));
    --y-gradient: linear-gradient(var(--sub-color) 0 10px, transparent 0 calc(100% - 10px), var(--sub-color) calc(100% - 10px));
    position: relative;
    padding: 1rem;
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
    background-position: top, right, bottom, left;
}
.concept_title::before {
      content: "";
    display: block;
    display: block;
    width: 33px;
    height: 26px;
    background: var(--sub-color);
    -webkit-mask: url(../images/heart_img.svg) no-repeat center / cover;
    mask: url(../images/heart_img.svg) no-repeat center / cover;
    margin-bottom: 7px;
}
.concept_title h3 {
  color: var(--text-color);
    font-size: 170%;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
}
.top_concept_catch {
  text-align: center;
    font-size: 120%;
    color: #fff;
    letter-spacing: 0.15em;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.concept_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
}

.concept_text {
  color: var(--text-color);
  text-align: left;
  padding-top: 30px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}


/* ==============================================
  *SP コンセプト
============================================== */
@media screen and (max-width: 640px) {
  .concept {
    
  }
  .concept_bg_img::before {
    background: linear-gradient(rgba(0,0,0,0.2),rgba(11, 56, 43, 0.5)),
  url(../images/concept_bg_sp.jpg) center / cover no-repeat;
  }
  .concept .top_title::before {
    width: 300px;
    height: 155px;
    top: -20px;
  }
.top_concept_catch {
    font-size: 100%;
}
  .concept_list {
    padding: 40px 0 0;
    gap: 15px 10px;
  }

  .concept_item {
    width: 100%;
    min-height: auto;
  }

  .concept_inner {
    min-height: auto;
    padding: 20px;
  }

  .concept_title h3 {
    font-size: 110%;
  }
  .concept_title {
    min-height: 100px;
  }

}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
  position: relative;
}
.greeting::before {
    position: absolute;
    content: "Greeting";
    font-size: 240px;
    color: rgba(153, 140, 110, 0.05);
    top: 60px;
    left: -50px;
    z-index: -1;
    font-family: var(--en-font02);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
    line-height: 1;
}
.greeting::after {
    position: absolute;
    content: "";
    background: url(../images/bg_dairiseki02.jpg) top left / cover no-repeat;
    width: 34%;
    height: 65%;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0.5;
}
.greeting .inner {
  padding: 200px 50px 150px;
}
.greeting_box {
  position: relative;
  z-index: 1;
}

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

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

.greeting_left {
  flex-shrink: 0;
  width: 55%;
}
.greeting .top_title {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 0!important;
  padding-bottom: 58px;
  margin-top: -20px;
}
.greeting .top_title h2 {
  padding-bottom: 22px;
}
.greeting .top_title .eng {
  padding-bottom: 22px;
}
.greeting_message {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--sub-color);
    font-size: 120%;
    margin-bottom: 50px!important;
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.12em;
}
.greeting_message p {
    flex-shrink: 0;
}
.greeting_message::after {
    display: block;
    content: "";
    background: linear-gradient(90deg,#e4dfd3,#e4dfd3);
    width: 100%;
    height: 1px;
}
.greeting_text {
      font-size: 110%;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    line-height: 2.3;
}
.greeting_text_box > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_img {
  position: relative;
  height: 700px;
}
.greeting_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.greeting_profile {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  padding: 0 20px 30px;
  background: linear-gradient(rgba(255,255,255,0),rgba(11, 56, 43, 0.5));
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
}

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

.greeting_profile .name {
  font-size: 200%;
}
.greeting_profile .name span {
  font-size: 70%;
  padding-right: 10px;
}
.greeting_btn {
  margin-top: 50px;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting::before {
        font-size: 100px;
        left: -20px;
    white-space: nowrap;
    }
    .greeting::after {
        height: 400px;
    }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
.greeting .inner {
    padding: 70px 20px;
}
  .greeting_left {
    width: 100%;
  }
.greeting .top_title {
    padding-bottom: 25px;
}
.greeting .top_title .eng {
    padding-bottom: 10px;
}
.greeting_text {
    font-size: 100%;
}
.greeting_message {
    margin-top: 40px;
}
.greeting_img {
    height: auto;
}
  .greeting_btn {
    margin-top: 40px;
    text-align: center;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.medical .top_title {
    margin-bottom: 120px;
}
.medical .top_title {
  color: #fff;
}
.medical .top_title .eng {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.medical_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.medical_bg_img::before {
  content: "";
  position: fixed;
  background: 
 linear-gradient(rgba(0,0,0,0.2),rgba(11, 56, 43,0.5)),
  url(../images/medical_bg.jpg) center / cover no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media print {
.medical_bg_img {
    background: 
     linear-gradient(rgba(0,0,0,0.2),rgba(11, 56, 43,0.5)),
  url(../images/medical_bg.jpg) center / cover no-repeat;
}
.medical_bg_img::before {
    display: none;
}
}
.medical_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(16% - 10px);
  height: auto;
}

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

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

.medical_inner {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  padding: 6px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}
.medical_inner_box {
    display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
      --x-gradient: linear-gradient(90deg, var(--sub-color) 0 10px, transparent 0 calc(100% - 10px), var(--sub-color) calc(100% - 10px));
    --y-gradient: linear-gradient(var(--sub-color) 0 10px, transparent 0 calc(100% - 10px), var(--sub-color) calc(100% - 10px));
    position: relative;
    padding: 1rem;
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
    background-position: top, right, bottom, left;
}
.medical_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
  background: linear-gradient(135deg,#4292b4,#208989,#247f65);
  border-radius: 50%;
  transition: transform 0.5s, opacity 0.5s;
}
.medical_item:hover .medical_icon {
    transform: scale(1.2);
    opacity: 0.8;
}
.medical_title h3 {
  color: var(--text-color);
  font-size: 105%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
.medical_title h3 span {
  display: block;
  font-size: 80%;
}
.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
}

.medical_text {
  color: var(--text-color);
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.5s, color 0.5s, background 0.5s;
}

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

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

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

.medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 10px;
    width: 40%;
    margin-left: auto;
    transition: 0.5s;
    aspect-ratio: auto;
}
.medical_item:hover:nth-of-type(-n + 2) .medical_inner {
  width: 100%;
  aspect-ratio: auto;
  background: rgba(255,255,255,0.6);
}
.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 15px !important;
}

.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 130%;
}
.medical_item:nth-of-type(-n + 2)::before {
    position: absolute;
    content: "Pickup!";
    font-family: var(--en-font02);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
    line-height: 1;
    color: #fff;
    font-size: 250%;
    transform: rotate(-25deg);
    top: -10px;
    left: 10px;
    text-shadow: 
    0px 0px 3px rgba(42, 183, 182, 0.3),
    0px 0px 10px rgba(42, 183, 182, 0.3),
    0px 0px 10px rgba(42, 183, 182, 0.3),
    0px 0px 10px rgba(42, 183, 182, 0.3),
  0px 0px 15px rgba(42, 183, 182, 0.3);
}

/* ==============================================
  *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/medical_bg_sp.jpg) no-repeat center/cover !important;
  }
.medical .top_title {
    margin-bottom: 60px;
}
  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_icon {
    width: 50%;
  }

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

  /* ----- 先頭2つの設定----- */
  .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }
.medical_item:nth-of-type(-n + 2)::before {
    font-size: 20px;
        left: -10px;
        top: 4px;
}
  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 5px;
    width: 50%;
  }
  .medical_item:nth-of-type(-n + 2) .medical_inner_box {
    padding: 20px 5px;
  }
  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 60px;
  }

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

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

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

==================================================================================================================================*/
.feature {
  position: relative;
}
.feature::before {
    position: absolute;
    content: "Feature";
    font-size: 280px;
    color: rgba(153, 140, 110, 0.05);
    top: 102px;
    left: -32px;
    z-index: -1;
    font-family: var(--en-font02);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
    line-height: 1;
white-space: nowrap;
}

.feature .top_title {
  margin-bottom: 130px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 100px 30px;
}

.feature_item {
  position: relative;
  display: flex;
    height: auto;
    align-items: flex-start;
    width: 100%;
    margin-top: 60px;
    padding: 0 0 80px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(153, 140, 110, 0.2);
    margin-left: 60px;
}

.feature_item:nth-child(odd)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% * 2 + 200px);
  background: url(../images/bg_dairiseki03.jpg) top left / cover no-repeat;
  right: -300px;
  top: 160px;
  z-index: -1;
  opacity: 0.6;
}
.feature_item:nth-child(3n)::before {
  left: -300px;
}
.feature_item::after {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    background: url(../images/bg_dairiseki02.jpg) top left no-repeat;
    right: -65px;
    top: -65px;
    z-index: -1;
}
.feature_item:nth-child(odd)::after {
    right: auto;
    left: -72px;
}
.feature_img {
    width: 50%;
    height: 500px;
    flex-shrink: 0;
    margin: -60px 0 0 -60px;
}
.feature_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature_inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0;
  padding: 60px 60px 0 60px;
}

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

.feature_title{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
  --x-gradient: linear-gradient(90deg, var(--sub-color) 0 10px, transparent 0 calc(100% - 10px), var(--sub-color) calc(100% - 10px));
    --y-gradient: linear-gradient(var(--sub-color) 0 10px, transparent 0 calc(100% - 10px), var(--sub-color) calc(100% - 10px));
    position: relative;
    padding: 0;
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
    background-position: top, right, bottom, left;
}

.feature_title h3{
    font-size: 170%;
    line-height: 1.75;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    text-align: left;
    letter-spacing: 0.12em;
    margin-left: -40px;
    line-height: 1.5;
    padding-top: 15px;
}
.feature_title h3 span {
  color: var(--main-color);
  font-size: 120%;
  padding: 0 10px;
}
.feature_num {
    margin: 0 !important;
    font-size: 140px;
    color: rgba(153, 140, 110, 0.15);
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.07em;
    line-height: 1;
    white-space: nowrap;
}

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

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

.feature_item .btn01 > *{
    padding: 4px 40px 4px 30px;
    font-size: 100%;
    border-radius: 300px;
    width: 250px;
    background: var(--sub-color);
    color: #fff;
    border: 1px solid var(--sub-color);
    min-height: auto;
    transition: 0.5s;
}
.feature_item .btn01 > *:hover {
    background: #fff;
    color: var(--sub-color);
}
.feature_item .btn01 > *::before {
    left: auto;
     right: 18px;
     transition: 0.5s;
}
.feature_item .btn01 > *:hover::before {
    right: 12px;
    background: var(--sub-color);
}
.feature_item .btn01 > *::after {
    display: none;
}
.btnflex_feature{
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 5px;
  margin-top: auto;
}

/* 左右 */
.feature_item:nth-child(odd){
  flex-flow: row-reverse;
  margin-right: 60px;
  margin-left: 0;
  background: #fff;
}
.feature_item:nth-child(odd) .feature_inner{
  margin: 0;
}
.feature_item:nth-child(odd) .feature_img {
  margin: -60px -60px 0 0;
}
/* ボタン横並び */
.btnflex_feature .btn01{
  width: calc(50% - 2.5px);
}

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

@media screen and (max-width: 640px) {
  .feature{
    padding-bottom: 0;
  }
  .feature::before {
    font-size: 100px;
    top: 30px;
  }
  .feature_list{
    gap: 40px;
  }
.feature .top_title {
    margin-bottom: 60px;
}
  .feature_item,
  .feature_item:nth-child(odd){
    flex-flow: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .feature_item::after {
    width: 80px;
    height: 80px;
    top: -50px;
    right: -20px;
  }
.feature_item:nth-child(odd)::after {
    left: -20px;
}
  .feature_img,
  .feature_item:nth-child(odd) .feature_img{
    width: 100%;
    height: auto;
    margin: 0;
  }

  .feature_inner{
    width: 100%;
    min-height: auto;
    padding: 20px 20px 30px;
    margin: 0;
  }
.feature_num {
    position: absolute;
    font-size: 80px;
}
  .feature_title{
    margin-bottom: 15px!important;
    min-height: 85px;
  }
.feature_title h3 {
    font-size: 17px;
    text-align: center;
    margin-left: 0;
    padding-top: 0;
}
  .feature_item .btn01{
    text-align: center;
  }
.feature_inner > *:not(:last-child) {
    margin-bottom: 20px;
}
  /* 左右 */
  .feature_item:nth-child(even){
    flex-flow: column;
  }
  .feature_item:nth-child(even) .feature_inner{
    margin: 0 auto;
  }

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

.feature_item:nth-child(3n)::before {
    left: -110px;
}
.feature_item:nth-child(odd)::before {
    right: -110px;
}
.medical_bg_img::before {
    background: linear-gradient(rgba(0,0,0,0.2),rgba(11, 56, 43, 0.5)),
  url(../images/medical_bg_sp.jpg) center / cover no-repeat;
}
}
/* ==================================================================================================================================

  *お悩み

================================================================================================================================== */
.trouble {
  position: relative;
}
.trouble::before {
    position: absolute;
    content: "";
    background: url(../images/bg_dairiseki01.jpg) top left / cover no-repeat;
    width: 60%;
    height: 58%;
    top: -183px;
    left: 0;
    z-index: -1;
}
.trouble::after {
position: absolute;
    content: "Trouble";
    font-size: 240px;
    color: rgba(153, 140, 110, 0.05);
    top: 85px;
    right: -32px;
    z-index: -1;
    font-family: var(--en-font02);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
    line-height: 1;
    white-space: nowrap;
}
.trouble .inner {
  position: relative;
  max-width: 1920px;
  padding: 150px 0 0;
}
.trouble .top_title {
  text-align: left;
  margin-bottom: 80px;
}
.trouble .top_title h2 {
  font-size: 212%;
}
.trouble .top_title h2 span {
  color: var(--main-color);
  font-size: 120%;
  padding: 0 15px;
}
.trouble .top_title .eng {
  font-size: 140%;
  -webkit-text-fill-color: var(--sub-color);
  letter-spacing: 0.15em;
  padding-bottom: 50px;
}
.trouble_wrap {
    display: flex;
    align-items: flex-end;
    gap: 120px;
}
.trouble_img {
    position: relative;
    width: 40%;
    height: 700px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.trouble_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trouble_box {
  position: relative;
  padding: 0 100px 0 0;
}
.trouble_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.trouble_list a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 45px;
  width: calc(50% - 20px);
  color: var(--text-color);
  border-bottom: 1px solid var(--line-color);
      font-size: 120%;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}
.trouble_list a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 25px;
    height: 22px;
    background: var(--sub-color);
    -webkit-mask: url(../images/check_img.svg) no-repeat center / cover;
    mask: url(../images/check_img.svg) no-repeat center / cover;
    transform: translateY(-50%);
}
.trouble_list a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    display: block;
    width: 20px;
    height: 10px;
    background: #797979;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
    mask: url(../images/btn_arrow.png) no-repeat center / cover;
    transform: translateY(-50%);
    transition: right 0.5s, background 0.5s;
}
.trouble_list a:hover::after {
  right: 0;
}
/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
.trouble::after {
    font-size: 100px;
}
  .trouble .inner {
    padding: 70px 0 0;
  }
  .trouble .top_title {
    margin-bottom: 40px;
    text-align: center;
  }
  .trouble .top_title h2 {
    font-size: 170%;
  }
  .trouble .top_title .eng {
    font-size: 100%;
    padding-bottom: 20px;
  }
.trouble_wrap {
    flex-flow: column;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 50px;
}
.trouble_img {
    width: 100%;
    height: 300px;
}
.trouble_box {
    padding: 0 20px;
}
  .trouble_list {
    gap: 0 10px;
  }

  .trouble_item {
    width: calc(50% - 5px);
  }

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

  .trouble_inner {
    min-height: auto;
    padding: 20px 10px;
  }

.trouble_list a {
    width: calc(50% - 5px);
    padding: 15px 22px;
    font-size: 100%;
    letter-spacing: 0;
}
.trouble_list a::before {
    width: 15px;
    height: 14px;
}
.trouble_list a::after {
    width: 15px;
    height: 5px;
}
  .trouble_title h3 {
    font-size: 110%;
  }

}

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

  *病状、症状から探す

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

.search .tab_list {
  gap: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .search .panel {
    padding: 20px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

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

#infinitySlider {
  padding: 0;
}

#infinitySlider .splide__list {
  gap: 30px;
}

#infinitySlider .splide__slide {
  width: 400px !important;
}
#infinitySlider .splide__slide:nth-child(odd) {
  margin-top: 50px;
}
/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}
