@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: 70px 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 {
  position: relative;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
/*} */

.top_title {
  position: relative;
  width: fit-content;
  margin: 0 auto 50px;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
}

.top_title::before {
  content: "";
  display: block;
  width: 51px;
  height: 42px;
  background: url(../images/common/mark.svg) no-repeat center / 100%;
  margin: 0 auto 15px;
}

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

.top_title h2 {
  color: var(--text-color-gray);
  text-shadow: 0.02px 0 0 var(--text-color-gray);
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: 230%;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--main-color);
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 150%;
}

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

  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  .top_title .eng {
    font-size: 18px;
    font-family: var(--font-type-en);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

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

  *メインビジュアル

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

.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 {
  color: var(--text-color-gray);
  font-size: 220%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

.mvCatch p span{
  color: var(--sub-color);
  font-size: 120% !important;
}

/* ----- コンテンツ ----- */
.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;
  letter-spacing: 0;
  bottom: 60px;
  left: 0;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  aspect-ratio: 1 / 1 !important;
}
.open_bnr > * {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  left: 0%;
  justify-content: center;
  width: 250px;
  height: 250px;
  /* padding: 0 0 20px; */
  background: var(--sub-color);
  border-radius: 50%;
  color: rgb(255, 255, 255);
  font-size: 110%;
  text-align: center;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  z-index: 2;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
}

.open_bnr > *::before{
  content: "";
  position: absolute;
  /* top: -40px; */
  bottom: 0;
  right: 47px;
  width: 103px;
  height: 84px;
  background: url(../images/front/mv_bg_mark.svg) no-repeat bottom right / cover;
  z-index: -1;
  opacity: 0.4;
  /* overflow: hidden; */
}

.open_bnr .date {
  font-size: 95%;
}
.open_bnr .date span {
  font-size: 120%;
  font-weight: 700;
}
.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
  font-weight: 700;
}
.open_bnr .nairankai_tit {
  position: relative;
  display: block;
  width: 60%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--sub-color);
  font-size: 105%;
  font-weight: 400;
  text-align: center;
}

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


/* ---------- MV上のアイコン ---------- */
.mv_icon_wrap {
  position: absolute;
  left: calc(50% - 320px);
  /* bottom: 50px; */
  bottom: 70px;
  display: flex;
  gap: 10px;
}

.mv_icon {
  position: relative;
  background: rgb(255 255 255 / 30%);
  padding: 4px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
  transition: 0.2s;
  z-index: 2;
}

.mv_icon_wrap .mv_bnr_item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  width: 180px;
  height: 165px;
  background: rgb(54 189 239 / 80%);
  border-radius: 6px;
  padding: 25px 10px;
  opacity: 1;
  overflow: hidden;
  transition: 0.2s;
  color: #fff !important;
  text-align: center;
  font-family: var(--font-type);
  font-size: 105%;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  overflow: hidden;
  z-index: 2;
}

.mv_icon_wrap .mv_icon:nth-of-type(1) .mv_bnr_item {
  background: rgb(115 212 247 / 75%);
}

.mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item {
  background: rgb(77 201 247 / 75%);
}

.mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item {
  max-height: 185px !important;
  font-family: var(--font-type);
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  overflow: hidden;
  z-index: 2;
}

.mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item a {
  display: block;
}

/* .mv_icon_wrap .mv_icon .mv_bnr_item::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -46px;
  width: 103px;
  height: 84px;
  background: url(../images/front/mv_bg_mark.svg) no-repeat center / cover;
  z-index: -1;
  overflow: hidden;
  z-index: -1;
  opacity: 0.7;
} */

.mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item a span {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 2px;
  color: #fff;
  font-size: 105%;
  font-style: normal;
  line-height: 1.5
}

.mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item a:hover span {
  border-bottom: 1px solid #fff;
}

.mv_icon_wrap .mv_bnr_item em {
  color: #fff;
  text-shadow: 0.02px 0 0 #fff;
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
}

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

.mv_icon_wrap .mv_bnr_item > i {
  display: block;
  margin-bottom: 12px;
  padding: 8px;
  background-color: #fff;
  border-radius: 5px;
  aspect-ratio: 1 / 1;
  /* width: 68px; */
  color: var(--main-color-light);
  font-style: normal;
  font-size: 130%;
  font-weight: 600;
  line-height: 1.2;
}

