@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 120px 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;
  font-family: var(--main-font);
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 135%;
  letter-spacing: 0.1em;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-family: var(--sub-font);
  font-size: 70px;
  letter-spacing: .05em;
}

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

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

  .top_title .eng {
    font-size: 45px;
  }
}

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

  *メインビジュアル

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

.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%;
  position: relative;
}

.mvImg::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../images/mv_wave.png) no-repeat center / cover;
  z-index: 1;
}

.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%;
  font-family: var(--main-font);
  letter-spacing: 0.1em;
}
.mvCatch p img {
  width: 800px;
}

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

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

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

.open_bnr {
  position: absolute;
  bottom: 0;
  display: inline-block;
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
/*   background: linear-gradient(to bottom, #e5878c 0%, #eba662 75%, #e7d000 93%, #dde3a0 98%); */
  background: #ada291;
  border-radius: 50%;
  font-family: var(--main-font);
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}

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

.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 200%;
}

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

.nairankai_date {
    font-size: 124%;
}

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

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

/* バナー */
.bnr_box {
  position: absolute;
  left: 305px;
  bottom: 0;
  display: flex;
  gap: 15px;
}

.bnr_box li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  font-family: var(--main-font);
  font-style: normal;
  letter-spacing: .1em;
  line-height: 1.6;
  transition: opacity 0.15s;
}

.bnr_box li:nth-child(1) {
  background: url(../images/mv_bnr01.png) no-repeat center / cover;
}

.bnr_box li:nth-child(2) {
  background: url(../images/mv_bnr02.png) no-repeat top / cover;
}

.bnr_box li a {
	display: flex;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	color: #654720;
	/*追記*/
	flex-wrap: wrap;
	font-size: 120%;
	background: rgb(255 255 255 / 90%);
}

.bnr_box li p{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: inherit;
  flex-wrap: wrap;
  font-weight: 900;
}
.bnr_box li p span,
.bnr_box li a span{
	width: 100%;
	font-size: 85%;
}
.bnr_box li:has(a):hover {
	opacity: 0.8;
}
/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
    background: url(../images/mv_wave.png) no-repeat center / 768px auto;
  }

  .mvImg::before {
    height: 48px;
  }

  /* ----- スライダーの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: 150px;
    transform: none;
    display: none;
  }

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

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
  }

  /* .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: 10px;
    width: 100%;
  }

  .mainvisual .open_bnr {
    display: none;
  }

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

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

  .bnr_box {
    left: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .bnr_box li {
    height: 32vw;
    width: 32vw;
    padding: 6px;
  }

  .bnr_box li a {
    font-size: min(12px, 100%);
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.top_banner {
  position: relative;
}

.top_banner::before {
  width: 800px;
  height: 700px;
  background: url(../images/bg_deco.png) no-repeat top / contain;
  border-radius: 50px;
  position: absolute;
  content: "";
  top: 30px;
  right: -100px;
  z-index: -2;
}

.top_banner .inner {
  padding: 100px 0;
}

.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(50% - 10px);
}

/* ----- スライダーバナー ----- */
#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) {
  .top_banner::before {
    width: 500px;
    height: 440px;
  }

  .top_banner .inner {
    padding: 70px 20px;
  }
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

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

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

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

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

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

.clinic .inner {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 120px;
}

#mp-title {
  width: 75%;
}

/* ----- お知らせ ----- */
.clinic .news .top_title h2 {
  font-size: 135%;
}

.clinic .news .top_title .eng {
  font-size: 50px;
}

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

/* ----- 医院概要 ----- */
/* .clinic .info .office_hour .table_wrap {
  background: #ffffff;
}

.clinic .info .office_hour .title {
  background: #ffffff;
}

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
}

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  line-height: 1;
}

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

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

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

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

.clinic .info .btn01 {
  margin-top: 20px;
  text-align: center;
} */

@media screen and (max-width: 640px) {
  /* .clinic .inner > * {
    width: 100%;
  } */

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

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

  #mp-title {
    width: 100%;
  }

  #mp-title .news_item a {
    border-radius: 15px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 15px;
  }

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

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

  *ご挨拶

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

.greeting::before {
  width: 800px;
  height: 675px;
  background: url(../images/bg_deco.png) no-repeat top / contain;
  border-radius: 50px;
  position: absolute;
  content: "";
  top: 50px;
  right: -150px;
  z-index: -2;
}

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

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

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

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

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

