@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 110px 40px;
}

.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%;
  z-index: -1;
}

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

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

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

  *タイトル

================================================================================================================================== */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 0;
}

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

.top_title h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 200%;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: "Zen Old Mincho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 370%;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(#7faf1c 0% 60%, #8d9086 40% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

  .top_title .eng {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 920px;
  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%;
}

.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-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 200%;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-align: center;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

.mvCatch p span{
  color: #649303;
  font-size: 120%;
}

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

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

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

.open_bnr {
  position: absolute;
  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: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

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

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

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

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

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

/* ----- MVにあるバナー ----- */
.mv_bnr {
  position: absolute;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 20px;

}

.mv_bnr > * {
  position: relative;
  z-index: 0;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 250px;
  height: 250px;
/* 	height: 280px; */

}

@media screen and (max-width: 640px) {
	.mv_bnr > * {
		width:unset;
		height:unset;
	}
}


/* .mv_bnr .mv_bnr_btn{
	border-radius: 50%;
	overflow:hidden;
	aspect-ratio: 1/1;
	width:100%;
	    background: rgb(255, 255, 255, 0.88);
    border: solid 1px var(--main-color);
} */

.mv_bnr .mv_bnr_btn{
	border-radius: 20px;
	overflow:hidden;
aspect-ratio: 1/1;
	width:100%;
	    background: rgb(255, 255, 255, 0.88);
    border: solid 1px var(--main-color);
}
.mv_bnr .mv_bnr_btn .mv_bnr01,
.mv_bnr .mv_bnr_btn .mv_bnr02,
.mv_bnr .mv_bnr_btn .mv_bnr03 {
	width:100%;
	    height: 100%;
}
@media screen and (max-width: 640px) {
	.mv_bnr .mv_bnr_btn{
		aspect-ratio:unset;
	}
.mv_bnr .mv_bnr_btn .mv_bnr01,
.mv_bnr .mv_bnr_btn .mv_bnr02 a,
.mv_bnr .mv_bnr_btn .mv_bnr03 a {
	    padding: 20px 20px 20px 115px;
}

}



.mv_bnr .mv_bnr01{
  position: relative;
  z-index: 0;
  padding: 115px 20px 20px;
	    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
/*   background: rgb(255, 255, 255, 0.88);
  border: solid 1px var(--main-color); */
}

.mv_bnr .mv_bnr01::before{
  position: absolute;
  content: '';
  background: rgb(140, 183, 51, 0.2);
  background-image: url(../images/mv_bnr_img01.png);
  background-repeat: no-repeat;
  background-size: 75% 75%;
  background-position: 50% 50%;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}


.mv_bnr .mv_bnr02 a{
  position: relative;
  z-index: 0;
/*   background: rgb(255, 255, 255, 0.88); */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
/*   justify-content: flex-start; */
	  justify-content: center;
  align-items: center;
  padding: 115px 20px 20px;
  color: var(--text-color);
  transition: 0.3s;
/*   border: solid 1px var(--main-color); */
}

.mv_bnr .mv_bnr02::before{
  position: absolute;
  content: '';
  background: rgb(140, 183, 51, 0.2);
  background-image: url(../images/mv_bnr_img02.png);
  background-repeat: no-repeat;
  background-size: 75% 75%;
  background-position: 50% 50%;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mv_bnr .mv_bnr02 a:hover{
  background: rgb(237, 245, 219, 0.8);
}
.mv_bnr .mv_bnr03 a img {
	width:100%;
}
.mv_bnr .mv_bnr03 a,
.mv_bnr .mv_bnr03 a img{
  transition: 0.3s;
}

.mv_bnr .mv_bnr03 a:hover img{
  opacity: 0.8;
}

.mv_bnr03 a {
	background:url("https://mizonokuchi-ichouka.jp/wp/wp-content/uploads/2026/02/mv_interview_v1.jpg") center /cover;
		aspect-ratio:1/1;
	width:100%;
	display:block;
}
@media screen and (max-width: 640px) {
.mv_bnr03 a {
	background:url("https://mizonokuchi-ichouka.jp/wp/wp-content/uploads/2026/06/mv_interview_yoko.png") center /cover;
	aspect-ratio:573/173;
	width:100%;
	display:block;
}
}


.mv_bnr .mv_bnr_title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 120%;
}

.mv_bnr .mv_bnr_text{
  margin-top: 5px;
  font-size: 90%;
	font-size: 80%;
  line-height: 1.8;
  text-align: center;
}

.mv_bnr .view_more{
  margin-top: 15px;
  padding: 8px 15px;
  background: var(--main-color);
  color: #fff;
  font-size: 75%;
  line-height: 1;
}


@media screen and (max-width: 640px) {
.mv_bnr .mv_bnr01::before,
.mv_bnr .mv_bnr02::before {
	top:50%;
	left:20px;
	transform:translateY(-50%);
}
}


@media screen and (max-width: 640px) {
.mv_bnr .mv_bnr03 a img {
    width: 30%;
}
}



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

.sp_only {
  display: none;
}

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

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

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

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

  .mvContents {
    display: none;
  }

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

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

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

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

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

  /* ----- MVにあるバナー ----- */
  .mv_bnr{
    position: unset;
    flex-direction: column;
  }

/*   .mv_bnr > *{
    height: fit-content;
  } */
  

}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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;
  z-index: 1;
  padding-bottom: 100px;
}

