@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: 40px 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: 50px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 220%;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  font-family: var(--eng-font);
  font-weight: 500;
  color: var(--main-color);
  font-size: 150%;
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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%;
  font-family: var(--title-font);
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.mvCatch p {
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}
/* ロゴ配色のキャッチコピー（濃い青：#4F8BE3／ピンク：#F89FC4） */
.mainvisual .mvCatch .inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.mvCatch {
  text-align: left;
}
.mvCatch .mv_catch_main {
  margin: 0 0 14px;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.mvCatch .mv_catch_main::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  background: #f89fc4;
  border-radius: 4px;
}
.mvCatch .mv_catch_sub {
  font-size: 1.15rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ----- コンテンツ ----- */
.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;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}
.open_bnr .date {
  font-size: 110%;
}
.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}
.open_bnr .nairankai_tit {
    display: block;
    width: 80%;
    margin: 0 0 10px;
    padding: 5px 10px;
    background: #ffffff;
    border-radius: 300px;
    color: var(--main-color);
    font-size: 90%;
    text-align: center;
}

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

/* ----- バナーエリア（ロゴ配色） ----- */
/* 画像未設定でもバナーがMV全体に重なるよう、スライダー領域の高さを確保 */
.mvContents .splide__track,
.mvContents .splide__list,
.mvContents .splide__slide {
  height: 100% !important;
}
.mvContents .splide__slide .inner {
  display: block;
  height: 100%;
  padding: 0;
}

/* バナーのラッパーは枠を持たず、子要素を直接MVに重ねる */
.mv_bnr_area {
  display: contents;
  font-family: var(--title-font);
}

/* 開院バナー：左側・大きめ（濃い青＋ピンクのリング） */
.mvContents .open_bnr, .sp_only .open_bnr {
    left: 40px;
    bottom: 60px;
    background: #9cccfc;
}
.mvContents .open_bnr > *,
.sp_only .open_bnr > * {
  background: #298aef;
}
.mvContents .open_bnr .nairankai_tit,
.sp_only .open_bnr .nairankai_tit {
  color: #4f8be3;
}
/* WPエディタが挿入する空要素は円にしない（丸が増える対策） */
.open_bnr > *:empty,
.feature_bnr > *:empty {
  display: none !important;
}

/* 女性医師による診療に対応バナー：右側・小さめ（濃い青＋薄い青リング） */
.feature_bnr {
  position: absolute;
  right: 40px;
  bottom: 60px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  padding: 15px;
  background: #298aef;
  border: 4px solid #9cccfc;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(79, 139, 227, 0.3);
}
.feature_bnr p {
  color: #ffffff;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 350px;
  }
  /* ----- スライダーの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;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 300px;
    border-radius: 18px;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 90%;
  }
  /* ----- バナーエリア（SP） ----- */
  .sp_only .mv_bnr_area {
    position: static;
    max-width: none;
    margin: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  .sp_only .mv_bnr_area .open_bnr {
    left: auto;
    bottom: auto;
    background: #9cccfc;
  }
  /* 女性医師バナー（SP） */
  .feature_bnr {
    position: static;
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 15px 18px;
    border-radius: 16px;
    transform: none;
  }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }
  .sp_only .inner {
    padding: 20px 15px;
}
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: var(--bg-color);
}

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

.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
  padding: 50px 60px;
  background: #ffffff;
  border-radius: 24px;
}

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

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

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

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

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

/* 左右カラムを白の角丸カードに */
.clinic .info .info_left,
.clinic .info .info_right {
  padding: 40px;
  background: #ffffff;
  border-radius: 24px;
}

/* カードが白なので、中の要素は白以外にする */
.clinic .info .office_hour .title {
  background: var(--bg-color);
}

.clinic .info .office_hour .table_wrapper {
  background: var(--bg-color);
  border-radius: 10px;
}

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

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

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

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-family: var(--eng-font);
  font-size: 30px;
  line-height: 1;
}

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

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

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 10px;
}

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

.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 .news {
    padding: 40px 0;
}
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    width: auto;
    margin: 0px 15px;
    padding: 30px 20px;
}

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

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

  .clinic .info .info_left,
  .clinic .info .info_right {
    padding: 25px 20px;
  }

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

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

  *ご挨拶（パターン01）

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

/* ----- ノート風カード ----- */
.greeting_box {
  position: relative;
  z-index: 1;
  padding: 56px 50px 50px 72px;
  background-color: #fffdf7;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* 綴じ穴（上） */
.greeting_box::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 2;
  height: 12px;
  background-image: radial-gradient(circle, #d2d2d2 0 4px, transparent 5px);
  background-size: 40px 12px;
  background-repeat: repeat-x;
  background-position: 26px center;
}

/* ノートの罫線：本文ブロックに敷き、行頭(本文)と罫線を揃える
   ※1サイクル40px＝本文のline-heightと同じ。線の位置(27〜28px)は文字のベースラインに合わせた値 */
.greeting_inner {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 27px,
    #dfeaf8 27px,
    #dfeaf8 28px,
    transparent 28px,
    transparent 40px
  );
}

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

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

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

.greeting_text {
  line-height: 40px;
  font-size: 16px;
  letter-spacing: 0em;
}

.greeting_text > *:not(:last-child) {
  margin-bottom: 40px; /* 行ピッチ(40px)の倍数にして罫線のリズムを崩さない */
}

