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

  *基本設定

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

section .inner {
  padding: 120px 50px 150px;
  max-width: 1500px;
}

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

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
/* .parallax::before {
    position: absolute;
    content: "Pickup";
    color: rgba(255,255,255, 0.5);
    font-size: 220px;
    bottom: -44px;
    right: 12px;
    letter-spacing: 0.05em;
    line-height: 1;
    font-family: var(--en-font);
    font-weight: 300;
    font-style: normal;
} */
.parallax::after {
    position: absolute;
    content: "";
    background: linear-gradient(rgba(11, 35, 60, 0) 50%,rgba(25, 57, 90, 0.4));
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.feature_parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.feature_parallax::before {
    position: absolute;
    content: "";
    background: linear-gradient(rgba(11, 35, 60, 0.4),rgba(11, 35, 60, 0.4));
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}


/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

/* 固定する画像 */
.parallax_img img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media print {
.parallax_img {
    position: static;
    clip-path: none;
}
.parallax_img img {
    position: static;
}
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 200px;
  }

  .parallax::before {
    font-size: 80px;
    bottom: -15px;
  }
}
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-size: 135%;
  margin-top: -10px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
}
.top_title .eng {
  display: inline-block;
  padding-bottom: 13px;
  color: var(--main-color);
  font-size: 800%;
  line-height: 1;
  font-family: var(--en-font);
font-weight: 400;
font-style: normal;
background: var(--gradation-color); 
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    letter-spacing: 0.06em;
}

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

  *メインビジュアル

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

/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 900px;
  /* overflow: hidden; */
  margin-top: 180px;
}

.mainvisual::before {
    position: absolute;
    content: '';
    width: 30%;
    height: calc(100% + 400px);
    background: url(../images/common/pattern_dairiseki.jpg) top right;
    top: -180px;
    left: 0;
    opacity: 0.8;
}
.mvSlider {
  position: relative;
  z-index: 1;
  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#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 {
    width: calc(100% - 300px);
  margin: 0 0 0 auto;
  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: 46%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
    max-width: 1920px;
    padding: 0 100px;
}
.mvCatch p {
    position: relative;
  font-size: 240%;
  text-shadow: 0px 0px 5px rgba(255,255,255, 1),0px 0px 5px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1), 0px 0px 10px rgba(255,255,255, 1);
  /* filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff); */
  letter-spacing: 0.12em;
  
}
.mvCatch .catch_sub {
    font-size: 150%;
    padding-left: 2em;
}
.mvCatch .catch_sub::before {
    content: "";
    position: absolute;
    width: 1.5em;
    height: 1px;
    background: var(--text-color);
    top: 24px;
    left: 0;
}
/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  padding: 0 100px;
}
.mvContents .splide__track {
  width: 100%;
  height: 100%;
}

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 80px;
  display: inline-block;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.open_bnr > * {
    position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: rgba(11, 35, 60, 0.4);
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.open_bnr > *::before {
    position: absolute;
    content: "";
    background: url(../images/common/logo_mark01_w.svg) center / cover no-repeat;
    width: 350px;
    height: 350px;
    top: 28px;
    left: -102px;
    opacity: 0.2;
    z-index: -1;
}
.open_bnr .date {
  font-size: 120%;
	margin: 0 0 22px;
}
.open_bnr .open_text {
  font-size: 180%;
  letter-spacing: 0.2em;
}
.open_bnr .nairankai_tit {
    position: relative;
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  padding: 0 40px;
  font-size: 90%;
  text-align: center;
  letter-spacing: 0.2em;
}
.open_bnr .nairankai_tit::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 28px;
    height: 1px;
    top: 12px;
    left: 0;
}
.open_bnr .nairankai_tit::after {
    position: absolute;
    content: "";
    background: #fff;
    width: 28px;
    height: 1px;
    top: 12px;
    right: 0;
}
.nairakai_date {
    font-size: 80%;
}
/* サブカラー */
.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: 500px;
        margin-top: 125px;
  }
  .mainvisual::before {
    width: 40%;
    height: calc(100% + 350px);
  }
  .mvImg {
    width: calc(100% - 20px);
  }
  /* ----- スライダーの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 {
    top: auto;
    bottom: 20px;
    display: none;
    transform: none;
  }
  .mvCatch .inner {
    max-width: 100%;
    padding: 0 10px 0 40px;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.5;
  }
  .mvCatch .catch_sub {
    font-size: 90%;
    margin-top: 10px;
  }
  .mvCatch .catch_sub::before {
    top: 12px;
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 0;
    border-radius: 0;
  }
  .open_bnr > *::before {
     width: 200px;
    height: 200px;
    top: 20px;
    left: -40px;   
  }
  /* ----- スマホ専用エリア ----- */
  h1 {
    position: relative;
    background: none;
    top: 0;
    margin: 0 auto;
    padding: 20px;
  }
  .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;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.top_banner .input .banner_slide .slide_content {
  font-size: 90%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.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 .inner {
    padding: 100px 50px;
}
#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: 15px 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 .inner {
    padding: 50px 20px;
  }
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }
  #bannerSlider .splide__slide {
    min-height: 100px;
  }
  /* スライダーの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
---------------------------------------------------------------------- */
.clinic {
background: 
linear-gradient(rgba(255,255,255,1) ,rgba(255,255,255,0.2)),
url(../images/common/pattern_dairiseki02.jpg) top left;
padding-bottom: 120px;
}
.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.clinic .inner > * {
  width: 50%;
  padding: 0 50px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.clinic .top_title h2 {
  font-size: 130%;
}
.clinic .top_title .eng {
    font-size: 450%;
}
.clinic .inner .news {
    border-right: 1px solid var(--line-color);
}
/* ----- お知らせ ----- */

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

/* ----- 医院概要 ----- */
.clinic .info .office_hour .title {
  background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
}

/* 診療科目 */
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px auto 0;
}
.clinic .info .speciality span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3 - 7px);
    background: var(--sub-color02);
    padding: 5px 20px;
}
/* .clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
} */

