@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
  position: relative;
}

.front::before {
  position: absolute;
  top: 855px;
  left: -840px;
  content: "";
  background: url(../images/front/leave01.png) no-repeat center / contain;
  width: 1100px;
  height: 800px;
  opacity: .6;
  filter: drop-shadow(2px 5px 0px #fff);
  z-index: 1;
}

.front::after {
  position: absolute;
  top: 1200px;
  right: -800px;
  content: "";
  background: url(../images/front/leave01.png) no-repeat center / contain;
  width: 1100px;
  height: 800px;
  opacity: .6;
  filter: drop-shadow(2px 5px 0px #fff);
  transform: rotate(-15deg);
}

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

  .front::before {
    top: 650px;
    left: -420px;
    width: 550px;
    height: 400px;
  }

  .front::after {
    top: 1245px;
    right: -400px;
    width: 550px;
    height: 400px;
  }
}

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

  *アニメーション

================================================================================================================================== */
@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: 50px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 130%;
  letter-spacing: .1em;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-family: var(--en-font);
  font-size: 500%;
  background: linear-gradient(130deg, rgba(11, 133, 131, 1) 0%, rgba(47, 154, 140, 1) 40%, rgba(66, 183, 164, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .1em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

  .top_title h2 {
    font-size: 110%;
  }

  .top_title .eng {
    font-size: 300%;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 1000px;
  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: "\f060";
}

.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
  display: none;
}

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
  position: relative;
}

.mvImg::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 150px;
  content: "";
  background: url(../images/front/mv_wave.png) no-repeat center bottom / 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 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: 50%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  font-size: 240%;
  font-family: var(--jp-font);
/*   text-shadow: 2px 2px 8px #555555, 2px 2px 5px #555555; */
  text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 15px #fff,0 0 15px #fff,0 0 15px #fff,0 0 35px #fff,0 0 35px #fff;
  color: /*#fff*/#232323;
  letter-spacing: .2em;
}
.mvCatch .sub_catch{
	font-size:180%;
	    margin-top: 15px;
}
/* ----- コンテンツ ----- */
.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: 50px;
  display: inline-block;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  padding: 15px;
  background: linear-gradient(130deg, rgba(11, 133, 131, .8) 0%, rgba(47, 154, 140, .9) 40%, rgba(66, 183, 164, .9) 100%);
  border-radius: 50%;
  color: #ffffff;
  font-family: var(--jp-font);
  font-size: 110%;
  line-height: 1.5;
  letter-spacing: .15em;
  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);
}

.bnr_box {
  position: absolute;
  left: 260px;
  bottom: 50px;
  display: flex;
  gap: 10px;
}

.bnr_box li > * {
	display: flex;
	justify-content: center;
	align-items: center;
	color: inherit;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	font-family: var(--jp-font);
	background: rgb(104 197 181 / 80%);
	font-style: normal;
	font-size: 115%;
	line-height: 1.6;
	letter-spacing: .15em;
	transition: opacity 0.15s;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.bnr_box li a:hover{
	opacity:.8;
}

.bnr_box li > * i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  padding: 10px;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  aspect-ratio: 1;
  font-size: 17px;
  color: #68c5b5;
  aspect-ratio: 1;
  letter-spacing: 0;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }
  
  .mvImg::before {
    height: 52px;
    background: url(../images/front/mv_wave.png) no-repeat center bottom / cover;
  }

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

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

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

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

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 20px;
    display: none;
  }

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

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

  /* ----- コンテンツ ----- */
  .mvContents {
    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: 0;
  }

  /* ----- スマホ専用エリア ----- */
  .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%;
  }

  .bnr_box {
    position: static;
    width: 100%;
    max-width: 350px;
  }

  .bnr_box li {
    width: 100%;
  }

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

  .bnr_box li > * span {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .bnr_box li > * i {
    margin: 0;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner .inner {
  max-width: 1400px;
  padding: 100px 50px 30px;
}

.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 .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.top_banner .input a.banner_slide:hover {
  opacity: 0.6;
}

/* ----- グリッドバナー ----- */
.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(--sub-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 .inner {
    padding: 50px 0;
  }

  /* ----- グリッドバナー ----- */
  .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）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  padding: 0 0 120px;
  background:linear-gradient(to bottom, rgba(255, 255, 255, 1) 40%, rgb(215 245 237 / 60%) 60%, rgb(21 105 82 / 30%)) 100%, url(../images/front/clinic_img.jpg) no-repeat center / cover;
}

/* ----- お知らせ ----- */
.clinic .news {
}

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

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

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

.clinic .news .top_title .eng {
  font-size: 300%;
}

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 40px;
  background: #ffffff;
  padding: 50px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0px 0px 30px 0px rgba(51, 51, 51, .1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 1;
}

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

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

.clinic .info .office_hour .table_wrapper {
  background: none;
  border: 1px solid var(--line-color);
}

.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: #daf0ed;
  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: 5px 0 5px 50px;
  font-family: var(--en-font);
  font-size: 30px;
  line-height: 1;
}

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

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

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

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

.clinic .info address .fax p {
  letter-spacing: .05em;
}

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  padding: 10px;
  background: #f5f2ea;
  font-family: var(--jp-font);
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  text-align: center;
}

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic {
    padding: 0;
  }

  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 20px 20px 70px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info {
    padding: 0 20px 70px;
  }
  .clinic .info .inner {
    flex-flow: column;
    padding: 30px 20px;
  }

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

  .clinic .info .speciality {
    gap: 10px;
    padding: 10px;
  }

  .clinic .info .speciality .title {
  }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  background: url(../images/front/beige_bg02.jpg) no-repeat top right / cover;
}

