@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
--------------------- */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.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: 50px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 48px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-size: 42px;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  padding-bottom: 27px;

}
.top_title h2::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 1px;
  background-color: var(--main-color);
  content: "";
  
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 21px;
  color: var(--sub-color);
  font-size: 20px;
  font-family: "josefin-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
  }
  .top_title h2::before {
    bottom: 10px;
  }
  .top_title .eng {
    font-size: 18px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 680px;
  overflow: hidden;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.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: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

/* 各スライダーのボタンは非表示に */
.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 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 {
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}
.mvCatch01 {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: inline-block;
  margin:0 auto 2.4%;
  background: linear-gradient(90deg, #2d8b8a 0%, #096560 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  top: 11px;
}
.mvCatch01 span {
  font-size: 55px;
}
.mvCatch02 {
  font-size: 20px;
  letter-spacing: 0.05em;
}

/* ----- コンテンツ ----- */
.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%;
}
.mvOpen {
  position: absolute;
  background: rgba(135,111,67);
  color: #fff;
}

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 40px;
  right: 0;
  display: inline-block;
  padding: 4px;
  color: #fff;
  text-align: center;
  font-size: 25.3px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  z-index: 2;
  max-width: 280px;
  width: 40%;
  height: 240px;
  padding-top: 3.4%;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
	
	        color: var(--sub-color);
}
.open_bnr::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(from var(--sub-color) r g b / 80%);
  z-index: -1;
  content: "";
	
	        background: white;
        border: 1px solid var(--sub-color);
}
.open_bnr span {
  font-size: 16px;
  display: block;
  padding-top: 4.4%;
  line-height: 1.875;
	        color: var(--text-color);
}

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

/* mvバナー */
.mvBnr {
  position: absolute;
  left: 0;
  right: 0;
  top: 680px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}
.mvBnr__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
	text-align:center;
}
.mvBnr__item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  width: 30%;
  max-width: 270px;
  height: 130px;
  font-size: 23px;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: rgba(34,104,103,0.8);
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.mvBnr__item:first-child {
  max-width: 300px;
/* 	max-width: 170px; */
}
.mvBnr__item span{
  display:block;
  font-size: 70%;
	    font-size: 60%;
  text-align: center;
  line-height: 1.5;
}

/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 200px;
	  
    height: 300px;
  }
  /* ----- スライダーの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; */
	  
	  transform:unset;
	      top: unset;
    bottom: 20px;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;

    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
	  &.mvCatch01  {
		  font-size: 150%;
		  line-height: 1.3;
		              margin-bottom: 20px;
	  }
	  	&.mvCatch02 {
			  font-size: 85%;
	}
  }

	.mvCatch01 span {
    font-size: 25px;
}
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: relative;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
    height: auto;
    font-size: 20px;
    bottom: auto;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
    
  }
	.open_bnr::before {
		background:transparent;
		border:1px solid var(--sub-color);
	}
	.open_bnr {
		color:var(--sub-color);
	}
  .open_bnr span {
    padding: 5px;
    font-size: 15px;
	  color:var(--text-color);
  }
  /* ----- スマホ専用エリア ----- */
  .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%;
  }
  /* ----- mvバナー ----- */
  .mvBnr {
    position: static;
    width: 96%;
    padding: 20px 0 10px;
    background-color: var(--bg-color);
  }
  .mvBnr__list {
    gap: 10px 2%;
    justify-content: center
  }
  .mvBnr__item:first-child {
    width: 70%;
	  width: 60%;
    padding: 5px 10px 10px;
  }
  .mvBnr__item {
    width: 49%;
width: 40%;
font-size: 17px;
font-size: 15px;
    height: auto;
    min-height: 80px;
	          min-height: 60px;
	          min-width: 145px;
	          line-height: 1.5;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {

}
.clinic .news {
  position: relative;
  z-index: 2;
}
.clinic .news::before {
  position: absolute;
  background-color: #fff;
  width: 91%;
  height: 100%;
  right: 0;
  top:0;
  content: "";
  z-index: -1;
}
.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.info .inner {
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}
.info_left {
  width: 50%;
}
.info_right {
  width: 43.333%;
}
.info_right .googlemap iframe {
  height: 290px;
}

/* ----- お知らせ ----- */
.clinic #mp-title {
  width: 76.7%;
}
.clinic .news_left {
  width: 18.4%;
}
.clinic .news .top_title{
  margin-bottom: 58px;
}
.clinic .news .top_title h2 {
  font-size: 36px;
}
.clinic .news .top_title h2::before {
  right: auto;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}