.clinic .info address {
  margin-top: 20px;
}
.clinic .info address > * {
    display: inline-block;
  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: linear-gradient(135deg, #83b0e2, #dad1bf);
  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 span {
  display: inline-block;
  margin-right: 10px;
}
.clinic .info address .tel {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 28px;
  line-height: 1;
}
.clinic .info address .tel a {
  color: var(--sub-color03);
  letter-spacing: 0.12em;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}
.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 28px;
  line-height: 1;
}
.clinic .info address .fax {
  color: var(--sub-color03);
  letter-spacing: 0.12em;
}
.clinic .info address .fax::before {
  content: "\f249";
}
.clinic .info address .note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 90%;
}

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


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.clinic {
    padding-bottom: 70px;
}
.clinic .inner {
    padding: 0 20px;
}
.clinic .top_title .eng {
    font-size: 55px;
}
.clinic .top_title h2 {
    font-size: 18px;
}
  .clinic .inner > * {
    width: 100%;
    padding: 0;
  }
  .clinic .inner .news {
    padding-bottom: 50px;
    border-right: none;
  }
  
  /* ----- 医院概要 ----- */
  .clinic .info .speciality {
    gap: 5px;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info .speciality span {
    padding: 5px;
    font-size: 90%;
    line-height: 1.5;
        width: calc(100% / 3);
  }
  .clinic .info address .location span {
    display: block;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}
.greeting::before {
    position: absolute;
    content: "";
    background: url(../images/front/bg_dairiseki_l.jpg) top left / contain no-repeat;
    width: 700px;
    height: 700px;
    bottom: 0;
    left: 0;
    right: auto;
    z-index: -1;
    opacity: 0.7;
        transform: scaleY(-1);
}
.greeting .inner {
    max-width: 1920px;
    padding: 150px 0 120px;
}
.greeting .top_title {
    position: relative;
    text-align: left;
}
.greeting .top_title::before {
    position: absolute;
    content: "";
    background: var(--sub-color02);
    mask: url(../images/common/logo_mark01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/common/logo_mark01.svg) top left / cover no-repeat;
    width: 330px;
    height: 331px;
    top: -68px;
    left: -76px;
    z-index: -1;
    opacity: 0.5;
}
.greeting_box {
  position: relative;
  z-index: 1;
}

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

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

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

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

.greeting_text {
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}
.greeting_catch {
    width: fit-content;
    position: relative;
    color: var(--sub-color);
    font-size: 200%;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    margin-bottom: 24px!important;
}
.greeting_right {
    margin-top: 20px;
}
.greeting_img {
    position: relative;
    height: 100%;
    max-height: 800px;
}
.greeting_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.greeting_profile {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    width: 100%;
    height: 30%;
    padding: 0 20px 30px 20px;
    background: linear-gradient(rgba(11, 35, 60, 0), rgba(11, 35, 60, 0.6));
    color: #ffffff;
    line-height: 1.75;
    text-align: center;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}

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

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

.greeting_profile .name span {
    font-size: 80%;
    padding-right: 10px;
}
.greeting_btn {
  margin-top: 50px;
}
@media screen and (max-width: 1500px) {
.greeting_left {
    padding: 0 0 0 50px;
}
.greeting_flex {
    gap: 50px;
}
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.greeting .inner {
    padding: 70px 20px;
}
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
    padding: 0;
  }
  .greeting_profile .position {
    font-size: 100%;
  }
  .greeting_profile .name {
    font-size: 130%;
}
  .greeting_btn {
    margin-top: 40px;
  }
  .greeting_catch {
    font-size: 20px;
  }
  
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    position: relative;
    background: url(../images/front/bg_dairiseki_l.jpg) top left / 700px no-repeat;
}
.medical::before {
    position: absolute;
    content: "";
    width: 65%;
    height: 720px;
    background: url(../images/common/pattern_dairiseki02.jpg) top left / 1000px;
    bottom: -200px;
    right: 0;
}
.medical .top_title span {
  color: var(--main-color);
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
    justify-content: center;
  gap: 20px;
}

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