.greeting::before {
  position: absolute;
  top: 320px;
  left: 0;
  width: 90%;
  min-width: 1450px;
  height: calc(100% - 320px);
  content: "";
  box-shadow: 0px 0px 30px 0px rgba(51, 51, 51, .1);
  background: url(../images/front/logo_bg.png) no-repeat bottom -110px left 3% / 500px auto, url(../images/front/beige_bg.jpg) no-repeat top right / cover;
}

.greeting .inner {
  padding: 120px 50px;
  max-width: 1400px;
}

.greeting .top_title {
  margin-bottom: 150px;
}

.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;
  padding: 0 0 0 150px;
  width: 60%;
}

.greeting_right {
  position: relative;
  height: fit-content;
}

.greeting_text h3 {
  position: absolute;
  left: 0;
  margin-bottom: 0!important;
  font-size: 180%;
  letter-spacing: .1em;
  color: #9b7b55;
  writing-mode: vertical-rl;
}

.greeting_text h3 .sub_small {
  font-size: 80%;
  padding-top: 20px;
}

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

.greeting_profile {
  position: absolute;
  bottom: 20px;
/*   padding: 20px 30px; */
  padding: 20px 30px 20px 20px;
  background: rgba(255, 255, 255, .85);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  font-family: var(--jp-font);
  line-height: 1.75;
  text-align: /*center*/right;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting {    
    background: url(../images/front/beige_bg02.jpg) no-repeat top right / 100% auto;
  }

  .greeting::before {
    top: 200px;
    width: 95%;
    min-width: unset;
    height: calc(100% - 200px);
    background: url(../images/front/logo_bg.png) no-repeat bottom -5% left -30% / 300px auto, url(../images/front/beige_bg.jpg) no-repeat top right / cover;
  }

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

  .greeting .top_title {
    margin-bottom: 100px;
  }

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

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

  .greeting_text h3 {
    position: static;
    writing-mode: horizontal-tb;
    font-size: 135%;
    margin-bottom: 1em !important;
  }
	
  .greeting_text h3 .sub_small {
  font-size: 65%;
  padding: 0;
  }

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

  .greeting_profile {
    padding: 15px 10px;
    font-size: 90%;
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: url(../images/front/beige_bg03.jpg) no-repeat top left / 100% auto;
  position: relative;
}

.medical::before {
  position: absolute;
  top: 320px;
  right: 0;
  width: 90%;
  min-width: 1450px;
  height: calc(100% - 320px);
  content: "";
  box-shadow: 0px 0px 30px 0px rgba(51, 51, 51, .1);
  background: url(../images/front/beige_bg.jpg) no-repeat top right / cover;
}

.medical .top_title {
  margin-bottom: 150px;
}

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

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

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

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

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

.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 0px 20px 0px rgb(121 112 96 / 10%);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  text-align: center;
}

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