.clinic .news .btn01 a {
  display: block;
}
.clinic .top_title {
  text-align: left;
}

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  z-index: 1;
}
.clinic .info::before {
  position: absolute;
  top: -220px;
  left: 0;
  background:url(../images/common/info_bg01.jpg) center no-repeat;
  background-size: cover;
  width: 91%;
  height: calc(100% + 220px);
  content: "";
  z-index: -1;
  
}
.clinic .info::after {
  position: absolute;
/*   content: "Info"; */
  font-family: "josefin-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 222px;
  letter-spacing: 0.05em;
  top: 77px;
  right: 1.1%;
  writing-mode: vertical-rl;
  line-height: 1;
  color: rgba(181,141,86,0.2);
}
.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 {
  text-align: center;
}
.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 .location {
  line-height: 1;
  text-align: center;
  letter-spacing: 0.025em;
}
.clinic .info .tel a {
  position: relative;
  z-index: 1;
  padding: 0 0 3px 28px;
  font-size: 34px;
  line-height: 1;
  font-size: 35px;
  letter-spacing: 0.075em;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(90deg, #ba925e 0%, #966e20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
}
.clinic .info .tel a::before {
content: "";
  position: absolute;
  left: 0;
  top: 12px;
  background: url(../images/common/tel_icon.png) center no-repeat;
  width: 21px;
  height: 21px;
}


.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  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 .list_access {
  margin-top: 10px;
}
.clinic .info .btn01 {
  margin-top: 20px;
  text-align: right;
}
.clinic .info .btn01 a {
  width: 280px;
  padding-right: 40px;
}
.clinic .info .btn01 a::after {
  right: 70px;
}
.clinic .info .btn01 a:hover::after {
  right: 60px;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .info .inner {
    padding-bottom: 40px;
  }
  .clinic .inner > .news_left {
    margin-bottom: 0;
  }
  .clinic .news::before {
    width: 100%;
  }
  .clinic .news .inner {
    padding-bottom: 80px;
    position: relative;
  }
   .clinic .news .inner::after{
    position: absolute;
/*     content: "Info"; */
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 90px;
    letter-spacing: 0.05em;
    bottom: -40px;
    right: 1.1%;
    line-height: 1;
    color: rgba(181, 141, 86, 0.2);
  }
  .clinic .info::before {
    width: 100%;
  }
  .clinic .info::after {
    display: none
  }
  .clinic .inner > * {
    width: 100%;
    margin-bottom: 35px;
  }
  .clinic .news .top_title {
    margin-bottom: 30px;
  }
  .clinic .news .top_title h2 {
    font-size: 26px;
    text-align: center;
  }
   .clinic .news .top_title .eng {
    display: block;
    text-align: center;
    margin-bottom: 14px;
   }
   .clinic .news .top_title h2::before {
    right: 0;
   }
   .clinic .news .btn01 {
    margin-top: 10px;
    width: 80%;
    margin: 10px auto 0;
   }
  /* ----- 医院概要 ----- */
  .clinic #mp-title {
    width: 100%;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 15px;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info .btn01 {
    text-align: center;
  }
  
}

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

  *当院が力を入れている治療

================================================================================================================================== */
.we_spacialize {
  padding-top: 91px;
  padding-bottom: 80px;
}
.we_specialize__list {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1390px;
  margin: 0 auto 60px;
}
.we_specialize__item {
  width: 30.9%;
  text-align: center;
}
.we_specialize__item a{
  display: inline-block;
  color: #222;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 11px;
  border-bottom: solid 1px #cfbc9f;
  padding-bottom: 1px;
  transition: all 0.2s, color 0.2s;
}
.we_specialize__item a:hover {
  color: var(--main-color);
  border-bottom: solid 2px var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .we_spacialize {
    padding-top: 70px;
    padding-bottom: 20px;
  }
  .we_specialize__list {
    display: block;
  }
  .we_specialize__item {
    width: 100%;
    margin-bottom: 40px;
  }
  .we_specialize__item a {
    font-size: 21px;
  }
}


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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}
.greeting::before {
  position: absolute;
  width: 91%;
  height: 100%;
  background: url(../images/common/marble_bg.jpg) center no-repeat;
  background-size: cover;
  content: "";
  z-index: -1;
}
.greeting::after {
  position: absolute;
/*   content: "Greeting"; */
  font-family: "josefin-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 222px;
  letter-spacing: 0.05em;
  bottom: -30px;
  right: 1.1%;
  writing-mode: vertical-rl;
  line-height: 1;
  color: rgba(181, 141, 86, 0.2);
}
.greeting .inner {
  padding-top: 90px;
  padding-bottom: 87px;
}

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