.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.5s;
}
.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.medical_item:hover .medical_img img {
    transform: scale(1.2);
}

.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(11, 35, 60, 0.5);
  text-align: center;
 transition: background 0.5s, backdrop-filter 0.5s;
}
.medical_item:hover .medical_inner {
    backdrop-filter: blur(3px);
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}
.medical_item:hover .medical_inner {
    background: rgba(11, 35, 60, 0.3);
}
.medical_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
}

.medical_title h3 {
  color: #fff;
  font-size: 120%;
  line-height: 1.6;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.medical_title h3 span {
    display: block;
    font-size: 70%;
}
.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.medical_text {
  color: var(--text-color);
}
.medical_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.medical_btn::before {
    position: absolute;
    content: "";
    width: calc(100% - 90px);
    height: 1px;
    background: #fff;
    bottom: 20px;
    left: 20px;
    opacity: 0.3;
}
.medical_btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: var(--sub-color02);
    bottom: 20px;
    left: 20px;
    transition: width 0.5s;
}
.medical_btn span {
  position: absolute;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: opacity 0.8s;
  bottom: 5px;
  right: 20px;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  opacity: 0.4;
}

.medical_btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

.medical_item:hover .medical_btn::after {
    width: calc(100% - 90px);
}
.medical_item:hover .medical_btn span {
    opacity: 1;
}

/* ----- 先頭2つの設定----- */
.medical_item:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  min-height: 450px;
}
.medical_item:nth-of-type(-n + 2) .medical_inner {
  padding: 20px 20px 40px;
}
.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}
.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 150%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical_list {
    gap: 15px 10px;
  }
  .medical_item {
    width: calc(50% - 5px);
  }
  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }
  .medical_icon {
    width: 30%;
  }
  .medical_title h3 {
    font-size: 110%;
  }
  .medical_btn span {
    font-size: 13px;
  }
  .medical_btn::before,
  .medical_btn::after {
    bottom: 17px;
  }
  /* ----- 先頭2つの設定----- */
  .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }
  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 30px 20px;
  }
  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 20%;
  }
  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    position: relative;
}
.feature .top_title {
    position: relative;
    z-index: 1;
}
.feature .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/common/logo_mark02_w.svg) top left / cover no-repeat;
    width: 300px;
    height: 145px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.2;
    z-index: -1;
}
.feature .top_title h2 {
    color: #fff;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.feature_item {
    position: relative;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  margin: 0 0 50px 0;
  background: 
  linear-gradient(rgba(255,255,255,0.3),rgba(255,255,255,0.3)),
  url(../images/common/pattern_dairiseki02.jpg) bottom left / 700px;
}