/* 矢印の背景 */
.medical_inner::after {
  content: "\f152";
  position: absolute;
  bottom: 15px;
  transform: translateX(-50%);
  left: 50%;
  z-index: -1;
  display: block;
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  color: var(--main-color);
  transition: background 0.2s;
}

.medical_inner:hover::after {
  color: var(--sub-color);
}

.medical_icon {
  margin: 0 auto 15px !important;
  padding: 10px;
  width: 70%;
  max-width: 105px;
  background: #ecf7f6;
  border-radius: 50%;
}

.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--sub-color);
  font-family: var(--en-font);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .2em;
}

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

.medical_btn span {
  display: none;
  /* 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);
} */

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
  }

  .medical::before {
    top: 200px;
    width: 95%;
    min-width: unset;
    height: calc(100% - 200px);
  }

  .medical .inner {
    padding: 70px 30px;
  }

  .medical .top_title {
    margin-bottom: 100px;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_inner::after {
    font-size: 16px;
  }

  .medical_icon {
    width: 50%;
  }

  .medical_title h3 {
    font-size: min(3.5vw, 100%);
    line-height: 1.5;
  }

  .medical_title_eng {
    font-size: 11px;
    letter-spacing: 0;
  }
}

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

  *ピックアップ（パターン02） - 追加コンテンツ

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
  position: relative;
}

.pickup::before {
  position: absolute;
  bottom: 0;
  left: -745px;
  content: "";
  background: url(../images/front/leave01.png) no-repeat center / contain;
  width: 1100px;
  height: 800px;
  opacity: .6;
  filter: drop-shadow(2px 5px 0px #fff);
  z-index: 0;
}

.pickup::after {
  position: absolute;
  top: -145px;
  right: -785px;
  content: "";
  background: url(../images/front/leave01.png) no-repeat center / contain;
  width: 1100px;
  height: 800px;
  opacity: .6;
  filter: drop-shadow(2px 5px 0px #fff);
}

.pickup .inner {
  width: 100%;
  max-width: 1400px;
  padding: 120px 50px 300px;
}

.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.pickup_item {
  width: calc(50% - 25px);
  padding: 60px 50px;
  box-shadow: 0px 0px 30px 0px rgba(51, 51, 51, .1);
  background: url(../images/front/beige_bg.jpg) no-repeat top right / cover;
}

.pickup_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 550px;
  height: auto;
}

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 35px;
  text-align: center;
}

.pickup_title::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "01";
  z-index: -1;
  font-size: 120px;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  color: rgb(224 241 239);
  line-height: 1;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 160%;
  line-height: 1.3;
  margin-bottom: 10px;
}

.pickup_title .eng {
  font-size: 100%;
  font-family: var(--en-font);
  color: var(--main-color);
}

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

.pickup_text {
  margin: 30px 0;
}

.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  height: 100%;
  margin-top: auto;
}

.pickup_btn {
  width: 100%;
  height: auto;
}

.pickup_btn a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--jp-font);
  padding: 20px 20px;
  box-shadow: 1px 2px 2px 0px rgb(230 232 232);
  background: #ffffff;
  color: var(--text-color);
  font-size: 100%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.pickup_btn a::after {
  content: "\f152";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  color: var(--main-color);
  transform: translateY(-50%);
  transition: right 0.2s;
}

.pickup_btn a:hover {
  background: #ffffff;
  color: var(--main-color);
}

.pickup_btn a:hover::after {  
  right: 12px;
}

/* ----- 奇数 ----- */

.pickup_item:nth-child(odd) .pickup_title .eng {
  color: var(--main-color);
}

.pickup_item:nth-child(odd) .pickup_btn a {
  background: rgb(82 175 149 / 25%);
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
}