.clinic::before{
  position: absolute;
  content: '';
  background: linear-gradient(rgba(248, 237, 209, 0.5), rgba(244, 253, 251, 0.5)), url(../images/bg_clinic02.jpg) no-repeat right / contain;
  width: 500px;
  height: 500px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* ----- 発熱・感冒症状の患者様へのお願いと対応 ----- */
.clinic .clinic_topics{
  background: var(--bg-color);
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.clinic .clinic_topics::before{
  position: absolute;
  content: '';
  background: url(../images/logo_icon_white.svg) no-repeat center / contain;
  width: calc(158px * 3);
  height: calc(150px * 3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.65;
}

.clinic .clinic_topics::after{
  position: absolute;
  content: '';
  background: rgb(244, 249, 233, 0.8);
  width: 60%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 0% 100%);
  z-index: -2; 
}

.clinic .clinic_topics .inner{
  padding: 70px 40px;
}

.clinic .clinic_topics .inner .topics_title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 130%;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1em;
}

.clinic .clinic_topics .inner .topics_text{
  text-align: center;
}
.topics_text + .topics_title {
	margin-top:2em;
}
/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.clinic .news::before{
  position: absolute;
  content: '';
  background: url(../images/logo_leaf.svg) no-repeat center / contain;
  width: calc(204px * 2.8);
  height: calc(150px * 2.8);
  top: -30px;
  right: -100px;
  z-index: -1;
  opacity: 0.13;
}

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

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

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

.clinic .news .top_title .eng{
  font-size: 330%;
  margin-bottom: 10px;
}

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

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

.clinic .news .btn01 a{
  min-width: 200px;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 30px 60px 40px;
  background: rgba(255, 255, 255, 1);
}

.clinic .info .inner > * {
  width: calc(50% - 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(--bg-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 16px;
}

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

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-family: "Zen Old Mincho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1;
}

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

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-family: "Zen Old Mincho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  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: 15px;
  border: solid 1px var(--line-color);
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--bg-color);
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

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

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

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

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

.clinic .info .btn01 a{
  width: auto;
}

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

.clinic .info .illustmap{
  padding: 15px;
  text-align: center;
  border: solid 1px var(--line-color);
}

.clinic .info .illustmap img{
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .clinic{
    padding-bottom: 200px;
  }

  .clinic::before{
    background: linear-gradient(rgba(248, 237, 209, 0.5), rgba(244, 253, 251, 0.5)), url(../images/bg_clinic02.jpg) no-repeat right / cover;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
  }

  .clinic .clinic_topics::before{
    width: calc(158px * 2.0);
    height: calc(150px * 2.0);
    top: 20px;
    transform: translateX(-50%);
  }

  .clinic .clinic_topics::after{
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  }

  .clinic .clinic_topics .inner{
    padding: 60px 20px;
  }

  .clinic .clinic_topics .inner .topics_title{
    font-size: 110%;
  }

  .clinic .clinic_topics .inner .topics_text{
    text-align: left;
    font-size: 90%;
  }

  .clinic .news::before{
    width: calc(204px * 1.3);
    height: calc(150px * 1.3);
    right: -70px;
    top: 50px;
  }

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

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

  .clinic .news .top_title h2{
    font-size: 21px;
  }

  .clinic .news .btn01{
    width: 100%;
  }

  .clinic .news .btn01 a{
    min-width: unset;
    width: 90%;
  }

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

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

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

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

  .clinic .info .btn01 a{
    width: 90%;
  }
}

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

  *当院のコンセプト

================================================================================================================================== */
.concept {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.concept::before{
  position: absolute;
  content: 'Mizonokuchi Gastroenterology and Internal Medicine Clinic';
  font-family: "Zen Old Mincho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 4.3vw;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  bottom: /*490*/515px;
  left: 0;
  z-index: -1;
  color: var(--main-color);
  opacity: 0.2;
  /* filter: drop-shadow(0 0 3px rgb(140, 183, 51, 0.3)) drop-shadow(0 0 5px rgb(140, 183, 51, 0.4)); */
}

.concept::after{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 500px);
  top: 0;
  left: 0;
  z-index: -2;
  background: url(../images/concept_bg.jpg) no-repeat center / cover;
}

.concept_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.concept_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  padding: 0 15px 15px;
  position: relative;
  z-index: 0;
}