.feature_num {
  position: absolute;
  margin: 0 0 0 !important;
  font-size: 150%;
  color: var(--sub-color03);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 43%;
  bottom: 30px;
  transform: translateX(-50%);
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  z-index: 1;
  font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}

.feature_num span {
    position: absolute;
    font-size: 100px;
    display: block;
    width: fit-content;
    top: -55px;
    padding-left: 90px;
    color: rgba(160, 190, 218, 0.5);
    z-index: -1;
}


.feature_inner {
    display: flex;
    flex-flow: column;
    height: 100%;
    margin-top: -170px;
    padding: 160px 20px 30px;
    /* background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 130px); */
}
.feature_img {
    position: relative;
}
.feature_img img {
    mask: linear-gradient(rgba(255, 255, 255, 1) 250px,rgba(255, 255, 255, 0)95%);
}
.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 0;
}


.feature_title h3 {
  font-size: 125%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.feature_button {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}
.feature_button .btn01 {
  text-align: center;
}
.feature_button .btn01 a {
    min-width: 200px;
    background: none;
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
}
.feature_button .btn01 a:hover {
    color: #fff;
    border: 1px solid #dac5b1;
}
.feature_button .btn01 a::before {
    opacity: 0;
}
.feature_button .btn01 a:hover::before {
    opacity: 1;
}
.feature_button .btn01 a::after {
    background: var(--sub-color);
}
.feature_button .btn01 a:hover::after {
    background: #fff;
}
.feature_item:nth-child(2),
.feature_item:nth-child(5) {
    position: relative;
    top: 50px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
    margin: 0;
  }
  .feature_inner {
    padding: 170px 20px 30px;
  }
  .feature_title {
    min-height: auto;
    padding: 10px 0;
    margin-bottom: 15px !important;
  }
.feature_title h3 {
    font-size: 110%;
}
.feature_num {
    font-size: 120%;
}
.feature_num span {
   top: -30px; 
    font-size: 80px;
    padding-top: 0;
}
.feature_button {
    padding-top: 0;
}
.feature_item:nth-child(2), .feature_item:nth-child(5) {
    top: 0;
}
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  z-index: 1;
}
.search::before {
    position: absolute;
    content: "";
    background: url(../images/front/search_bg.jpg) center / cover no-repeat;
    width: 96%;
    min-width: 1100px;
    height: 460px;
    right: 0;
    bottom: 140px;
    z-index: -1;
}
.search .inner {
    display: flex;
    position: relative;
    padding: 150px 50px 300px;
}

.search .top_title h2 {
    font-size: 140%;
}
.search .top_title .eng {
    font-size: 600%;
}
.search .top_title {
    text-align: left;
}
.search .tab_wrapper {
    width: calc(100% - 400px);
    margin-left: auto;
}
.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-height: 100px;
  padding: 15px 20px;
  background: #a9a9a9;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.search .tab_list li.is-active {
  background: var(--main-color);
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 20px;
  background: var(--bg-color);
}
.search .panel > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: fit-content;
}
.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 20px 20px 20px 45px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 110%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  transition: background 0.5s;
}
/* @media screen and (max-width: 640px) { */
.search_list a .small {
	font-size:80%;
	line-height:1.4;
}
/* 	} */
.search_list a:hover {
    background: var(--sub-color02);
}
.search_list a::before {
    position: absolute;
    display: block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f002";
    color: var(--sub-color02);
    left: 15px;
    transition: color 0.5s;
}
.search_list a:hover::before {
    color: var(--sub-color);
}

/* ----- 画像あり ----- */
.panel_flex.is-active {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.panel_flex .search_img {
  width: calc(30% - 10px);
  margin: 0 !important;
}
.panel_flex .search_list {
  grid-template-columns: repeat(2, 1fr);
  width: calc(70% - 10px);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.search::before {
    width: 100%;
    min-width: 100%;
    bottom: 45px;
    height: 200px;
}
.search .inner {
    flex-flow: column;
    padding: 70px 20px 200px;
}
.search .tab_wrapper {
    width: 100%;
    margin-left: 0;
}
.feature .top_title::before {
    width: 208px;
    height: 100px;
}
.search .top_title .eng {
    font-size: 55px;
}
.search .top_title h2 {
    font-size: 18px;
}
  .search .tab_list {
    gap: 7px;
    margin: 0;
  }
  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 100%;
    line-height: 1.5;
    text-align: center;
    transform: translate(0, 0) !important;
  }
  /* ----- パネル ----- */
  .search .panel {
    padding: 20px;
  }
  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .search_list a {
    padding: 6px 10px 6px 30px;
    min-height: 50px;
    font-size: 90%;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .search_list a::before {
    left: 10px;
  }
  /* ----- 画像あり ----- */
  .panel_flex.is-active {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .panel_flex .search_img {
    width: 100%;
    height: 200px;
  }
  .panel_flex .search_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .panel_flex .search_list {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
    position: relative;
    margin: -70px 0 0;
    position: relative;
    z-index: 1;
    
}
.pickup::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 800px;
    background: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,0)),
    url(../images/common/pattern_dairiseki.jpg) top left;
    left: 0;
    bottom: 0;
}