.pickup_item:nth-child(even) .pickup_title .eng {
  color: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_title::before {
  content: "02";
  color: rgb(245 241 232);
}

.pickup_item:nth-child(even) .pickup_btn a {
  background: rgb(176 161 121 / 25%);
}

.pickup_item:nth-child(even) .pickup_btn a:hover {
  color: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_btn a::after {
  color: var(--sub-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup::before {
    bottom: -45px;
    left: -260px;
    width: 400px;
    height: 370px;
  }

  .pickup::after {
    top: -50px;
    right: -430px;
    width: 550px;
    height: 400px;
  }

  .pickup .inner {
    padding: 70px 20px 120px;
  }

  .pickup .top_title {
    margin: 0 auto 40px;
    padding: 0 20px;
  }

  .pickup .top_title h2 {
    font-size: 110%;
  }

  .pickup_list {
    width: 100%;
  }

  .pickup_item {
    width: 100%;
    padding: 50px 20px !important;
  }

  .pickup_title h2, .pickup_title h3{
    font-size: 135%;
    line-height: 1.5;
  }

  .pickup_title {
    margin: 0 auto 20px;
  }

  .pickup_title::before {
    top: 35%;
    font-size: 110px;
  }

  .pickup_title .eng {
    font-size: 95%;
  }

  .pickup_inner {
    max-width: none;
    min-height: auto;
    margin: 0 !important;
  }

  .pickup_btn {
    width: 100%;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  background: url(../images/front/green_bg02.png) no-repeat bottom 20% center/ 100% auto,url(../images/front/green_bg.jpg) no-repeat top center / cover;
}

.feature::before {
  position: absolute;
  top: -189px;
  left: 0;
  width: 100%;
  height: 189px;
  content: "";
  background: url(../images/front/wave01.png) no-repeat top center / cover;
}

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

.feature_item {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.feature_img {
  flex-shrink: 0;
  width: 600px;
  height: fit-content;
  margin-top: -50px;
  position: relative;
}

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

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 70px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -70px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 0px 30px 0px rgba(51, 51, 51, .1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.feature_inner::before {
  position: absolute;
  bottom: -177px;
  right: -257px;
  content: "";
  width: 490px;
  height: 335px;
  opacity: .4;
  background: url(../images/front/leave01.png) no-repeat center / contain;
  z-index: -1;
  transform: rotate(320deg);
}

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 30px;
  position: relative;
  border-bottom: 1px solid var(--line-color);
}

.feature_title::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 20%;
  height: 1px;
  background: var(--main-color);
}

.feature_title h3 {
  padding-bottom: 25px;
  color: var(--main-color);
  font-size: 160%;
  line-height: 1.75;
  letter-spacing: .1em;
}

.feature_num {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background: linear-gradient(130deg, rgba(11, 133, 131, .8) 0%, rgba(47, 154, 140, .9) 40%, rgba(66, 183, 164, .9) 100%);
  font-size: 20px;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.15em;
  writing-mode: sideways-rl;
}

.feature_num span {
  writing-mode: lr;
  margin-top: 8px;
}

.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}

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

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

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

.feature_item:nth-child(even) .feature_num {
  right: 0;
  left: auto;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
    background: url(../images/front/green_bg02.png) no-repeat bottom 50% center/ auto,url(../images/front/green_bg.jpg) no-repeat top center / cover;
  }

  .feature::before {
    top: -98px;
    height: 98px;
    background: url(../images/front/wave01.png) no-repeat top center / cover;
  }

  .feature_list {
    gap: 40px;
  }

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

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

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

  .feature_inner::before {
    bottom: -157px;
    right: -250px;
    width: 400px;
    height: 300px;
  }

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

  .feature_title h3 {
    padding-bottom: 15px;
    font-size: 130%;
  }

  .feature_num {
    font-size: 15px;
  }

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

  .feature_item:nth-child(even) .feature_inner {
    margin: 0 auto;
  }
}

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

  *お悩みの部位から探す - 追加コンテンツ

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.body-parts {
  position: relative;
}

.body-parts::before {
  position: absolute;
  top: -100px;
  left: -745px;
  content: "";
  background: url(../images/front/leave01.png) no-repeat center / contain;
  width: 1100px;
  height: 800px;
  opacity: .6;
  filter: drop-shadow(2px 5px 0px #fff);
  z-index: -1;
  transform: rotate(8deg);
}

.body-parts::after {
  position: absolute;
  bottom: 50px;
  right: -765px;
  content: "";
  background: url(../images/front/leave01.png) no-repeat center / contain;
  width: 1100px;
  height: 800px;
  opacity: .6;
  filter: drop-shadow(2px 5px 0px #fff);
  z-index: 1;
  transform: rotate(-15deg);
}

.body-parts_wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* ----- 体の画像 ----- */
.body-parts_img {
  max-width: 250px;
  margin: 0 auto;
}

/* ----- 各部位の共通設定 ----- */
.body_parts_list > li {
  position: absolute;
  display: block;
  transform: translateX(-50%);
}

/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 15px;
  background: var(--text-color);
  border: 1px solid var(--text-color);
  color: #ffffff;
  font-family: var(--jp-font);
  font-size: 120%;
  text-align: center;
}

.body_parts_title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background: var(--main-color);
}

a.body_parts_title {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

a.body_parts_title:hover {
  filter: brightness(1.1);
  color: #fff;
}

/* -----　部位ごとの病状・病名　----- */
.body-parts_search {
  margin: 10px 0 0;
  padding: 0 10px 10px;
}

.body-parts_search li {
  line-height: 1.5;
}

.body-parts_search li:not(:last-child) {
  margin-bottom: 5px;
}

.body-parts_search li a {
  font-size: 13px;
}

/* ----- 各部位の位置 ----- */
#body-parts1 {
  top: 80px;
  left: calc(50% - 170px);
}

#body-parts1 .body_parts_title::before {
  top: 75%;
  right: -90px;
  width: 100px;
  transform: rotate(15deg);
}

#body-parts2 {
  top: 55px;
  left: calc(50% + 140px);
}