.concept_item::before{
  position: absolute;
  content: '';
  border: 2px solid rgb(141, 194, 31, 0.5);
  width: 100%;
  height: calc(100% - 55px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.concept_num {
  margin: 0 0 0 !important;
  padding: 20px 10px;
  background: var(--main-color); 
  color: #fff;
  font-family: "Zen Old Mincho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 170%;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.concept_num::before {
  position: absolute;
  content: '';
  background: url(../images/logo_icon_white.svg) no-repeat center / contain;
  width: calc(158px * 0.9);
  height: calc(150px * 0.9);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.2;
}

.concept_inner {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 25px 30px 30px;
  background: #ffffff;
}

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

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

.concept_title h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 115%;
  line-height: 1.75;
}

.concept_img{
  margin: 0 auto 0;
  width: 60%;
}

.bg_clinic.parallax{
  height: 500px;
}

.bg_clinic .parallax_img::before{
  background: linear-gradient(rgba(248, 237, 209, 0.5), rgba(244, 253, 251, 0.5)), url(../images/bg_clinic.jpg) no-repeat center / cover
}

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

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

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

@media screen and (max-width: 640px) {
	.concept::before{
		bottom: 285px;
	}
  .concept::after{
    height: calc(100% - 270px);
    background: url(../images/concept_bg_sp.jpg) no-repeat center / cover;
  }

  .concept_list {
    gap: 30px;
  }

  .concept_item {
    width: 100%;
  }

  .concept_item::before{
    height: calc(100% - 25px);
  }

  .concept_num{
    padding: 15px 10px;
    font-size: 140%;
  }

  .concept_inner{
    padding: 20px 15px 15px;
  }

  .concept_title {
    min-height: auto;
    margin-bottom: 10px !important;
  }

  .concept_title h3{
    font-size: 100%;
  }

  .concept_img{
    width: 40%;
  }

  .bg_clinic.parallax{
    height: 270px;
  }

  .bg_clinic .parallax_img::before{
    background: linear-gradient(rgba(248, 237, 209, 0.5), rgba(244, 253, 251, 0.5)), url(../images/bg_clinic_sp.jpg) no-repeat center / cover
  }

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

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

================================================================================================================================== */
.feature {
  position: relative;
  z-index: 0;
  background: linear-gradient(rgba(239, 238, 229, 0.2), rgba(239, 238, 229, 0.2)), url(../images/bg01.jpg) repeat 0 0;
}

.feature::before{
  position: absolute;
  content: '';
  background: url(../images/logo_leaf_white.svg) no-repeat center / contain;
  width: calc(204px * 3.5);
  height: calc(150px * 3.5);
  bottom: -40px;
  right: -30px;
  z-index: -1;
  opacity: 0.8;
}

.feature::after{
  position: absolute;
  content: '';
  background: rgb(118, 105, 97, 0.1);
  width: 25%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  padding: 13px 20px 30px;
  background: #fff;
  position: relative;
  z-index: 0;
}

.feature_item::before{
  position: absolute;
  content: '';
  border: solid 5px rgb(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature_item::after {
  position: absolute;
  content: '';
  background: rgb(175, 212, 98, 0.12);
  width: 90%;
  height: 65%;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.feature_num {
  margin: 0 -3px -40px auto!important;
  font-family: "Zen Old Mincho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 400%;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 80px;
  position: relative;
  z-index: 1;
  color: var(--main-color);
  filter: drop-shadow(0 0 5px #FFF) drop-shadow(0 0 5px #FFF) drop-shadow(0 0 5px #FFF);
  opacity: 0.7;
}

.feature_num::before{
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 70px;
  height: 1px;
  background-color: var(--sub02-color);
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 22px 15px 0;
}

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

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

.feature_title h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 130%;
  line-height: 1.75;
}

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

.feature_item .btn01 a{
  width: 100%;
}

.feature_item .btn01 a::before{
  width: 33px;
}

.feature_item .btn01 a::after{
  right: 23px;
}

.feature_item .btn01 a:hover::after{
  transform: translateY(-50%) translateX(23px);
}

/* ---- 横並びボタン ----- */
.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: calc(204px * 1.5);
    height: calc(150px * 1.5);
    bottom: -10px;
  }

  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
    padding: 15px 15px 20px;
  }

  .feature_num{
    margin: 0 -3px -30px auto !important;
    font-size: 340%;
  }

  .feature_inner{
    padding: 18px 0 0;
  }

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

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

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

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  z-index: 0;
  background: linear-gradient(rgba(118, 121, 109, 0.5), rgba(118, 121, 109, 0.5)), url(../images/medical_bg.jpg) no-repeat center/cover !important;
}

.medical::before{
  position: absolute;
  content: '';
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.medical .top_title {
  color: #ffffff;
  text-align: left;
}

.medical .top_title span {
  color: #ffffff;
  background: linear-gradient(#e0e9d7 0% 60%, #fff 40% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  color: #7faf1c;
}

.medical_item:hover {
  color: #7faf1c;
  transform: translateY(-10px);
}

.medical_item::before{
  position: absolute;
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--main-color);
  z-index: 0;
}

.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: 35px 20px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.medical_item:hover .medical_inner{
  background: rgb(233, 238, 222, 0.85);
}

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

.medical_icon {
  width: 70%;
  max-width: 110px;
  margin: 0 auto 10px !important;
  padding: 25px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  position: relative;
  z-index: 0;
}

.medical_icon::before{
  position: absolute;
  content: '';
  background: #e8e9e5;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.medical_item:hover .medical_icon::before{
  background: #f5f5f3;
}

.medical_title_wrap{
  width: 100%;
}

.medical_title h3 {
  color: var(--text-color);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 130%;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

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

.medical_btn{
  margin-top: 17px;
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 9px 50px 9px 35px;
  background: rgb(141, 194, 31, 0.15);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 103%;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
  min-width: 200px;
}

.medical_item:hover .medical_btn span{
  background: #f5f5f3;
}

.medical_btn span::before{
  position: absolute;
  content: '';
  width: 33px;
  height: 1px;
  border-top: 1px solid #7faf1c;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
}

.medical_btn span::after{
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: rgb(141, 194, 31, 0.3);
  border-radius: 50%;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
  z-index: 0;
}

.medical_item:hover .medical_btn span::after {
  transform: translateY(-50%) translateX(24px);
  transition: 0.2s ease-in-out;
} 

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

.medical_item:nth-of-type(-n + 2) .medical_inner {
  flex-flow: row;
  gap: 40px;
  padding: 20px 20px 20px;
  min-height: 230px;
}

.medical_item:nth-of-type(-n + 2) .medical_title_wrap{
  width: fit-content;
  text-align: center;
}

.medical_item:nth-of-type(-n + 2) .medical_icon {
  width: 30%;
  max-width: 130px;
  margin: 0!important;
}

.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 170%;
  letter-spacing: 0.1em;
}

.medical_item:nth-of-type(-n + 2) .medical_btn{
  text-align: center;
}
*/

/* 8個目以降 */
.medical_item:nth-child(n+8) {
  color: #8050e2;
}

/* 外枠（medical_item::before） */
.medical_item:nth-child(n+8)::before {
  border-color: #8050e2;
}

/* アイコン外枠 */
.medical_item:nth-child(n+8) .medical_icon {
  border-color: #8050e2;
}

/* アイコン内円 */
.medical_item:nth-child(n+8) .medical_icon::before {
  background: rgba(128, 80, 226, 0.15);
}

/* 英文タイトル */
.medical_item:nth-child(n+8) .medical_title_eng {
  color: #8050e2;
}

/* ボタン */
.medical_item:nth-child(n+8) .medical_btn span {
  background: rgba(128, 80, 226, 0.15);
}

/* ボタン線 */
.medical_item:nth-child(n+8) .medical_btn span::before {
  border-top: 1px solid #8050e2;
}

/* ボタン丸 */
.medical_item:nth-child(n+8) .medical_btn span::after {
  background: rgba(128, 80, 226, 0.3);
}
/*hover*/
.medical_item:nth-child(n+8):hover .medical_inner {
  background: rgb(204 ,195, 221, 0.85);
}
/*icon*/
.medical_item:nth-child(n+8) .medical_icon img {
  filter: invert(20%) sepia(48%) saturate(420%) hue-rotate(180deg);
}

.medical_item:nth-child(n+8):hover .medical_icon::before{
  background: #f5f3f5;
}


.medical_item:nth-child(n+8):hover .medical_btn span{
  background: #f5f3f5;
}




/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(118, 121, 109, 0.5), rgba(118, 121, 109, 0.5)), url(../images/medical_bg_sp.jpg) no-repeat center/cover !important;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_icon {
    width: 60%;
    padding: 15px;
  }

  .medical_icon::before{
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

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

  .medical_btn{
    margin-top: 5px;
  }

  .medical_btn span{
    min-width: unset;
    width: 100%;
    padding: 6px 20px 6px 10px;
    font-size: 90%;
  }

  .medical_btn span::before{
    width: 15px;
  }

  .medical_btn span::after{
    width: 10px;
    height: 10px;
    right: 9px;
  }

  .medical_item:hover .medical_btn span::after{
    transform: translateY(-50%) translateX(10px);
  }

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

  .medical_item:nth-of-type(-n + 2) .medical_inner {
    flex-flow: column;
    padding: 20px 20px;
    gap: 5px;
  }

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

  .medical_item:nth-of-type(-n + 2) .medical_title_wrap{
    width: 100%;
  }

  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 120%;
    letter-spacing: 0.08em;
  }

  .medical_item:nth-of-type(-n + 2) .medical_btn span{
    width: 80%;
  }
	*/
}

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

  *病状、症状から探す

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

.search::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  background: linear-gradient(rgb(199 208 181 / 20%), rgba(199 208 181 / 20%)), url(../images/concept_bg.jpg) no-repeat center / cover;
}