.greeting_text {
  font-size: 16px;
}

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

.greeting_text h3 {
  font-family: var(--main-font);
  font-size: 150%;
  letter-spacing: .1em;
}

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

.greeting_profile {
  margin-top: 25px;
  font-family: var(--main-font);
  line-height: 1.75;
  text-align: center;
}

.greeting_profile .position {
  margin: 0 auto;
  padding: 20px;
  width: 85%;
  background: var(--bg-color);
  font-size: 130%;
  position: relative;
}

.greeting_profile .position::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 103%;
  height: 110%;
  background: url(../images/name_deco01.png) no-repeat top left / 25px auto, url(../images/name_deco02.png) no-repeat top right / 25px auto, url(../images/name_deco03.png) no-repeat bottom left / 25px auto, url(../images/name_deco04.png) no-repeat bottom right / 25px auto;
  z-index: 1;
}


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

.greeting_btn {
  margin-top: 50px;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting::before {
    width: 600px;
    height: 500px;
    top: 200px;
    right: -100px;
  }

  .greeting .inner {
    padding: 70px 20px;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_text {
    font-size: 15px;
  }

  .greeting_img {
    margin: 0 auto;
    width: 85%;
  }

  .greeting_profile {
    margin-top: 30px;
  }

  .greeting_profile .position {
    margin: 0 auto;
    width: 85%;
    font-size: 110%;
  }

  .greeting_profile .position::before {
    background: url(../images/name_deco01.png) no-repeat top left / 20px auto, url(../images/name_deco02.png) no-repeat top right / 20px auto, url(../images/name_deco03.png) no-repeat bottom left / 20px auto, url(../images/name_deco04.png) no-repeat bottom right / 20px auto;
  }

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

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

  *診療案内

================================================================================================================================== */
.medical {
  background: url(../images/stripe.jpg) repeat top left / auto;
  position: relative;
}

.medical::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 70px;
  background: url(../images/wave01.png) no-repeat center / cover;
  transform: rotate(180deg);
  z-index: 1;
}

.medical::after {
  position: absolute;
  top: -20px;
  left: 10%;
  content: "";
  width: 130px;
  height: 130px;
  background: url(../images/bird.png) no-repeat center / cover;
  transform: rotate(-20deg);
  z-index: 2;
}

.medical .inner {
  padding: 150px 0 170px;
}
.medical .top_title span {
  color: var(--main-color);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% / 3) - (100px / 3));
  height: auto;
  background: rgb(255 255 255 / 70%);
  border-radius: 50%;
  aspect-ratio: 1;
}

.medical_item::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 103%;
  height: 103%;
  background: url(../images/yellow_circle.png) no-repeat center / contain;
  z-index: -1;
}

.medical_item:nth-child(2)::before {
  background: url(../images/ore_circle.png) no-repeat center / contain;
}

.medical_item:nth-child(3)::before {
  background: url(../images/pink_circle.png) no-repeat center / contain;
}

.medical_item:nth-child(4)::before {
  background: url(../images/green02_circle.png) no-repeat center / contain;
}

.medical_item:nth-child(5)::before {
  background: url(../images/green_circle.png) no-repeat center / contain;
}

.medical_item:nth-child(6)::before {
  background: url(../images/blue_circle.png) no-repeat center / contain;
}

.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 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  text-align: center;
}

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

.medical_icon {
  margin: 0 auto 15px !important;
  width: auto;
}

.medical_icon img {
  width: auto;
  max-height: 80px;
}

.medical_title h3 {
  font-size: 135%;
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: 0.15em;
}

.medical_title_eng {
  margin-top: 5px;
  color: #e7d000;
  font-family: var(--sub-font);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
}

.medical_item:nth-child(2) .medical_title_eng {
  color: #eba662;
}

.medical_item:nth-child(3) .medical_title_eng {
  color: #e5878c;
}

.medical_item:nth-child(4) .medical_title_eng {
  color: #a6b132;
}

.medical_item:nth-child(5) .medical_title_eng {
  color: #69ad7e;
}

.medical_item:nth-child(6) .medical_title_eng {
  color: #5ea9b4;
}