.mv_icon_wrap .mv_bnr_item > a > i {
  display: block;
  margin: 0 auto 12px;
  padding: 8px;
  background-color: #fff;
  border-radius: 5px;
  aspect-ratio: 1 / 1;
  width: 46px;
  height: 46px;
  color: var(--main-color-light);
  font-style: normal;
  font-size: 150%;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.mv_icon_wrap .mv_bnr_item > a > i {
  font-size: 170%;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }

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

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

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

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

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    /* bottom: 20px; */
    bottom: calc(50% - 40px);
    display: none;
  }

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

  .mvCatch p {
    font-size: min(4.2vw, 22px) !important;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }

  /* ----- コンテンツ ----- */
  .mvContents .mv_icon_wrap  {
    display: none;
  }

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: absolute;
    letter-spacing: 0;
    bottom: 24px;
    left: auto;
    right: 10px;
    display: inline-block;
    padding: 4px;
    width: calc(150px + 8px);
    height: calc(150px + 8px);
  }
  .open_bnr > * {
    width: 150px;
    height: 150px;
    margin: auto;
  }
  .open_bnr > ::before, .open_bnr > ::after {
    background-size: 80%;
  }
  .open_bnr > ::before {
    left: 0;
    right: 0;
    margin: auto;
  }
  .open_bnr > *::after {
    right: -29px;
  }
  .open_bnr .open_text {
    font-size: min(5vw, 16px);
  }
  .open_bnr .date span {
    font-size: 100%;
  }

  /* 3枚並びの枠 */
  .mv_icon_wrap {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 20px;
    left: 20px;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    /* gap: 10px; */
  }

  .mv_icon {
    width: calc(100% / 2 - 10px);
    height: auto;
    aspect-ratio: unset;
    padding: 5px;
    background: var(--main-color-light-30);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mv_icon:last-of-type {
    width: 60%;
  }

  .mv_icon_wrap .mv_bnr_item {
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    font-size: min(3.6vw, 12px) !important;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  .mv_icon_wrap .mv_bnr_item::after {
    top: auto;
    bottom: 0;
    left: 40px;
    transform: translate(-50%, 0);
  }

  .mv_icon_wrap .mv_bnr_item > a > i {
    padding: 5px 2px 0 4px;
    width: 30px;
    height: 30px;
}

  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
    margin-bottom: 30px;
  }

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: url(../images/front/clinic_bg.png) no-repeat center / cover, var(--bg-color);
  z-index: 1;
}

.clinic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 882px;
  height: 1319px;
  background: url(../images/front/clinic_cloud_l_top.png) no-repeat top center / cover;
  z-index: -1;
}

.clinic::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 824px;
  height: 747px;
  background: url(../images/front/clinic_cloud_r_bt.png) no-repeat bottom 100px right / cover;
  z-index: -1;
}

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

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

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

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

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

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

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

.clinic .info address {
  text-align: left !important;
}

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

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

/* .clinic .info address>* {
  position: relative;
  z-index: 1;
  min-height: 40px;
}

.clinic .info address>*::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
} */

.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 50px;
}
.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  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: 18px;
}