.greeting_profile {
  padding: 20px;
  background: var(--main-color);
  font-family: var(--title-font);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  border-radius: 0 0 8px 8px;
}
.greeting_profile .position {
  font-size: 130%;
}
.greeting_profile .name {
  font-size: 150%;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting_box {
    padding: 50px 15px 36px 15px;
  }
  .greeting_text {
    font-size: 14px;
    letter-spacing: 0;
}
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  /* SPは画像が上・本文が下の縦並び(column-reverse)になるため、
     罫線を本文ブロック基準に切り替えて行と揃える */
  .greeting_inner {
    background-image: none;
  }
  .greeting_left {
    width: 100%;
    background-image: repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 27px,
      #dfeaf8 27px,
      #dfeaf8 28px,
      transparent 28px,
      transparent 40px
    );
  }
  .greeting_btn {
    margin-top: 40px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background-color: #ffffff;
  background-image:
    linear-gradient(0deg, rgba(79, 139, 227, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 139, 227, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.medical .top_title {
  color: var(--text-color);
}
.medical .top_title span {
  color: #4f8be3;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  transition: transform 0.2s;
}
.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: transparent;
  text-align: center;
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
  text-align: center;
}
.medical_icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: #e8f1fb;
  border-radius: 50%;
  color: #4f8be3;
  font-size: 50px;
}

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

.medical_title_eng {
  margin-top: 5px;
  font-family: var(--eng-font);
  font-weight: 500;
  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);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background-color: #ffffff;
    background-image:
      linear-gradient(0deg, rgba(79, 139, 227, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(79, 139, 227, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .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;
  }
  .medical_icon {
    width: 50%;
  }
  .medical_icon i {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
  .medical_title h3 {
    font-size: 110%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  background-color: #a9dde9;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='240' viewBox='0 0 1440 240' preserveAspectRatio='none'%3E%3Cpath d='M0 210 C 360 180 680 90 1020 68 C 1240 54 1340 48 1440 38 L1440 0 L0 0 Z' fill='%23ffffff' opacity='0.32'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='300' viewBox='0 0 1440 300' preserveAspectRatio='none'%3E%3Cpath d='M0 78 C 320 104 600 172 920 202 C 1160 224 1320 236 1440 250 L1440 300 L0 300 Z' fill='%2399d6e6' opacity='0.45'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #ffffff 0%, #ecf8fc 32%, #d4f0f5 66%, #bce6ee 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: top center, bottom center, center;
  background-size: 100% 240px, 100% 300px, cover;
}

/* ----- 下からゆっくり上がる泡（CSSアニメ） ----- */
.feature_bubbles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.feature_bubbles span {
  position: absolute;
  bottom: -80px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.35) 60%, rgba(255, 255, 255, 0.08));
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.6);
  animation: bubbleRise 14s linear infinite;
  will-change: transform, opacity;
}
.feature_bubbles span:nth-child(1)  { left: 6%;  width: 30px; height: 30px; animation-duration: 9s;  animation-delay: 0s; }
.feature_bubbles span:nth-child(2)  { left: 14%; width: 52px; height: 52px; animation-duration: 12s; animation-delay: 3s; }
.feature_bubbles span:nth-child(3)  { left: 23%; width: 22px; height: 22px; animation-duration: 8s;  animation-delay: 1.5s; }
.feature_bubbles span:nth-child(4)  { left: 31%; width: 40px; height: 40px; animation-duration: 11s; animation-delay: 5s; }
.feature_bubbles span:nth-child(5)  { left: 40%; width: 64px; height: 64px; animation-duration: 14s; animation-delay: 0.8s; }
.feature_bubbles span:nth-child(6)  { left: 48%; width: 26px; height: 26px; animation-duration: 8s;  animation-delay: 3.5s; }
.feature_bubbles span:nth-child(7)  { left: 57%; width: 44px; height: 44px; animation-duration: 12s; animation-delay: 6s; }
.feature_bubbles span:nth-child(8)  { left: 66%; width: 20px; height: 20px; animation-duration: 7s;  animation-delay: 2s; }
.feature_bubbles span:nth-child(9)  { left: 74%; width: 54px; height: 54px; animation-duration: 13s; animation-delay: 4s; }
.feature_bubbles span:nth-child(10) { left: 82%; width: 32px; height: 32px; animation-duration: 10s; animation-delay: 0.5s; }
.feature_bubbles span:nth-child(11) { left: 90%; width: 46px; height: 46px; animation-duration: 11s; animation-delay: 5.5s; }
.feature_bubbles span:nth-child(12) { left: 96%; width: 24px; height: 24px; animation-duration: 8s;  animation-delay: 3s; }

@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(0.5);    opacity: 0; }
  12%  { opacity: 0.9; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-920px) scale(1); opacity: 0; }
}

/* 動きを減らす設定の人には停止 */
@media (prefers-reduced-motion: reduce) {
  .feature_bubbles span {
    animation: none;
    display: none;
  }
}

.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;
  align-self: flex-start;
  width: 500px;
  margin-top: -50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(35, 120, 160, 0.22);
}
.feature_img img {
  display: block;
  width: 100%;
  height: auto;
}

/* 水中のガラス（フロストガラス）風カード */
.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(35, 120, 160, 0.18);
}

.feature_title {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 18px;
}
/* 見出し下の波アクセント */
.feature_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #5fc1d8, #4f8be3);
  border-radius: 3px;
}

.feature_title h3 {
  font-family: var(--title-font);
  font-weight: 700;
  color: #2f7fb5;
  font-size: 150%;
  line-height: 1.6;
}

/* 番号をバブル風バッジに */
.feature_num {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 18px;
  background: linear-gradient(135deg, #5fc1d8, #4f8be3);
  border-radius: 40px;
  color: #ffffff;
  font-size: 88%;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(79, 139, 227, 0.3);
}

.feature_num span {
  color: #ffffff;
  font-size: 110%;
  font-weight: 700;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
  }
  .feature_title h3 {
    font-size: 130%;
}

  .feature_list {
    gap: 40px;
  }

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

  .feature_img {
    width: 100%;
    margin: 0;
  }

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

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

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