.search .tab_list {
  gap: 10px;
}

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

.search .panel {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: var(--bg-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;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 13px 45px 10px 30px;
  background: #fff;
  color: var(--text-color);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 110%;
	text-align:center;
}

.search_list li a:hover{
  background: rgb(233, 238, 222, 1);
}

.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 span{
  display: block;
  margin-top: 3px;
  padding: 0 20px;
  background: rgb(141, 194, 31, 0.15);
  color: #7faf1c;
  font-size: 90%;
  letter-spacing: 0.05em;
}

/* 矢印の背景 */
.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: column;
  gap: 20px;
}

.search_img {
  width: 100%;
  margin: 0 !important;
  text-align: center;
}

.panel_flex .search_list {
  width: 100%;
}

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

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

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

  .search .panel {
    padding: 15px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

  .search_list li a span{
    padding: 0 10px;
  }

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

  *ご挨拶

================================================================================================================================== */
.greeting{
  position: relative;
  z-index: 0;
  background: url(../images/greeting_bg.jpg) no-repeat center / cover;
}

.greeting::before{
  position: absolute;
  content: '';
  background: linear-gradient(220deg, rgba(253, 253, 253, 0.9), rgba(253, 253, 253, 0.6)), url(../images/bg_clinic02.jpg) no-repeat right / contain;
  width: 400px;
  height: 400px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.greeting::after{
  position: absolute;
  content: '';
  background: rgb(231, 231, 231, 0.4);
  width: 400px;
  height: 400px;
  bottom: 0;
  left: 0;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

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

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

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

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

.greeting_left {
  flex-shrink: 0;
  width: 60%;
  padding-left: 50px;
}

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

.greeting_text h3{
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 140%;
}

.greeting_profile {
  margin-top: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.75;
  text-align: center;
}

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

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

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

.greeting_btn a{
  width: 50%;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting{
    background: url(../images/greeting_bg_sp.jpg) no-repeat center / cover;
  }

  .greeting::before{
    background: linear-gradient(220deg, rgba(253, 253, 253, 1), rgba(253, 253, 253, 0.8)), url(../images/bg_clinic02.jpg) no-repeat right / contain;
  }

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

  .greeting_left {
    width: 100%;
    padding-left: 0;
  }

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

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

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_btn a{
    width: 80%;
  }

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

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

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

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

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

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

.column .top_title{
  text-align: center;
}

.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-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 110%;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.column_box dt a::before{
  position: absolute;
  content: '';
  background: url(../images/logo_leaf_white.svg) no-repeat center / contain;
  width: calc(204px * 0.5);
  height: calc(150px * 0.5);
  bottom: 0;
  right: -20px;
  z-index: -1;
  opacity: 0.25;
}

.column_box dd {
  padding: 15px 10px;
  border-bottom: 1px solid 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;
    padding: 20px;
  }

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