#body-parts2 .body_parts_title::before {
  top: 80%;
  left: -100px;
  width: 103px;
  transform: rotate(-15deg);
}

#body-parts3 {
  top: 200px;
  left: calc(50% - 215px);
}

#body-parts3 .body_parts_title::before {
  top: 75%;
  right: -100px;
  width: 105px;
  transform: rotate(18deg);
}

#body-parts4 {
  top: 240px;
  left: calc(50% + 205px);
}

#body-parts4 .body_parts_title::before {
  top: 43%;
  left: -100px;
  width: 100px;
}

#body-parts5 {
  top: 375px;
  left: calc(50% - 220px);
}

#body-parts5 .body_parts_title::before {
  top: 36%;
  right: -72px;
  width: 75px;
  transform: rotate(-14deg);
}

#body-parts6 {
  top: 370px;
  left: calc(50% + 230px);
}

#body-parts6 .body_parts_title::before {
  top: -10%;
  left: -135px;
  width: 154px;
  transform: rotate(27deg);
}

#body-parts7 {
  top: 590px;
  left: calc(50% - 190px);
}

#body-parts7 .body_parts_title::before {
  top: 85%;
  right: -95px;
  width: 100px;
  transform: rotate(20deg);
}

#body-parts8 {
  top: 475px;
  left: calc(50% + 175px);
}

#body-parts8 .body_parts_title::before {
  top: 50%;
  left: -100px;
  width: 100px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .body-parts::before {
    top: -150px;
    left: -370px;
    width: 500px;
    height: 350px;
  }

  .body-parts::after {
    bottom: -125px;
    right: -400px;
    width: 500px;
    height: 350px;
    transform: rotate(23deg);
  }
  
  .body-parts .inner {
    flex-flow: column;
    gap: 0;
  }

  .body-parts_wrap {
    max-width: 450px;
  }

  .body-parts_img {
    width: 55%;
  }

  /* ----- 各部位の共通設定 ----- */
  .body_parts_list > li {
    width: max-content;
  }

  /* ----- 各部位のタイトル ----- */
  .body_parts_title {
    padding: 5px 10px;
    font-size: 95%;
  }

  .body_parts_title::before {
    display: none;
  }

  /* ----- 部位ごとの病状・病名 ----- */
  .body-parts_search {
    display: none;
  }

  /* ----- 各部位の位置 ----- */
  #body-parts1 {
    top: 12%;
    left: 25%;
  }

  #body-parts2 {
    top: 8%;
    left: 73%;
  }

  #body-parts3 {
    top: 34%;
    left: 18%;
  }

  #body-parts4 {
    top: 30%;
    left: 89%;
  }

  #body-parts5 {
    top: 62%;
    left: 20%;
  }

  #body-parts6 {
    top: 48%;
    left: 92%;
  }

  #body-parts7 {
    top: 85%;
    left: 20%;
  }

  #body-parts8 {
    top: 68%;
    left: 75%;
  }
}

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

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

#infinitySlider .splide__list {
  gap: 20px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 300px !important;
  }
}