.clinic .info address .location {
  padding: 5px 0 6px 60px;
  color: var(--text-color-gray);
  text-shadow: 0.02px 0 0 var(--text-color-gray);
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

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

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

.clinic .info address .tel {
  margin-top: 20px;
  padding: 5px 0 6px 60px;
  font-size: 35px;
  line-height: 1;
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.clinic .info address .tel::before {
  content: "\f3cd";
  letter-spacing: 0.1em;
}
.clinic .info address .fax {
  margin-top: 20px;
  padding: 5px 0 6px 60px;
  font-size: 35px;
  line-height: 1;
  color: var(--main-color);
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.clinic .info address .fax::before {
  content: "\f249";
  letter-spacing: 0.1em;
}

.clinic .info .note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 105%;
  line-height: 1.7;
  text-align: left !important;
}

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

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 4px;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.clinic .info .googlemap {
  background-color: var(--main-color-light-30);
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
}

.list_access {
  margin: 10px 0 20px;
  text-align: left !important;
}

.list_access li {
  padding: 12px 10px;
  border-bottom: 1px dashed var(--line-color);
  font-size: 100%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.list_access li i {
  position: relative;
  top: 2px;
  display: inline-block;
  margin-right: 15px;
  color: var(--sub-color);
  font-size: 130%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic {
    position: relative;
    background: url(../images/front/clinic_sp_bg.png) no-repeat bottom center / cover, var(--bg-color);
    z-index: 1;
    background-size: 100%;
  }
  .clinic::before {
    background: url(../images/front/clinic_cloud_l_top.png) no-repeat top left / cover;
    background-size: 50% !important;
  }

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

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

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

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

  .clinic .info .speciality .title {
    width: 100%;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  .clinic .info address .location .zipcode {
    display: block;
  }
  .clinic .info address .tel,.clinic .info address .fax {
    font-size: min(8vw, 35px);
  }

  .clinic .info .googlemap iframe {
    height: 300px !important;
  }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}

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

.greeting .inner {
  padding: 165px 0 100px;
}

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

.greeting_box .top_title {
  position: relative;
  z-index: 1;
  padding: 10px 75px 0;
}

.greeting_box .top_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 351px;
  height: 185px;
  background: url(../images/front/greeing_title_bg.png) no-repeat center / cover;
  z-index: -1;
}

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

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

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

.greeting_text .catchcopy {
  margin-bottom: 1.3em !important;
  color: var(--text-color-gray);
  text-shadow: 0.02px 0 0 var(--text-color-gray);
  font-family: var(--font-type);
  font-size: 160%;
  font-style: normal;
  font-weight: 400;
}

.greeting_text .catchcopy span {
  margin: 0 4px 0 0;
  color: var(--sub-color);
  text-shadow: 0.02px 0 0 var(--sub-color);
  font-size: /*120*/116%;
}

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

.greeting_left p {
  font-feature-settings: "palt";
  font-size: 105%;
  font-style: normal !important;
  letter-spacing: 0.12em;
  line-height: 2.2;
}

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

.greeting_right::before {
  content: "";
  position: absolute;
  bottom: -110px;
  right: calc(50% - 400px);
  width: 408px;
  height: 331px;
  background: url(../images/front/greeting_bg_mark.svg) no-repeat bottom right / cover;
  z-index: -1;
  opacity: 0.5;
}

.greeting_img {
  background-color: var(--bg-color-light);
  border-radius: 20px;
  overflow: hidden;
  padding: 5px;
  margin: auto;
  text-align: center;
}

.greeting_profile {
  padding: 20px;
  /* background: var(--main-color); */
  color: var(--text-color-gray);
  text-shadow: 0.02px 0 0 var(--text-color-gray);
  text-align: center;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.0;
}

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

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

.greeting_profile .name em {
  font-style: normal;
}

.greeting_profile .name i {
  display: inline-block;
  margin: 0 0 0 5px;
  font-style: normal;
  font-size: 80%;
  font-weight: 400;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting .inner {
    padding: 120px 20px 70px;
  }
  .greeting::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 224px;
    background: url(../images/front/greeting_sp_top_bg.png) no-repeat top center / cover;
  }
  .greeting_right::before {
    bottom: -31px;
    right: 0;
    background-size: 50%;
  }
  .greeting_profile {
    font-size: min(3.3vw, 15px) !important;
    line-height: 1.7;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }

  .greeting_box .top_title {
    position: relative;
    z-index: 1;
    padding: 0;
    /* margin: auto; */
    text-align: center;
  }

  .greeting_text .catchcopy {
    font-size: min(4.8vw, 22px) !important;
  }

  .greeting_box .top_title::after {
    left: calc(50% - 180px);
    background-size: 60%;
  }

  .greeting_left p {
    font-size: 100%;
    letter-spacing: 0.1em;
    line-height: 2.0;
  }

  .greeting_img {
    max-width: 426px;
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  z-index: 1;
  background: /*url(../images/front/medical_bg.png) no-repeat bottom center / cover, */#fff;
}

.medical .top_title {
  position: relative;
  z-index: 1;
  padding: 10px 34px 0;
}

.medical .top_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 351px;
  height: 185px;
  background: url(../images/front/greeing_title_bg.png) no-repeat center / cover;
  z-index: -1;
}

.medical .top_title span {
  margin: 5px 0;
  color: var(--main-color);
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  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; */
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 0 20px 40px;
  background: var(--bg-color-light);
  border: 5px solid rgb(220 241 252 / 20%);
  border-radius: 10px;
  text-align: center;
}

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

.medical_icon {
  width: 100%;
  /* max-width: 140px; */
  max-width: 150px;
  margin: 0 auto 15px !important;
}

.medical_title h3 {
  color: var(--text-color-gray);
  text-shadow: 0.02px 0 0 var(--text-color-gray);
  font-size: 120%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.medical_title_eng {
  margin-top: 10px;
  color: var(--main-color);
  font-family: var(--font-type-en);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  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);
}

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

  .medical .top_title {
    padding: 0;
  }

  .medical .top_title::after {
    left: calc(50% - 180px);
    top: -30px;
    background-size: 60%;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

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

  .medical_inner {
    min-height: auto;
    padding: 0 0 30px;
  }

  .medical_icon {
    /* width: 50%; */
    width: 100%;
  }

  .medical_title h3 {
    font-size: min(3.9vw, 17px) !important;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

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

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

==================================================================================================================================*/
.feature {
  position: relative;
  background: url(../images/front/feature_bg.png) no-repeat top center / cover, var(--bg-color);
}

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


.feature_item{
  position: relative;
  display: flex;
  height: auto;
  width: 100%;
  margin-top: 50px;
  z-index: 1;
}

.feature_item:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 25px;
  right: calc(50vw - 130%);
  width: 1083px;
  height: 414px;
  z-index: -1;
  background: url(../images/front/feature_inner_bg.png) no-repeat right bottom / cover;
  border-radius: 0 0 0 20px;
  overflow: hidden;
}

.feature_item:nth-child(even)::before {
  content: "";
  position: absolute;
  top: -30px;
  left: calc(50vw - 130%);
  z-index: -1;
  width: 770px;
  height: 352px;
  background: url(../images/front/feature_img_bg.png) no-repeat left top / cover;
  border-radius: 0 0 20px 0;
  overflow: hidden;
}

.feature_img{
  width: 500px;
  height: fit-content;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-top: -50px;
}

.feature_inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  background: #fff;
  border-radius: 20px;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 50px 75px 50px 90px;
}

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

.feature_text p{
  font-feature-settings: "palt";
  font-size: 111%;
  font-style: normal !important;
  letter-spacing: 0.12em;
  line-height: 2.2;
  /* font-size: 93%; */
}

.feature_title{
  /* position: relative; */
  display: flex;
  flex-flow: column;
  margin-bottom: 20px!important;
}

.feature_title h3{
  position: relative;
  padding-bottom: 15px;
  color: var(--main-color);
  text-shadow: 0.02px 0 0 var(--main-color);
  font-size: 165%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
  z-index: 1;
}

.feature_title h3:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  content: '';
  background: url(../images/front/feature_h3_line.png) repeat-x left top / 131px 8px;
  z-index: -1;
}

.feature_num{
  position: absolute;
  top: -75px;
  left: 0;
  /* background: url(../images/front/feature_num_bg.png) no-repeat center / cover; */
  aspect-ratio: 153 / 130;
  width: 153px;
  height: 130px;
  margin: 0 0 5px !important;
  z-index: 1;
}

.feature_num span{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  color: var(--bg-color);
  font-size: 530%;
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  transform: translateY(30%);
  z-index: 2;
}

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

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

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

.feature_button {
  margin-top: auto;
}

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

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

@media screen and (min-width: 641px) and (max-width: 1560px) {
  .feature_item:nth-child(even)::before {
    position: absolute; /* ← これがないと left が無視されます */
    left: calc(50vw - 90%) !important;
  }
}

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

  .feature_list{
    gap: 40px;
  }

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

  .feature_item:nth-child(odd) {
    padding-right: 10px;
  }

  .feature_item:nth-child(even) {
    padding-left: 10px;
  }

  .feature_item:nth-child(odd)::before {
    top: -20px;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 30px 30px 30px 0;
    background: url(../images/front/feature_inner_bg.png) repeat-y center top / cover;
  }

  .feature_item:nth-child(even)::before {
    top: -20px;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 30px 30px 30px 0;
    background: url(../images/front/feature_img_bg.png) repeat-y center top / cover;
  }

  .feature_img{
    width: 100%;
    border-radius: 20px 20px 0 0;
    margin: 0;
  }

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

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

  .feature_num {
    background-size: 65%;
    background-position: 10px;
  }
  
  .feature_num span{
    top: 0;
    left: 23px;
    right: 0;
    width: fit-content;
    font-size: 430%;
    transform: translateY(50%);
  }

  .feature_title h3 {
    font-size: min(6.0vw, 22px) !important;
    text-align: left;
  }

  .feature_text p {
    font-size: 100%;
    letter-spacing: 0.1em;
    line-height: 2.0;
  }

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

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

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

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

#infinitySlider .splide__list {
  gap: 10px;
}

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

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