.pickup .inner {
  width: 100%;
  max-width: 100%;
  padding: 0 0 150px 0;
}

.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 0;
}

.pickup_item {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.pickup_img {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  /* box-shadow: 0 0 20px rgba(50, 55, 60, 0.2); */
}
.pickup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pickup_inner {
  position: relative;
  z-index: 2;
  width: 52%;
  margin: 0;
  padding: 130px 150px 130px 100px;
}
.pickup_inner::before {
    position: absolute;
    content: "";
    background: url(../images/front/bg_dairiseki_r.jpg) top right / contain no-repeat;
    width: 90%;
    height: calc(100% + 70px);
    bottom: -70px;
    right: 0;
    transform: scaleY(-1);
    z-index: -1;
    opacity: 0.7;
}
.pickup_item:first-child .pickup_inner {
    margin-top: 70px;
    
}


.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.pickup_title_inner {
    display: flex;
    align-items: flex-start;
    font-size: 160%;
    padding-bottom: 10px;
}
.pickup_title h2, .pickup_title h3 {
    position: relative;
  background: none;
  width: fit-content;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1.6;
  
}

.pickup_title h2 > span,
.pickup_title h3 > span {
    color: var(--sub-color03);
}

.pickup_number {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
    color: #d8c6b5;
    line-height: 1;
    margin: 8px 10px 0 0;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}
.pickup_number::after {
    display: block;
    content: "";
    background: #d8c6b5;
    width: 10px;
    height: 1px;
}

.pickup_title .eng {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 550%;
    padding: 10px 0;
    line-height: 1;
    letter-spacing: 0.04em;
  color: var(--main-color);
  font-family: var(--en-font);
  font-weight: 300;
  font-style: normal;
  /* background: var(--gradation-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
/* .pickup_title .eng::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1px;
    background: var(--text-color);
} */
.pickup_text {
  margin: 40px 0 20px;
  line-height: 1.8;
}

.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.pickup_btn {
  width: calc(50% - 5px);
  height: fit-content;
}
.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 15px 60px 15px 35px;
  background: var(--gradation-color);
  color: #ffffff;
  font-size: 95%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  z-index: 1;
}

.pickup_btn a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #dbc6b3, #b59f7f);
    transition: 0.5s;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
}
.pickup_btn a:hover::before {
    opacity: 0;
}
.pickup_btn a::after {
    position: absolute;
    content: "";
    background: url(../images/common/arrow_img.svg) center right / cover no-repeat;
    width: 30px;
    height: 8px;
    top: calc(50% - 4px);
    right: 15px;
    transform: translateY(-50%);
    transition: 0.5s;
}
.pickup_btn a:hover::after {
    right: 10px;
}

/* ----- 画像リンク ----- */
.pickup_img_link_box {
    flex-shrink: 0;
    width: 50%;
    position: relative;
    z-index: 2;
    /* box-shadow: 0 0 20px rgba(50, 55, 60, 0.2); */
}
.pickup_img_link {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.pickup_img_link li {
    width: 50%;
}
.pickup_img_link li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.pickup_img_link li a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(rgba(11, 35, 60, 0), rgb(13, 55, 99, 0.7));
    left: 0;
    bottom: -50px;
    transition: 0.5s;
}
.pickup_img_link li a:hover::before {
    bottom: 0;
}

