@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 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

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

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

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

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

  *タイトル

================================================================================================================================== */
.top_title {
  margin-bottom: 50px;
  padding-top: 45px;
  color: var(--text2-color);
  line-height: 1.5;
  text-align: center;
  position: relative;
}

  /* 左寄せ */
.top_title.title_left {
  text-align: start;
}

.top_title::before{
  position: absolute;
  content: "";
  background: url(../images/mark.svg) no-repeat;
  top: 1px;
  right: 0;
  left: 0;
  margin: auto;
  width: 51px;
  height: 42px;
}

.top_title h2 {
  margin-top: 10px;
  font-size: 255%;
  font-family: var(--font-type);
  font-weight: 400;
  text-shadow: 0.02px 0 0 currentColor;
  line-height: 1;
}

.is-mac-safari .top_title h2{
  text-shadow:
    0.02px 0 0 currentColor,
   -0.02px 0 0 currentColor;
}

.top_title .eng {
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 3px;
  /* margin-bottom: 5px; */
  color: var(--main-color);
  font-size: 35px;
  font-family: var(--font-type-en);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #f39500, #ffe175, #dbe8a1, #42bdd8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
    font-weight: 600;
    text-shadow: none;
  }

  .top_title .eng {
    margin-top: 5px;
    font-size: 22px;
  }
}

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

  *メインビジュアル

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

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

.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.2s;
}

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

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

.mvSlider .sliderBtn#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%;
/*   top: 35%; */
  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);
} */

.mvCatch p {
  font-size: 220%;
  /* filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff); */
  color: var(--text2-color);
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0.02px 0 0 currentColor, 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8);
}

.is-mac-safari .mvCatch p {
  text-shadow: 0.02px 0 0 currentColor, -0.02px 0 0 currentColor, 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8);
}

.mvCatch p span {
  display: inline-block;
  margin: 0  0.3% 0 0;
  color: var(--main-color);
  text-shadow: 0 0 8px rgb(255, 255, 255 / 50%), 0 0 5px var(--accent-color-pink), 0 0 7px var(--bg-color), 0 0 7px var(--bg-color);
  font-size: 130%;
  font-style: normal;
}

.mvCatch p i {
  display: inline-block;
  margin: 0 0.7% 0 0;
  color: var(--sub-color-pink);
  text-shadow: 0 0 8px rgb(255, 255, 255 / 50%), 0 0 5px var(--sub-color), 0 0 7px var(--bg-color), 0 0 7px var(--bg-color);
  font-size: 130%;
  font-style: normal;
}

.mvCatch p em {
  display: inline-block;
  margin: 0 0.7% 0 0;
  color: var(--sub2-color);
  text-shadow: 0 0 8px rgb(255, 255, 255 / 50%), 0 0 5px var(--sub-color), 0 0 7px var(--bg-color), 0 0 7px var(--bg-color);
  font-size: 130%;
  font-style: normal;
}


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

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

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

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

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

.open_bnr {
  position: absolute;
  /* bottom: 5px; */
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  /* background: rgba(255, 255, 255, 0.4); */
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 250px;
  padding: 15px 15px 15px 50px;
  /* background: rgb(243 149 0 / 0.3); */
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

.open_bnr > div::before{
  position: absolute;
  content: "";
  width: 380px;
  height: 380px;
  left: -28px;
  /* bottom: -25px; */
  background: url(../images/open_bg.png) no-repeat center / 85%;
  z-index: -1;
  opacity: 0.9;
}

.open_bnr .date {
  position: relative;
  margin-bottom: 7px;
  margin-left: -17px;
  color: var(--text2-color);
  font-family: var(--font-type);
  font-size: 125%;
  font-style: normal;
  font-weight: 400;
  /* line-height: 1.5; */
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-shadow: 0.03px 0 0 currentColor;
}

.is-mac-safari .open_bnr .date {
  text-shadow:
    0.02px 0 0 currentColor,
   -0.02px 0 0 currentColor;
}

.open_bnr .date .orenge_bg {
  position: absolute;
  top: 53px;
  right: -23px;
  display: block;
  z-index: 1;
  margin-top: -50px;
  margin-left: 5%;
  color: #fff;
  font-size: 14px;
}

.open_bnr .date .orenge_bg::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 50%;
  left: 44%;
  /* right: 50%; */
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  border-radius: 50%;
  z-index: -1;
  text-align: center;
}