.greeting_flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

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

.greeting_left {
  flex-shrink: 0;
  width: 62%;
}
.greeting_right {
  margin-top: -10px;
}
.greeting_text {
  line-height: 2.25;
  letter-spacing: 0.025em;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 0.9em;
}

.greeting_profile {
  padding: 25px 20px 18px;
  line-height: 1.75;
  text-align: center;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.greeting_profile .position {
  font-size: 20px;
}
.greeting_profile .position span {
  display: block;
  color: #836437;
  letter-spacing: 0.025em;
  line-height: 1.8;
}
.greeting_profile .name {
  font-size: 200%;
}
.greeting_btn {
  text-align: center;
}
.greeting_btn a{
  max-width: 280px;
  width: 90%;
  text-align: center;
  margin: auto;
}
.greeting_btn a::after {
  right: 70px;
  top: 51%;
}
.greeting_btn a:hover::after{
  right: 60px;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before {
    width: 100%;
  }
  .greeting::after {
	  display:none;
    font-size: 120px;
    top:0;
    right: -6%;
    z-index: 1;
  }
  .greeting .inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
    margin-top: 20px;
  }
  .greeting_right .greeting_img {
    width: 70%;
    margin: auto;
  }
  .greeting_profile .position {
    font-size: 18px;
  }
  .greeting_profile .name {
    font-size: 160%;
  }
  .greeting_btn {
    margin-top: 0px;
  }
}
/* ==================================================================================================================================

  *診療案内（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/front/medical_bg_dmy.jpg) no-repeat center/cover;
}
.medical .inner {
  padding-top: 97px;
  padding-bottom: 110px;
}
.medical .top_title {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(68,56,39,0.7);
  margin-bottom: 50px;
}
.medical .top_title h2 {
  line-height: 1.3;
}
.medical .top_title h2::before {
  background-color: #fff;
  bottom: -3px;
}
.medical .top_title span {
  color: #fff
}

.medical_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 25px;
  
}
.medical_item_wrapper {
  width: calc(25% - 20px);
  font-size: 20px;
}
.medical_item {
  display: block;
  position: relative;
  z-index: 1;
  height: auto;
  background: rgba(255, 255, 255, 1);
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #222;
  height: 240px;
  padding: 20px 20px 40px;
}
.medical_item::before {
  position: absolute;
  top:10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: solid 1px #cfbc9f;
  content: "";
}
.medical_item:hover {
  transform: translateY(-10px);
}

.medical_img {
  width: auto;
  transition: background 0.2s;
  padding-top: 21px;
}
.medical_img img {
  object-fit: cover;
}

.medical_inner {

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

.medical_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
}
.medical_title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  margin: auto;
}

.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 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_wrapper:first-child .medical_item{
  margin-left: auto;
}
.medical_item_wrapper:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  width: 45%;
  font-size: 24px;
}
.medical_item_wrapper:nth-of-type(-n + 2) .medical_item {
  max-width: 380px;
  min-height: 260px;
}

/* ----- 個別設定----- */
.medical_item_wrapper:nth-child(1) .medical_img {
  padding-top: 0;
}
.medical_item_wrapper:nth-child(5) .medical_title {
  font-size: 18px;
}