.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 .inner {
    padding: 70px 20px;
  }

  .medical::before {
    height: 28px;
    background: url(../images/wave01.png) no-repeat center / 768px auto;
  }

  .medical::after {
    width: 75px;
    height: 75px;
  }

  .medical_list {
    gap: 10px;
  }

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

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

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

  .medical_icon {
    margin: 0 auto 5px !important;
    width: 50%;
    max-width: 40px;
  }

  .medical_icon img {
    width: auto;
  }

  .medical_title h3 {
    font-size: min(3vw, 110%);
  }

  .medical_title_eng {  
    font-size: min(2vw, 10px);
    line-height: 1.2;
    letter-spacing: .1em;
  }

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

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

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

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

.feature::before {
  width: 1620px;
  height: 100%;
  background: url(../images/beige_bg.jpg) repeat top / auto;
  border-radius: 50px;
  border: 2px solid #fff;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.feature .inner {
  max-width: 1400px;
  padding: 120px 0;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
  justify-content: center;
}

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(28% - 20px);
  height: auto;
  position: relative;
}

.feature_num {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  margin: 0 0 0 !important;
  padding: 20px;
  font-size: 30px;
  letter-spacing: 0;
  width: fit-content;
  line-height: 1;
}

.feature_num span {
  color: #fff;
  font-family: var(--sub-font);
  font-size: 140%;
}

.feature_item:nth-child(1) .feature_num {
  background: url(../images/yellow_feature_num.png) no-repeat center / contain;
}

.feature_item:nth-child(2) .feature_num {
  background: url(../images/orange_feature_num.png) no-repeat center / contain;
}

.feature_item:nth-child(3) .feature_num {
  background: url(../images/pink_feature_num.png) no-repeat center / contain;
}

.feature_item:nth-child(4) .feature_num {
  background: url(../images/green_feature_num.png) no-repeat center / contain;
}

.feature_item:nth-child(5) .feature_num {
  background: url(../images/green02_feature_num.png) no-repeat center / contain;
}

.feature_item:nth-child(6) .feature_num {
  background: url(../images/blue_feature_num.png) no-repeat center / contain;
}

.feature_img {
  position: relative;
  z-index: 0;
  padding: 10px 10px 15px;
}

.feature_img::before {
  position: absolute;
  content: "";
  z-index: -1;
}

.feature_item:nth-child(1) .feature_img::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/yellow_feature_img_bg.png) no-repeat center / contain;
}

.feature_item:nth-child(2) .feature_img::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/orange_feature_img_bg.png) no-repeat center / contain;
}

.feature_item:nth-child(3) .feature_img::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/pink_feature_img_bg.png) no-repeat center / contain;
}

.feature_item:nth-child(4) .feature_img::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/green_feature_img_bg.png) no-repeat center / contain;
}

.feature_item:nth-child(5) .feature_img::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/green02_feature_img_bg.png) no-repeat center / contain;
}

.feature_item:nth-child(6) .feature_img::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/blue_feature_img_bg.png) no-repeat center / contain;
}