.open_bnr .open_text {
  margin: 0 0 1px 9px;
  color: var(--sub-color);
  font-family: var(--font-type-en);
  font-size: 127%;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.open_bnr .nairankai_tit {
  display: block;
  width: fit-content;
  margin: 0 0 7px;
  padding: 3px 50px 2px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--sub2-color);
  font-family: var(--font-type);
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.open_bnr .preview_date {
  margin-bottom: 5px;
  color: var(--text2-color);
  font-family: var(--font-type);
  font-size: 90%;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-shadow: 0.04px 0 0 currentColor;
  white-space: nowrap;
}

.is-mac-safari .open_bnr .preview_date {
  font-weight: 600;
  text-shadow: 0.04px 0 0 currentColor, -0.04px 0 0 currentColor;
}

.open_bnr .preview_date .orenge_bg {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-left: 3%;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.open_bnr .preview_date .orenge_bg:nth-of-type(1) {
  margin-right: 3% !important;
}

.open_bnr .preview_date .orenge_bg::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  border-radius: 50%;
  z-index: -1;
  text-align: center;
}

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

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

/* ---------- MV上のアイコン ---------- */
.mv_icon_wrap {
  position: absolute;
  right: 0;
  bottom: 50px;
  display: flex;
  gap: 15px;
}
.mv_icon_wrap {
  position: absolute;
  /* left: 280px; */
  left: 350px;
  bottom: 50px;
  display: flex;
  gap: 12px;
}
.mv_icon_wrap.online {
  left: 520px;
}
.mv_icon_wrap .mv_bnr_item .fa-user-md {
  font-size: 205%;
}
.mv_icon {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  max-width: 210px;
  max-height: 180px;
  padding: 4px;
}

.mv_icon_wrap .mv_bnr_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 170px;
  border-radius: 10px;
  gap: 5px;
  background: url(../images/mv_bnr_bg.png) no-repeat center / 80%, var(--sub-color);
  opacity: 1;
  transition: 0.2s;
}

.mv_icon_wrap .mv_bnr_item::before {
  position: absolute;
  content: "";
  /* border: 2px dashed var(--main2-color); */
  border: 2px dotted #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 95%;
  height: 95%;
  border-radius: 8px;
}

.mv_icon_wrap .mv_bnr_item:hover {
  opacity: 0.8;
}

.mv_icon_wrap .mv_bnr_item span {
  /* position: relative; */
  display: block;
  margin: 18px 2px 4px 2px;
  color: #fff;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  font-size: 115%;
  line-height: 1.5;
  text-align: center;
  z-index: 1;
}

.mv_icon_wrap .mv_bnr_item .fa-train,.mv_icon_wrap .mv_bnr_item .fa-user-md {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: -5px auto 5px;
  color: var(--main2-color-dark);
  text-align: center;
}

.mv_icon_wrap .mv_bnr_item .fa-train {
  font-size: 30px !important;
}

.mv_icon_wrap .mv_bnr_item .fa-user-md {
  font-size: 32px !important;
}

.mv_icon_wrap .mv_bnr_item em img{
  margin: -5px 0 5px;
  width: 40%;
}

.mv_icon_wrap .mv_bnr_item span i {
  display: inline-block;
  margin: 0 4px;
  color: #fff;
  font-style: normal;
  font-size: 130%;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0.03px 0 0 currentColor;
}

/* .mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item span i {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
} */

.mv_icon_wrap.online .mv_bnr_item span i {
    font-size: 19px;
}

.mv_icon_inner {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  width: 250px;
  height: 250px;
  background: linear-gradient(180deg, rgb(89, 173, 241), rgb(15 101 178));
  border-radius: 50%;
  box-shadow: 0px 0px 8px 0px rgb(116 120 123 / 41%);
}