.pickup_img_link li a img {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.pickup_img_link li a:hover img {
    transform: scale(1.2);
}
.pickup_img_link li .pickup_img_link_text {
    position: absolute;
    display: block;
    right: 20px;
    bottom: 40px;
    width: 100%;
    padding-left: 40px;
    text-align: right;
    font-size: 100%;
    color: #fff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}
.pickup_img_link li .pickup_img_link_text::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    bottom: -8px;
}
.pickup_img_link li .pickup_img_link_text::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 1);
    bottom: -8px;
    transition: 0.8s;
}
.pickup_img_link li a:hover .pickup_img_link_text::after {
    width: 100%;
}
/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  flex-flow: row-reverse;
}
.pickup_item:nth-child(even) .pickup_inner {
  margin: 0;
  padding: 130px 100px 130px 150px;
}
.pickup_item:nth-child(even) .pickup_inner::before {
    position: absolute;
    content: "";
    background: url(../images/front/bg_dairiseki_l.jpg) top left / contain no-repeat;
    width: 100%;
    height: calc(100% + 70px);
    bottom: -70px;
    left: 0;
    right: auto;
    z-index: -1;
    opacity: 0.7;
}
.pickup_item:nth-child(3) .pickup_title .eng {
    font-size: 450%;
}
.pickup_item:nth-child(4) .pickup_title .eng {
    font-size: 360%;
    font-weight: 500;
}
.pickup_item:last-child .pickup_inner::before {
    display: none;
}

@media screen and (max-width: 1600px) {
    .pickup_inner,
    .pickup_item:nth-child(even) .pickup_inner {
        padding: 130px 80px;
    }

@media screen and (max-width: 1450px) {
    .pickup_inner,
    .pickup_item:nth-child(even) .pickup_inner {
        padding: 130px 50px;
    }
.pickup_title .eng {
    font-size: 520%;
}
.pickup_title_inner {
    font-size: 135%;
}
.pickup_item:nth-child(3) .pickup_title .eng,
.pickup_item:nth-child(4) .pickup_title .eng {
    font-size: 340%;
}
}
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.pickup {
    margin: 0;
}
.pickup .inner {
    padding: 0;
}
  .pickup_list {
    width: 100%;
  }
 
  .pickup_item {
    flex-flow: column;
    flex-direction: column-reverse;
    width: 100%;
  }
  .pickup_img {
    width: 100%;
    height: 250px;
    margin: 0 auto 0 0;
  }
  .pickup_inner {
    width: 100%;
    margin: 0;
    padding: 50px 20px;
  }
  .pickup_item:first-child .pickup_inner {
    margin-top: 0;
  }
  .pickup_title_inner {
    font-size: 18px;
    padding-bottom: 0;
  }
  .pickup_inner::before {
    width: 100%;
    height: 100%;
    bottom: 0;
  }
  .pickup_title .eng {
    font-size: 50px;
  }
  .pickup_text {
    margin: 20px 0;
  }
  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }
  .pickup_btn {
    width: 100%;
  }
  .pickup_item:nth-child(3) .pickup_title .eng,
  .pickup_item:nth-child(4) .pickup_title .eng {
    font-size: 40px;
  }
  /* ----- 偶数 ----- */
  .pickup_item:nth-child(even) {
    flex-flow: column;
    flex-direction: column-reverse;
  }
  .pickup_item:nth-child(even) .pickup_img {
    margin: 0 0 0 auto;
  }
  .pickup_item:nth-child(even) .pickup_inner {
    margin: 0;
    padding: 50px 20px;
  }
.pickup_item:nth-child(even) .pickup_inner::before {
    width: 100%;
    height: 100%;
    bottom: 0;
}
/* ----- 画像リンク ----- */
  .pickup_img_link_box {
    width: 100%;
  }
  .pickup_img_link li {
    width: 100%;
    height: 180px;
  }
  .pickup_img_link li a::before {
    height: 100%;
  }
  .pickup_img_link li .pickup_img_link_text {
    bottom: 20px;
  }
  
}
/* ==================================================================================================================================

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

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

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 0;
}
#infinitySlider .splide__track {
    padding: 50px 0 0;
}
#infinitySlider .splide__list {
  gap: 20px;
}
#infinitySlider .splide__slide {
  width: 400px !important;
  height: 450px;
}
#infinitySlider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#infinitySlider .splide__slide:nth-child(even) {
    position: relative;
    top: -50px;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 300px !important;
    height: 325px;
  }
  
}