.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}


/* ----------------------------------------------------------------------
  ▼ 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/common/dmy.jpg) no-repeat center/cover;
  }
  .medical .inner {
    padding-top: 70px;
    padding: 40px 4% 70px;
  }
  .medical_list {
    gap: 15px 10px;
  }
  .medical_item_wrapper {
    width: 48%;
  }
  .medical_item {
    width: calc(50% - 5px);
    height: auto;
  }

  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }
  
  .medical_img {
    width: 100%;
    height: 70px;
  }
  .medical_img img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  .medical_title h3 {
    font-size:16px;
    letter-spacing: 0;
    line-height: 1.5;
  }
  /* ----- 先頭2つの設定----- */
  .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }
  .medical_item_wrapper:nth-of-type(-n + 2) {
    width: 100% !important;
  }
  .medical_item_wrapper:nth-of-type(-n + 2) .medical_item {
    height: 180px;
    min-height: 220px;
  }
  .medical_item_wrapper:nth-of-type(-n + 2)  .medical_inner {
    padding: 15px 20px 30px;
  }
  .medical_item_wrapper:nth-of-type(-n + 2)  .medical_icon {
    width: 30%;
  }
  .medical_item_wrapper:nth-of-type(-n + 2)  .medical_title h3 {
    font-size: 100%;
  }
  .medical_item_wrapper:nth-of-type(-n + 2) .medical_img  {
    height: 130px;
   }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
}
.feature::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 68%;
  background: #FFF;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(245, 241, 235, 1) 100%);
  content: "";
  z-index: -1;
}
.feature .top_title {
  margin-bottom: 42px;
}
.feature .inner {
  padding-top: 90px;
  padding-bottom: 117px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 55px 5%;
}

.feature_item {
  display: flex;
  flex-flow: column;
  width: 30%;
  height: auto;
}

.feature_num {
  margin: 0 0 14px 0!important;
  font-size: 22px;
  font-family: "josefin-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  color: var(--main-color);
}
.feature_num span {
  color: var(--main-color);
  font-size: 140%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 10px;

}
.feature_title h3 {
  line-height: 1.63;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #836437;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-top: 18px;
}
.feature_text {
  line-height: 2;
  letter-spacing: 0;
}

.feature_button {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}
.feature_button .btn01 {
  text-align: center;
}
.feature_button .btn01 a {
  width: 220px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  font-size: 16px;
}


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature .inner {
    padding-top: 70px;
    padding-bottom:60px;
  }
  .feature .top_title {
    margin-bottom: 20px;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
    margin-bottom: 20px;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
  .feature_title h3 {
    font-size: 19px;
  }
  .feature_button {
    padding-top: 20px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}
.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}
.column .column_box {
  width: calc(25% - 18.75px);
}
.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}
.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .column .column_list {
    gap: 40px;
  }
  .column .column_box {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 81px 0  81px;
}

#infinitySlider .splide__list {
  gap: 30px;
}

#infinitySlider .splide__slide {
  width: 430px !important;
}
#infinitySlider .splide__slide  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider {
    padding: 40px 0;
  }
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
  #infinitySlider .splide__list {
    gap: 15px;
  }
}