.mv_icon:nth-of-type(1) .mv_icon_inner span i {
  display: inline-block;
  color: var(--sub-color);
  font-size: 1.4em;
  font-style: normal;
  font-weight: 700;
  margin: 0 4px 10px 0;
}

.mv_icon_wrap .mv_bnr_item .bnr_btn {
  position: absolute;
  bottom: 20px;
  font-size: 90%;
  letter-spacing: .06em;
  padding: 5px 28px 7px 0;
  z-index: 3;
}

.mv_icon_wrap .mv_bnr_item .bnr_btn::before {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  right: 8px;
  transform: translateY(-50%);
  width: 21px;
  height: auto;
  aspect-ratio: 1 / 1;
  transition: 0.2s;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.mv_icon_wrap .mv_bnr_item:hover .bnr_btn::before {
  right: -10px;
}

.mv_icon_wrap .mv_bnr_item .bnr_btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 11px;
  display: block;
  width: 14px;
  height: 7px;
  background: var(--main-color);
  mask: url(../images/btn_arrow.png) center center / cover no-repeat;
  transform: translateY(-50%);
  transition: 0.2s;
}

.mv_icon_wrap .mv_bnr_item:hover .bnr_btn::after {
  right: -7px;
}

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

.sp_only {
  display: none;
}

@media screen and (min-width: 641px) and (max-width: 1560px) {
  .mvContents {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 1000px;
  }
  .mainvisual::before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0px;
    width: 456px;
    height: 247px;
    background: url(../images/mv_l_bt.png) left bottom -9px / 65% auto no-repeat;
    z-index: 2;
  }
}

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

  .mainvisual::before {
    background: url(../images/mv_l_bt.png) no-repeat bottom -9px left / 50%;
  }

  /* ----- スライダーの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; */
    bottom: calc(50% - 70px);
    display: none;
  }

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

  .mvCatch p {
    font-size: 130%;
    font-weight: 600; /* ← iOS対策の核心 */
    line-height: 1.75;
    /* filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff); */
    text-shadow: 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8), 0 0 10px rgba(255, 255, 255, .8);
  }

  .mvContents {
    display: none;
  }

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

  .sp_only .inner {
    /* padding: 0 20px; */
    padding: 30px 20px;
  }

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

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

  .open_bnr .date,.preview_date,.nairankai_tit {
    font-weight: 600 !important;
    text-shadow: unset !important;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    /* padding: 15px 20px; */
    padding: 10px 20px 35px;
    border-radius: 0;
  }

  .open_bnr > div {
    position: relative;
  }

  .open_bnr > div::before {
    position: absolute;
    content: "";
    width: 320px;
    height: 320px;
    transform: translateX(-50%) !important;
    left: 50%;
    right: auto;
    margin: auto;
    bottom: -45px;
    background: url(../images/open_bg.png) no-repeat center / 90%;
    z-index: -1;
    opacity: 0.9;
  }

  .mv_icon_wrap {
    position: static;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 380px;
    margin: 20px auto;
  }

  .mv_icon {
    padding: 0;
    width: calc(100% / 2 - 10px);
    height: auto;
  }
  
  /* .mv_icon_inner{
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;	
    min-width: 148px;  
    min-height: unset;
    line-height: 1.2;
  } */

  .mv_icon_wrap .mv_bnr_item{
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;	
    min-width: 148px;  
    min-height: unset;
    line-height: 1.2;
  }

  .mv_icon_wrap .mv_bnr_item span {
    /* margin-top: 9px; */
    margin: 0 2px;
    font-size: min(4.5vw, 17px) !important;
  }

  .mv_icon_wrap .mv_bnr_item span i {
    margin: 0 2px;
    color: var(--text-color2);
    font-style: normal;
    font-size: min(3.6vw, 20px) !important;
    font-weight: 600;
    line-height: 1.5;
    text-shadow:none;
  }
  
  .mv_icon_wrap .mv_bnr_item .fa-user-md {
    top: 23px;
    font-size: 30px !important;
  }

  .mv_icon_wrap .mv_bnr_item .fa-train {
    top: 23px;
    font-size: 27px !important;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

.top_banner .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}