.feature_img img {
  -webkit-mask-image: url(../images/feature_img_mask.png);
  mask-image: url(../images/feature_img_mask.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 20px 20px 30px;
}

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

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

.feature_title h3 {
  font-family: var(--main-font);
  font-size: 130%;
  line-height: 1.75;
  text-align: center;
}

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

.feature_item:nth-child(1) .btn01 > * {
  background: linear-gradient(135deg, #f9c283 0%, #ecd45b 100%);
}

.feature_item:nth-child(2) .btn01 > * {
  background: linear-gradient(135deg, #f3a990 0%, #f9c886 100%);
}

.feature_item:nth-child(3) .btn01 > * {
  background: linear-gradient(135deg, #eea693 0%, #ecb9c3 100%);
}

.feature_item:nth-child(4) .btn01 > * {
  background: linear-gradient(135deg, #b0c77b 0%, #a0d2be 100%);
}

.feature_item:nth-child(5) .btn01 > * {
  background: linear-gradient(135deg, #70b99e 0%, #a8d8d8 100%);
}

.feature_item:nth-child(6) .btn01 > * {
  background: linear-gradient(135deg, #90b1cf 0%, #9dd4d6 100%);
}
/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

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

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

@media screen and (max-width: 640px) {
  .feature::before {
    width: 100%;
    height: 100%;
  }

  .feature .inner {
    padding: 70px 20px;
  }
  
  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_inner {
    padding: 20px 0 30px;
  }

  .feature_num {
    top: 0;
  }

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

  .feature_title h3 {
    font-size: min(4.5vw, 130%);
  }

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

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

  *病状、症状から探す

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

.search::before {
  position: absolute;
  top: -70px;
  left: 0;
  content: "";
  width: 100%;
  height: 70px;
  background: url(../images/wave01.png) no-repeat center / cover;
  z-index: 1;
}

.search::after {
  width: 900px;
  height: 800px;
  background: url(../images/bg_deco.png) no-repeat top / contain;
  border-radius: 50px;
  position: absolute;
  content: "";
  top: 0;
  left: -145px;
  z-index: -2;
}

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

.search .tab_list {
  gap: 10px;
}

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

.search .tab_list .tab1 {
  background: #dbd3c6;
  color: var(--text-color);
}

.search .tab_list .tab3 {
  background: #9f958a;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: url(../images/beige_bg.jpg) repeat top / auto;
}

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

.search_list li:has([href="#"]) {
    position: relative;
    pointer-events: none;
}

.search_list li:has([href="#"])::after {
    content: "準備中";
    position: absolute;
    border-radius: 50px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

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

.panel1 .search_list li {
  width: calc(24% - 4px);
  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: #fff;
  border-radius: 50px;
  font-size: 105%;
  font-family: var(--main-font);
  filter: drop-shadow(0 0 5px #eee);
  color: var(--text-color);
}

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

.search .panel1 .search_list li a::before {
  background: var(--text-color);
}

.search_list li a:hover::before {
  right: 18px;
}

/* 矢印の背景 */
.search_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 25px;
  height: 25px;
  background: #dbd3c6;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: ease-in-out .2s;
}

.search .panel2 .search_list li a::after {
  background: #BEB19F;
}

.search .panel3 .search_list li a::after {
  background: #9f958a;
}

.search_list li a:hover::after {
  right: 12px;
}

/* ----- 画像あり ----- */
.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::before {
    top: -32px;
    height: 35px;
    background: url(../images/wave01.png) no-repeat center / 768px auto;
  }

  .search::after {
    width: 400px;
    height: 350px;
    top: 100px;
  }

  .search .inner {
    padding: 70px 20px;
  }

  .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: 110%;
    transform: translate(0, 0) !important;
  }

  .search .panel {
    padding: 20px;
  }

  .search_list {
    gap: 10px;
  }

.panel1 .search_list li,
 .search_list li {
    width: calc(50% - 5px);
  }

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

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

@media screen and (max-width: 570px) {
.panel1 .search_list li,
 .search_list li {
    width: 100%;
  }
}

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

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

==================================================================================================================================*/
#columnSlider {
  position: relative;
  z-index: 0;
  background: url(../images/stripe.jpg) repeat top left / auto;
}

#columnSlider::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 70px;
  background: url(../images/wave01.png) no-repeat center / cover;
  transform: rotate(180deg);
  z-index: 1;
}

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

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

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

#columnSlider .top_title .eng {
  font-size: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#columnSlider .column_item:first-child .column_item_thum::before {
  content: "NEW";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-self: center;
  width: 95px;
  height: 90px;
  padding: 10px 30px 0 0;
  background: #b9d07b;
  border-radius: 15px 0 0;
  color: #ffffff;
  font-family: var(--sub-font);
  font-size: 16px;
  letter-spacing: 0.075em;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

#columnSlider .column_info {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin: 0 0 15px;
  color: #747474;
  font-size: 90%;
}

#columnSlider .column_date {
  flex-shrink: 0;
  font-family: var(--sub-font);
}

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

#columnSlider .column_info ul li {
  min-width: 80px;
  padding: 2px 10px;
  background: #ebaa10;
  border-radius: 5px;
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 90%;
  text-align: center;
}

#columnSlider .column_title {
  color: var(--text-color);
  font-family: var(--main-font);
  font-size: 105%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

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

/*==============================================
  *SP　医療コラム
==============================================*/
@media screen and (max-width: 640px) {
  #columnSlider::before {
    height: 28px;
    background: url(../images/wave01.png) no-repeat center / 768px auto;
  }

  #columnSlider .inner {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 70px 20px;
  }

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

  #columnSlider .top_title .eng {
    font-size: 45px;
  }

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

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

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

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

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

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

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

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 10px;
}

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

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