@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
}

section .inner {
  padding: 150px 0 20px;
}

.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: 100px 20px 0;
  }

  /* ----- パララックス ----- */
  .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: 70px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: /*400*/600;
/*   color: var(--main-color); */
  color: rgba(0, 161, 153, 0.9);
  font-size: 130%;
  letter-spacing: 0.1em;
}

.top_title h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 300%;
  letter-spacing: 0.1em;
}

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

  .top_title .eng {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 100%;
  }

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

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

  *ローディングアニメーション

================================================================================================================================== */
#loading {
  position: fixed;
  z-index: 99999;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 100px;
  background: #ffffff;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  inset: 0;
}

#loading.is-hide {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

#loading .logo {
  width: 150px;
  height: auto;
}

#loading .logo img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: loadingLogo 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

#loading .catch {
  margin-top: 50px;
  text-align: center;
}

#loading .catch .main {
  font-size: 200%;
  opacity: 0;
  animation: loadingUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

#loading .catch .sub {
  margin-top: 15px;
  font-size: /*100*/120%;
  opacity: 0;
  animation: loadingUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

@keyframes loadingLogo {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes loadingUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 640px) {
  #loading {
    padding: 20px 20px 100px;
  }

  #loading .logo {
    width: 100px;
  }

  #loading .catch {
    margin-top: 30px;
    text-align: center;
  }

  #loading .catch .main {
    font-size: 140%;
  }

  #loading .catch .sub {
    margin-top: 15px;
    font-size: /*80*/100%;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 850px;
  overflow: hidden;
}

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 20px;
}

/* ----- スライダーの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#sliderBtn_prev {
  left: 20px;
}

.mvSlider .sliderBtn#sliderBtn_next {
  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#sliderBtn_prev span::before {
  content: "\f053";
}

.mvSlider .sliderBtn#sliderBtn_next span::before {
  content: "\f054";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.mvImg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
/*   background: linear-gradient(190deg, rgba(0, 0, 0, 0.35) 50%, rgba(141, 194, 31, 0.7), rgba(0, 161, 153, 0.9)); */
}

.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;
  bottom: 30px;
  left: 0;
  z-index: 3;
  width: 100%;
  color: #ffffff;
  transform: translateY(-50%);
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0 80px;
}
.mvCatch .catch p{
	color:var(--text-color);
	text-shadow: 0 0 5px #fff,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 15px #fff;
}
.mvCatch .catch .main {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 0 0 30px;
  padding: 0 10px 10px 0;
  font-size: 200%;
}

.mvCatch .catch .main::after {
  content: "";
  position: absolute;
  bottom: 9;
  left: 0;
  display: block;
  width: 100%;
  height: 1.3px;
  margin: 15px 0 30px;
/*   background: linear-gradient(to right, #ffffff, 45px, transparent 45px, transparent 50px, #ffffff 50px, #ffffff 70px, transparent 70px, transparent 75px, #ffffff 75px, #ffffff 100%); */
  background: var(--text-color);
  box-shadow: 0 0 5px #fff,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 15px #fff;
/*   opacity: 0.7; */
}

.mvCatch .catch .sub {
  display: block;
  width: fit-content;
  padding-left: 5px;
  font-size: /*100*/120%;
}

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

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

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

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

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

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

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: calc(100svh - 110px);
    min-height: 500px;
  }

  .mvSlider {
    padding: 10px;
  }

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

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

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

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

  /* ----- キャッチコピー ----- */
  .mvCatch {
    bottom: 70px;
    display: none;
    transform: translate(0, 0);
  }

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

  .mvCatch .inner {
    padding: 0 30px;
  }

  .mvCatch .catch {
    text-align: center;
  }

  .mvCatch .catch .main {
    width: 100%;
    font-size: 140%;
  }

  .mvCatch .catch .sub {
    width: 100%;
    font-size: /*12*/16px;
  }

  /* ----- コンテンツ ----- */
  .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%;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.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%;
  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) {
  /* ----- グリッドバナー ----- */
  .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;
  }
}


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

  *ご挨拶（パターン01）

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

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

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

.greeting_flex {
  display: flex;
}

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

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