/* インプットバナー */
.top_banner .input .banner_slide {
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--bg-color);
}

.top_banner .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

.top_banner .input a.banner_slide:hover {
  background: #f5f5f5;
}

.top_banner .input .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_banner .input .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}

.top_banner .input .slide_title {
  margin: 0 auto 10px;
  padding: 5px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 110%;
  line-height: 1.5;
}

.top_banner .input .slide_content {
  font-size: 90%;
}

/* ----- グリッドバナー ----- */
.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 13.3333333333px);
}

/* ----- スライダーバナー ----- */
#bannerSlider .splide {
  position: relative;
  z-index: 1;
}

#bannerSlider .splide__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* スライドの設定  */
#bannerSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

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

#bannerSlider .bannerSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  background: var(--main-color);
  border-radius: 50%;
  font-size: 80%;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--text-color);
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
  z-index: 1;
  display: flex;
  gap: 15px;
  margin: 30px auto 0;
}

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

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

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

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

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

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

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

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

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

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

==================================================================================================================================*/
.clinic {
  position: relative;
  background: url(../images/clinic_bg_l_top.png) no-repeat left top / 25%, url(../images/clinic_bg_bt_r.png) no-repeat right bottom / 25%, linear-gradient(135deg, rgb(244 158 15 / 15%), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(244 158 15 / 15%)); 
  z-index: 1;
}

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

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

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

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

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 30px 40px 80px;
}

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

.illustmap img {
  border-radius: 15px;
}

.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 {
  display: block;
  margin-right: 10px;
}

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
}

.clinic .info address .tel a {
  color: var(--sub-color);
  font-family: var(--font-type-en);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  color: var(--sub-color);
  font-family: var(--font-type-en);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.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;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 10px;
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-shadow: 0.02px 0 0 currentColor;
}

.is-mac-safari .clinic .info .speciality .title {
  text-shadow:0.02px 0 0 currentColor, -0.02px 0 0 currentColor;
}

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

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

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

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

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

@media screen and (min-width: 641px) and (max-width: 1560px) { 
  .clinic {
    background: url(../images/clinic_bg_l_top.png) left top / 20% auto no-repeat, url(../images/clinic_bg_bt_r.png) right bottom / 25% auto no-repeat, linear-gradient(135deg, rgba(244, 158, 15, 0.32), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(244, 158, 15, 0.32));
  }
} 

@media screen and (max-width: 640px) {
  .clinic {
    background: url(../images/clinic_bg_l_top.png) no-repeat left top / 50%, url(../images/clinic_bg_bt_r.png) no-repeat right bottom / 50%, linear-gradient(135deg, rgb(244 158 15 / 32%), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(244 158 15 / 32%));
  }

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

  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
  }

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

  .clinic .info .speciality .title {
    font-weight: 600;
    text-shadow: none;
  }

  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

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


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

  *ご挨拶

================================================================================================================================== */
.greeting {
  position: relative;
  background: url(../images/greeting_bg.png) no-repeat bottom center / 100%, linear-gradient(180deg, rgb(255 255 255 / 100%), rgb(255 255 255 / 80%), rgb(244 158 15 / 10%), rgba(244 158 15 / 20%))
}
.greeting_box {
  position: relative;
  z-index: 1;
}

.greeting_box::before {
  position: absolute;
  content: "";
  top: -36px;
  right: calc(50% - 620px);
  width: 310px;
  height: 254px;
  background: url(../images/greeting_mark.png) no-repeat center / 60%;
  z-index: -1;
}

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

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

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

.greeting_left p {
    font-feature-settings: "palt";
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 2.3;
}

.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_img{
	text-align:center;
}
.greeting_img img {
    border-radius: 10px;
	max-width: 320px;
}

.greeting_profile {
  position: relative;
  width: 90%;
  margin: -30px auto 0;
  padding: 20px;
  background: linear-gradient(135deg, rgb(243 149 0 / 65%), #ffe175, #dbe8a1, rgb(66 189 216 / 65%));
  border-radius: 10px;
  color: var(--text3-color);
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
  text-shadow: 0.04px 0 0 currentColor;
}

.is-mac-safari .greeting_profile {
  text-shadow: 0.02px 0 0 currentColor, -0.02px 0 0 currentColor;
}

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

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

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

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

  .greeting_left {
    width: 100%;
  }
	.greeting_img img{
		max-width:280px;
	}

  .greeting_profile {
    font-weight: 600;
    text-shadow: none;
  }

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

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

  *診療案内

================================================================================================================================== */
.medical {
  background: linear-gradient(rgb(250 208 125 / 20%), rgb(250 208 125 / 20%)), url(../images/medical_bg.jpg) no-repeat center/cover !important;
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title span {
  color: var(--main-color);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  /* width: calc(25% - 15px); */
  width: calc(33.3% - 15px);
  height: auto;
}

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

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

.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;
  /* min-height: 270px; */
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid #fff; 
  border-radius: 15px;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.medical_item:hover .medical_inner {
  background: var(--bg-color);
  border: 3px solid var(--main2-color); 
  border-radius: 15px;
}

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

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

.medical_icon {
  position: relative;
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 15px !important;
  padding: 11%;
  border-radius: 50%;
}

.medical_item:nth-of-type(2) .medical_icon {
  padding: 11%;
} 

.medical_item:nth-child(odd) .medical_icon{
  background: url(../images/top_medical_bg_orenge.png) no-repeat center / 100%;
}

.medical_item:nth-child(even) .medical_icon{
   background: url(../images/top_medical_bg_blue.png) no-repeat center / 100%;
}

.medical_title h3 {
  color: var(--text2-color);
  font-family: var(--font-type);
  font-size: 130%;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0.04px 0 0 currentColor;
}

.is-mac-safari .medical_title h3 {
  text-shadow: 0.02px 0 0 currentColor, -0.02px 0 0 currentColor;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-family: var(--font-type-en);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

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

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

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

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

/* ----- 先頭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/medical_bg_sp.jpg) no-repeat center/cover !important;
  }

  .medical_list {
    gap: 15px 10px;
    margin: 0;
    align-items: stretch;
    /* min-height: 230px; */
  }

  .medical_item {
    width: calc(50% - 5px);
    /* min-height: 212px; */
    min-height: 227px;
  }

  .medical_item:nth-of-type(5) {
    min-height: 190px;
  }

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

  .medical_inner {
    min-height: auto;
    padding: 110px 10px 20px;
    aspect-ratio: auto;
  }

  .medical_icon {
    position: absolute;
    top: 20px;
    width: 60%;
  }

  .medical_title {
    margin-top: 10px;
  }

  .medical_title h3 {
    font-size: 110%;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 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%;
  } */
}

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

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

==================================================================================================================================*/
.feature {
  position: relative;
  background: url(../images/feature_l_top_bg.png) no-repeat left top / 20%, url(../images/frature_bg_r_bt.png) no-repeat bottom right / 35%, url(../images/feature_bg_bt.png) no-repeat bottom center / 100%, var(--bg-color);
}

.feature .inner {
  padding-bottom: 175px;
}

.feature_list{
  display: flex;
  flex-flow: wrap;
  gap: 70px 30px;
}

.feature_item{
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  margin-top: 50px;
}

.feature_item::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 33px;
  width: 191px;
  height: 103px;
  background: url(../images/feature_img_l_bg.png) no-repeat left top / 100%;
  z-index: 4;
}

.feature_item:nth-child(odd):before {
  position: absolute;
  content: "";
  top: 4px;
  left: 33px;
  width: 191px;
  height: 103px;
  background: url(../images/feature_img_l_bg_odd.png) no-repeat left top / 100%;
  z-index: 4;
}


.feature_item::after {
  position: absolute;
  content: "";
  bottom: 40px;
  right: calc(50% + 100px);
  width: 105px;
  height: 101px;
  background: url(../images/feature_img_r_bg.png) no-repeat center bottom / 100%;
  z-index: 4;
}