.greeting_img img {
  border-radius: 20px;
}

.greeting_profile {
  margin-top: 40px;
  line-height: 1.75;
  text-align: center;
}

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

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

.greeting_right {
  padding: 20px 0px 20px 100px;
}

.greeting_text {
  line-height: 2.5;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting .inner {
    padding-top: 20px;
  }

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

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

  .greeting_left {
    width: 100%;
  }

  .greeting_right {
    padding: 0;
  }

  .greeting_profile {
    margin-top: 30px;
  }

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.feature::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100%;
  max-width: 1500px;
  height: 50%;
  background: var(--bg-gray);
  border-radius: 20px;
  transform: translateX(-50%);
}

.feature .top_title {
  margin-bottom: 0;
  text-align: start;
}

.feature_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.feature_message {
  font-size: 105%;
}

.feature_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature_item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  height: auto;
  border-radius: 15px;
}

.feature_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.feature_img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7));
}

.feature_img::after {
/*   content: "\f062"; */
  content:"";
  position: absolute;
  bottom: -50px;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 0 0 40px 0;
/*   background: linear-gradient(135deg, rgba(141, 194, 31, 0.9), rgba(0, 161, 153, 0.9)); */
  background:rgba(0, 161, 153, 0.9);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 14px;
  transform: translateX(-50%);
  transition: 0.4s;
}

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

.feature_item:hover .feature_img::after {
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  padding-bottom: 200px;
  border-radius: 0;
  font-size: 20px;
}

.feature_inner {
  z-index: 2;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: auto;
  min-height: 600px;
  padding: 20px 20px 100px 20px;
  color: #ffffff;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin-bottom: 30px;
}

.feature_title h3 {
  font-size: 150%;
  line-height: 1.75;
  text-align: center;
}

.feature_text {
  font-size: 95%;
}

.feature_button {
  margin-top: 30px;
}

.feature_button a {
  display: flex;
  justify-content: center;
  align-items: center;
/*   width: 100%; */
  width: fit-content;
  padding: 30px /*20*/40px;
  background: var(--sub-color);
  border-radius: 10px;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  font-size: 120%;
  letter-spacing: 0.15em;
  margin: 0 auto;
}

.feature_button a:hover {
  background: #ffffff;
  color: var(--sub-color);
}

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

  .feature::before {
    width: 100%;
    min-width: auto;
    height: 75%;
    border-radius: 20px;
  }

  .feature_top {
    flex-flow: column;
    gap: 20px;
    margin-bottom: 40px;
  }

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

  .feature_message {
    font-size: 90%;
    text-align: center;
  }

  .feature_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .feature_img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.7));
  }

  .feature_item:hover .feature_img::after {
    padding-bottom: 250px;
    font-size: 18px;
  }

  .feature_inner {
    min-height: 350px;
    padding: 100px 20px 100px 30px;
  }

  .feature_button {
    margin-top: 30px;
  }

  .feature_button a {
    padding: 20px 20px;
    border-radius: 7px;
    font-size: 110%;
    letter-spacing: 0.15em;
  }
}

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

  *病状、症状から探す（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.area .inner {
  display: flex;
  padding: 180px 0 150px;
}

.area_left {
  width: 55%;
  padding: 50px 100px 0 0;
}

.area_contents {
  line-height: 2.5;
}

.area_right {
  width: 50%;
}

.area_img .title {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  margin: 0 0 -20px auto;
  padding: 7px 40px;
/*   background: var(--main-color); */
  background:rgba(0, 161, 153, 0.9);
  border-radius: 7px;
  color: #ffffff;
  font-size: 105%;
}

.area_img img {
  border-radius: 15px;
}

.area_text {
  margin-top: 25px;
  font-size: 90%;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .area .inner {
    flex-flow: column;
    gap: 30px;
    padding: 80px 20px;
  }

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

  .area_right {
    width: 100%;
  }

  .area_img .title {
    margin: 0 0 -20px auto;
    padding: 5px 20px;
    font-size: 100%;
  }

  .area_img img {
    border-radius: 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;
  }
}

/* 提携病院 */
.affiliations_title h2{
	font-size: 300%;
}