.feature_img{
  position: relative;
  flex-shrink: 0;
  width: 500px;
  height: 333px;
  -webkit-mask: url(../images/mask.svg) center / contain no-repeat;
  mask: url(../images/mask.svg) center / contain no-repeat;
  color: transparent;
  /* margin-top: -50px; */
  z-index: 3;
}

.feature_inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  /* padding: 50px 30px 50px; */
  background: rgba(255, 255, 255, 80%);
  border-radius: 20px;
  /* padding: 50px 60px; */
  padding: 60px 50px 60px 90px;
}

.feature_inner > p {
  width: 74%;
  font-feature-settings: "palt";
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.feature_item:nth-last-of-type(5) .feature_inner > p {
  width: 62%;
}  

.feature_item .feature_inner::before{
  position: absolute;
  content: "";
  right: 10px;
  bottom: 10px;
  width: 400px;
  height: 400px;
  z-index: -1;
}

.feature_item:nth-of-type(1) .feature_inner::before{
  background: url(../images/top_illustration_feature01.png) no-repeat bottom 20px right 20px / 40%;
}

.feature_item:nth-of-type(2) .feature_inner::before{
  background:url(../images/top_illustration_feature02.png) no-repeat bottom 20px right 20px / 40%;
}

.feature_item:nth-of-type(3) .feature_inner::before{
  background:url(../images/top_illustration_feature03.png) no-repeat bottom 20px right 20px / 35%;
}

.feature_item:nth-of-type(4) .feature_inner::before{
  background:url(../images/top_illustration_feature04.png) no-repeat bottom 20px right 20px / 40%;
}

.feature_item:nth-of-type(5) .feature_inner::before{
  background: url(../images/top_illustration_feature05.png) no-repeat bottom right 20px / 50%;
}

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

.feature_title{
  display: flex;
  flex-flow: wrap;
  align-items: center;
  margin-bottom: 30px !important;
  gap: 0 40px;
}

.feature_title h3 {
  position: relative;
  width: 84%;
  background: url(../images/feature_h3_line.png) repeat-x bottom left / 20px 6px;
  margin: 0 0 5px !important;
  padding-bottom: 7px;
  font-size: 150%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  text-shadow: 0.04px 0 0 currentColor;
}

.is-mac-safari .feature_title h3 {
  text-shadow: 0.02px 0 0 currentColor, -0.02px 0 0 currentColor;
}

.feature_item:nth-child(odd) .feature_title h3 {
  color: var(--sub-color);
}

.feature_item:nth-child(even) .feature_title h3 {
  color: var(--main-color);
}

/* .feature_item:nth-child(5) .feature_title h3 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
} */

.feature_num {
  position: relative;
  width: fit-content;
  margin: 0 0 5px !important;
  color: var(--sub2-color);
  font-family: var(--font-type-en);
  font-size: 120%;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  z-index: 2;
}

.feature_num::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 37%;
  right: 0;
  transform: translate(-50%, -50%);
  /* margin: auto; */
  width: 124px;
  height: 110px;
  z-index: -1;
  opacity: 0.4;
}

.feature_item:nth-child(odd) .feature_num::before  {
  background: url(../images/point_odd_bg.png) no-repeat center/ cover;
}

.feature_item:nth-child(even) .feature_num::before  {
   background: url(../images/point_even_bg.png) no-repeat center/ cover;
}

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

.feature_item .feature_num span {
  color: #fff;
  font-size: 235%;
}

.feature_item:nth-child(odd) .feature_num span {
  text-shadow: 0 0 3px var(--sub-color), 0 0 5px var(--sub-color), 0 0 5px var(--sub-color), 0 0 8px var(--sub-color);
}

.feature_item:nth-child(even) .feature_num span {
  text-shadow: 0 0 3px var(--main-color), 0 0 5px var(--main-color), 0 0 5px var(--main-color), 0 0 8px var(--main-color);
}

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

.feature_item .btn01 > *{
  padding: 10px 40px 10px 30px;
  font-size: 95%;
}

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

/* 左右 */
/* .feature_item:nth-child(even){
  flex-flow: row-reverse;
}

.feature_item:nth-child(even) .feature_inner{
  margin: 0 -50px 0 0;
} */

/* ボタン横並び */
.btnflex_feature .btn01{
  width: calc(50% - 2.5px);
}

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

@media screen and (max-width: 640px) {
  .feature{
    background: url(../images/feature_l_top_bg.png) no-repeat left top / 50%, url(../images/frature_bg_r_bt.png) no-repeat bottom right / 70%, url(../images/feature_bg_bt.png) no-repeat bottom -5px center / 100%, var(--bg-color);
    padding-bottom: 0;
  }

  .feature_title h3 {
    font-weight: 600;
    text-shadow: none;
  }

  .feature .inner {
    padding-bottom: 80px;
  }
  
  .feature_list{
    gap: 40px;
  }

  .feature_item{
    flex-flow: column;
    width: 100%;
    margin: 0;
  }

  .feature_item::before {
    position: absolute;
    content: "";
    top: -28px;
    left: 0;
    width: 191px;
    height: 103px;
    background: url(../images/feature_img_l_bg.png) no-repeat left top / 100%;
    z-index: 4;
  }

  .feature_item:nth-child(odd):before {
    position: absolute;
    content: "";
    top: -28px;
    left: 10px;
    width: 191px;
    height: 103px;
    background: url(../images/feature_img_l_bg_odd.png) no-repeat left top / 100%;
    z-index: 4;
  }


  .feature_item::after,.feature_item:nth-child(even)::after {
    position: absolute;
    content: "";
    top: 183px;
    bottom: auto;
    right: 0;
  }

  .feature_item:nth-child(even) .feature_num::before,.feature_item:nth-child(odd) .feature_num::before {
    background-size: 70%;
    top: 38%;
  }

  /* .feature_item:nth-child(even)::after {
    top: 183px;
    bottom: auto;
    right: 0;
  } */

  /* .feature_num{
    margin: 0 auto 5px !important;
  } */

  .feature_num {
    position: absolute;
    top: -2px;
    left: 6%;
    margin: 0 auto 5px !important;
    font-size: 90%;
    /* background-size: 50%; */
  }

  .feature_item .feature_num span {
    font-size: 200%;
  } 

  .feature_img{
    width: 100%;
    height: auto;
    margin: 0;
  }

  .feature_inner{
    width: 100%;
    min-height: auto;
    padding: 30px 20px 150px;
    margin: 0;
  }

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

  .feature_title h3 {
    width: 100%;
    margin: 35px 0 5px !important;
  }

  .feature_inner > p, .feature_item:nth-last-of-type(5) .feature_inner > p  {
    width: 100%;
  }

  .feature_item:nth-child(3) .feature_title h3 span {
    display: inline-block !important;
  }

    .feature_item:nth-of-type(1) .feature_inner::before{
    background: url(../images/top_illustration_feature01.png) no-repeat bottom 20px right 20px / 30%;
  }

  .feature_item:nth-of-type(2) .feature_inner::before{
    background:url(../images/top_illustration_feature02.png) no-repeat bottom 20px right 20px / 30%;
  }

  .feature_item:nth-of-type(3) .feature_inner::before{
    background:url(../images/top_illustration_feature03.png) no-repeat bottom 20px right 20px / 30%;
  }

  .feature_item:nth-of-type(4) .feature_inner::before{
    background:url(../images/top_illustration_feature04.png) no-repeat bottom 20px right 20px / 30%;
  }

  .feature_item:nth-of-type(5) .feature_inner::before{
    background: url(../images/top_illustration_feature05.png) no-repeat bottom right 20px / 40%;
  }

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

  /* 左右 */
  /* .feature_item:nth-child(even){
    flex-flow: column;
  }
  .feature_item:nth-child(even) .feature_inner{
    margin: 0 auto;
  } */

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

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

  *病状、症状から探す

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

.search .tab_list {
  gap: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .search .panel {
    padding: 20px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

  *医療コラム（パターン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: 10px;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

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