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

  *基本設定

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

section .inner {
  padding: 100px 40px;
}

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

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

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

/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 160%;
  letter-spacing: 0.1em;
}
.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 720%;
  letter-spacing: 0.1em;
  line-height: 1.3;
  background: linear-gradient(var(--sub-color) 0% 60%, var(--main-color) 40% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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#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: 100%;
  height: 100%;
}
.mvImg .splide__track {
  width: 100%;
  height: 100%;
}
.mvImg .splide__slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + 50px);
  pointer-events: none;
}

/* アニメーションを実行 */
.fade.move .mvImg .splide__slide img {
  animation: hideTranslate 8s ease-out forwards;
}

.fade.move .mvImg .splide__slide.is-active img {
  animation: showTranslate 8s ease-out forwards;
}

/* MVのアニメーション  */
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
.mvCatch p {
  color: var(--title-color);
  font-family: var(--jp02-font);
  font-weight: 500;
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

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

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 5px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  border-radius: 50%;
  background: url(../images/common/bg_texture.png) repeat top 0 left 0, var(--bg-color);
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 400;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 0;
}

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

/* ----- MV左側（小さめ3つ）のバナー ----- */
.mv_bnr {
  position: absolute;
  bottom: 70px;
  left: 350px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mv_bnr div a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 212px;
  height: 212px;
  border-radius: 50%;
  background: rgb(255, 255, 255, 0.95);

  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 120%;
  line-height: 1.6;
  padding: 20px;
  position: relative;
  z-index: 0;
  transition: 0.3s;
  overflow: hidden;
}

.mv_bnr a:hover{
  opacity: 0.8;
  transform: translateY(-10px);
}

.mv_bnr a::before {
  position: absolute;
  content: '';
  background: url(../images/common/logo_mark.svg) no-repeat center / contain;
  width: calc(131px * 0.8);
  height: calc(150px * 0.8);
  bottom: -12px;
  right: 0px;
  z-index: -1;
  opacity: 0.25;
}

.mv_bnr div a .viewmore{
  display: block;
  margin-top: 7px;
  padding: 3px 13px;
  background: var(--sub-color);
  color: #fff;
  font-size: 68%;
  border-radius: 30px;
}


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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 450px;
  }
  /* ----- スライダーの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;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch .inner{
    padding: 0 20px;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
	  text-shadow: 
  rgb(255, 255, 255) 0px 0px 3px, 
  rgb(255, 255, 255) 0px 0px 3px, 
  rgb(255, 255, 255) 0px 0px 3px;
  }
  /* ----- コンテンツ ----- */
  .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;
  }
  /* ----- MV左側（小さめ3つ）のバナー ----- */
  .mv_bnr{
    position: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .mv_bnr div{
    width: calc((100% - 15px) / 2);
  }

  .mv_bnr div a{
    background: var(--bg-gray);
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 30px 20px;
    font-size: 90%;
  }
  /* ----- スマホ専用エリア ----- */
  .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: 20px;
    width: 100%;
  }
}
/* ==================================================================================================================================

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner .inner{
  padding: 80px 40px 60px;
}

.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: 10px;
  background: url(../images/common/bg02_small.jpg) no-repeat center / cover;
  border: 1px solid var(--main-color);
}
.top_banner .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: calc(35% - 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(--title-color);
  font-family: var(--jp02-font);
  font-weight: 500;
  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) {
  .top_banner .inner{
    padding: 70px 10px 35px;
  }
  .top_banner .input .banner_slide .slide_content{
    line-height: 1.75;
  }
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  /* ----- スライダーバナー ----- */
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }
  /* スライダーのArrowボタン */
  #bannerSlider .bannerSlider_arrow {
    width: 40px;
    height: 40px;
  }
  #bannerSlider .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }
  /* ページネーション */
  #bannerSlider .bannerSlider_pagination {
    gap: 12px;
    margin: 20px auto 0;
  }
  #bannerSlider .bannerSlider_page {
    width: 8px;
    height: 8px;
  }
}

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

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

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

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 70px 40px 70px;
}

.clinic .news .news_left {
  flex-shrink: 0;
}
.clinic .news .top_title {
  margin: 0 0 30px;
}
.clinic .news .top_title .eng{
  font-size: 430%;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 5px;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 0 0 100px;
}
.clinic .info .inner > * {
  width: calc(50% - 20px);
}
.clinic .info .office_hour .title {
  background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
}
.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-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: #ffffff;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}
.clinic .info .googlemap iframe {
  height: 350px;
}
.clinic .info .list_access {
  margin-top: 5px;
}
.clinic .info .calendar_text {
  margin-top: 20px;
}
.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic{
    padding-bottom: 0;
  }
  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
  .clinic .news .top_title .eng{
    font-size: 43px;
  }
  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
  }
  .clinic .info .inner > * {
    width: 100%;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .news .btn01{
    width: 100%;
  }
  .clinic .news .btn01 a{
    width: 90%;
  }
}

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

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

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

.pickup::before{
  position: absolute;
  content: '';
  background: url(../images/common/bg01.jpg) no-repeat center / cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.pickup .inner {
  width: 100%;
}

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

.pickup_item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 40px 0;
  position: relative;
  z-index: 0;
}

.pickup_item::before{
  position: absolute;
  content: '';
  background: url(../images/common/bg_texture.png) repeat top 0 left 0, var(--bg-color);
  width: 1500px;
  height: 100%;
  top: 0;
  right: -400px;
  z-index: -2;
}

.pickup_img {
  position: relative;
  z-index: 1;
  height: 440px;
  width: 50%;
}

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

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 70px 50px;
  position: relative;
  z-index: 0;
}

.pickup_inner .eng {
  position: absolute;
  bottom: 0;
  left: 50px;
  color: #fff;
  font-family: var(--jp02-font);
  font-weight: 500;
  font-size: 570%;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.5;
  white-space: nowrap
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 30px auto 15px;
  width: 100%;
  text-align: left;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 180%;
  letter-spacing: 0.1em;
  color: var(--title-color);
}

.pickup_text {
  margin: 30px 0;
}

.pickup_buttons {
  width: 100%;
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  padding-top: 20px;
}

.pickup_btn {
  width: calc(50% - 5px);
}
.pickup_btn a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 13px 20px;
  background: #fff;
  border-radius: 30px;
  color: var(--text-color);
  font-family: var(--jp02-font);
  font-weight: 500;
  font-size: 98%;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.pickup_btn a:hover {
  background: var(--sub-color);
  color: #fff;
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  flex-flow: row-reverse;
}

.pickup_item:nth-child(even)::before{
  right: unset;
  left: -400px;
}

.pickup_item:nth-child(even) .pickup_inner {
  padding: 50px 50px 70px 0px;
}

.pickup_item:nth-child(even) .pickup_inner .eng{
  right: unset;
  left: 0;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup::before{
    background: url(../images/common/bg01_small.jpg) no-repeat center / cover;
    background-attachment: fixed;
  }
  .pickup_item::before{
    width: 100%;
    right: 0;
  }
  .pickup_list {
    width: 100%;
  }
  .pickup_title{
    margin: 0px auto 10px;
  }
  .pickup_title h2, .pickup_title h3 {
    font-size: 140%;
  }
  .pickup_item {
    flex-flow: column;
    width: 100%;
    padding: 20px;
  }
  .pickup_img {
    width: 100%;
    height: fit-content;
    margin: 0 auto;
  }
  .pickup_inner {
    width: 100%;
    height: fit-content;
    padding: 0;
    margin-top: 20px;
  }
  .pickup_inner .eng{
    left: -20px;
    bottom: -20px;
    font-size: 11vw;
  }
  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }
  .pickup_buttons{
    padding-top: 0;
  }
  .pickup_btn {
    width: 100%;
  }
  /* ----- 偶数 ----- */
  .pickup_item:nth-child(even) {
    flex-flow: column;
  }
  .pickup_item:nth-child(even)::before{
    left: 0;
  }
  .pickup_item:nth-child(even) .pickup_img {
    margin: 0 0 0 auto;
  }
  .pickup_item:nth-child(even) .pickup_inner {
    padding: 0;
  }
  .pickup_item:nth-child(even) .pickup_inner .eng{
    left: -20px;
    bottom: -20px;
  }
}

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

  *ご挨拶（パターン01）

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

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

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

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

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

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

.greeting_profile {
  padding: 20px;
  background: var(--main-color);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
}
.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_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_btn {
    margin-top: 40px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  z-index: 0;
  padding-top: 200px;
}

.medical::before{
  position: absolute;
  content: '';
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../images/front/medical_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 580px;
  top: 0;
  left: 0;
  z-index: -2;
}

.medical::after{
  position: absolute;
  content: '';
  background: url(../images/common/bg_texture.png) repeat top 0 left 0, var(--bg-color);
  width: calc(100% - 80px);
  height: calc(100% - 300px);
  right: 0;
  bottom: 0;
  z-index: -1;
}

.medical .top_title {
  color: #ffffff;
  position: relative;
  top: -80px;
  margin-bottom: -30px;
}

.medical .top_title span {
  color: var(--main-color);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 80px) / 5);
  height: auto;
}
.medical_item:hover {
  transform: translateY(-10px);
}

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

.medical_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.03) -4px 9px 25px -6px;
}

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

.medical_icon {
  width: 70%;
  max-width: 120px;
  margin: 0 auto 15px !important;
  background: var(--bg-color);
  padding: 20px;
  border-radius: 50%;
}

.medical_title{
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-color);
}

.medical_title h3 {
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 120%;
  letter-spacing: 0.1em;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.medical_text {
  width: 100%;
  color: var(--text-color);
  padding: 0 15px 0 15px;
}

.medical_text .list03{
  gap: 0px;
}

.medical_text .list03 li{
  text-align: left;
  padding: 0 0 0 22px;
}

.medical_text .list03 li::before{
  background: url(../images/front/check.svg) no-repeat center / contain;
  width: 15px;
  height: 15px;
  top: 7px;
  left: 0;
  border-radius: 0;
}

.medical_btn{
  margin-top: auto;
  width: 100%;
}

.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;
  font-family: var(--jp-font);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
  width: 100%;
}
.medical_btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  -webkit-mask: url(../images/common/btn_arrow.png) no-repeat center / cover;
  mask: url(../images/common//btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.medical_item:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

.medical_item:hover .medical_btn span::after{
  background: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical{
    padding-top: 0px;
  }
  .medical::before{
    height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../images/front/medical_bg_sp.jpg) no-repeat center/cover;
  }
  .medical::after{
    width: calc(100% - 60px);
    height: calc(100% - 100px);
  }
  .medical .top_title{
    top: 0;
    margin-bottom: 30px;
  }
  .medical_list {
    gap: 15px 10px;
  }
  .medical_item {
    width: calc(50% - 5px);
  }
  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    min-height: auto;
    padding: 15px 10px;
  }
  .medical_icon {
    width: 55%;
    padding: 12px;
    margin: 0 auto 10px !important;
  }
  .medical_title{
    padding-bottom: 10px;
  }
  .medical_title h3 {
    font-size: 110%;
  }
  .medical_text{
    padding: 0 5px;
  }
  .medical_btn span::after{
    right: 9px;
  }

}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 0;
}

.feature::before{
  position: absolute;
  content: '';
  background: var(--bg-color);
  width: calc(100% - 40px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature .inner{
  padding: 100px 40px;
  max-width: 1600px
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 90px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature_item {
  display: flex;
  width: 100%;
  height: auto;
}

.feature_img {
  flex-shrink: 0;
  width: 50%;
  height: 420px;
  position: relative;
  z-index: 0;
  padding: 18px 0 0 18px;
}

.feature_img::before{
  position: absolute;
  content: '';
  background: url(../images/common/bg_texture.png) repeat top 0 left 0, var(--sub-color);
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  z-index: -1;
}

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

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: 50%;
  height: 100%;
  min-height: 400px;
  padding: 50px 25px 50px 50px;
}
.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 30px;
  padding: 30px 0 15px;
  position: relative;
  z-index: 0;
}
.feature_title::before{
  position: absolute;
  content: '';
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid var(--main-color);
  z-index: 0;
}
.feature_title h3 {
  color: var(--title-color);
  font-family: var(--jp02-font);
  font-weight: 500;
  font-size: 170%;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.feature_num {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  z-index: -1;
  font-family: var(--jp02-font);
  font-weight: 500;
  font-size: 680%;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--main-color);
  opacity: 0.2;
}

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

.feature_button .btn01 {
  text-align: center;
  width: 100%;
}

.feature_button .btn01 a{
  width: 50%;
  border: none;
}

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

.feature_button .btn01 a:hover::after{
  background: #fff;
}

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

.feature_item:nth-child(even) .feature_inner {
  padding: 50px 50px 50px 25px;
}

.feature_item:nth-child(even) .feature_img{
  padding: 0 18px 18px 0;
}

.feature_item:nth-child(even) .feature_img::before{
  left: unset;
  right: 0;
  top: unset;
  bottom: 0;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
  }
  .feature::before{
    width: calc(100% - 20px);
    height: 100%;
  }
  .feature .inner{
    padding: 70px 20px;
  }
  .feature_list {
    gap: 50px;
  }
  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
  }
  .feature_img {
    width: 100%;
    height: fit-content;
    margin: 0 0 15px;
    padding: 15px 15px 0 15px;
  }
  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 0;
  }
  .feature_num{
    font-size: 480%;
  }
  .feature_title {
    min-height: 70px;
    justify-content: end;
    margin-bottom: 15px;
    padding: 0 0 15px;
  }
  .feature_title h3{
    font-size: 125%;
  }
  .feature_button{
    padding-top: 30px;
  }
  .feature_button .btn01{
    width: 100%;
    text-align: left;
  }
  .feature_button .btn01 a{
    width: calc(100% - 15px);
  }
  /* ----- 左右 ----- */
  .feature_item:nth-child(even) {
    flex-flow: column;
  }
  .feature_item:nth-child(even) .feature_inner {
    margin: 0 auto;
    padding: 0;
  }
  .feature_item:nth-child(even) .feature_img {
    padding: 15px 15px 0 0;
    margin-bottom: 15px;
  }

  .feature_item:nth-child(even) .feature_img::before{
    right: 0;
    top: 0;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  z-index: 0;
}

.search::before{
  position: absolute;
  content: '';
  background: url(../images/common/bg01.jpg) no-repeat center / cover;
  width: calc(100% - 80px);
  height: 50%;
  top: 180px;
  left: 0;
  z-index: -1;
}

.search .inner{
  padding-top: 100px;
}
.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background: #a9a9a9;
  color: #ffffff;
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}
.search .tab_list li.is-active {
  background: var(--main-color);
  position: relative;
  z-index: 0;
}
.search .tab_list li.is-active::before{
  position: absolute;
  content: '';
  background: var(--main-color);
  width: 20px;
  height: 20px;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  clip-path: polygon(0 30%, 50% 100%, 100% 30%);
}
.search .tab_list li.is-active span{
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  text-align: center;
  overflow: hidden;
}
.search .tab_list li.is-active span::before{
  position: absolute;
  content: '';
  background: url(../images/common/logo_mark_white.svg) no-repeat center / contain;
  width: calc(131px * 0.65);
  height: calc(150px * 0.65);
  bottom: -21px;
  right: 8px;
  z-index: 0;
  opacity: 0.25;
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 40px;
  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: 10px 30px;
  background: #ffffff;
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 105%;
  letter-spacing: 0.08em;
}
.search_list a:hover{
  background: var(--sub-color);
  color: #fff;
}

/* ----- 画像あり ----- */
.panel_flex.is-active {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.panel_flex .search_img {
  width: 100%;
  margin: 0 !important;
  text-align: center;
}
.panel_flex .search_list {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search::before{
    background: url(../images/common/bg01_small.jpg) no-repeat center / cover;
    top: 100px;
  }
  .search .inner{
    padding-top: 70px;
  }
  .search .tab_list {
    flex-flow: wrap;
    gap: 7px;
    margin: 0 0 15px;
  }
  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    font-size: 110%;
    transform: translate(0, 0) !important;
  }
  .search .tab_list li.is-active span{
    padding: 10px;
  }
  .search .tab_list li.is-active span::before{
    width: calc(131px * 0.3);
    height: calc(150px * 0.3);
    bottom: -8px;
    right: 4px;

  }
  /* ----- パネル ----- */
  .search .panel {
    padding: 15px;
  }
  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .search_list a{
    min-height: 50px;
    padding: 7px 10px;
    font-size: 100%;
  }
  /* ----- 画像あり ----- */
  .panel_flex.is-active {
    gap: 10px;
  }
  .panel_flex .search_img {
    width: 100%;
  }
  .panel_flex .search_list {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
/*==================================================================================================================================

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

==================================================================================================================================*/
#columnSlider .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 130px;
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 100px 50px;
}

#columnSlider .top_title {
  flex-shrink: 0;
}

#columnSlider .top_title .eng{
  font-size: 450%;
}

#columnSlider .top_title h2::before, #columnSlider .top_title h2::after {
  display: none;
}

/* ----- コラムスライダー設定 ----- */
#columnSlider .splide {
  width: 100%;
  padding-top: 75px;
  overflow: hidden;
}

#columnSlider .splide__list {
  align-items: flex-start;
  width: 100%;
}

/* スライダーのArrowボタン */
#columnSlider .splide__arrow {
  position: absolute;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 45px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition: background 0.2s , color 0.2s;
}

#columnSlider .splide__arrow:hover {
  background: #ffffff;
  color: var(--main-color);
}

#columnSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background 0.2s;
}

#columnSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
}

#columnSlider .splide__arrow--prev {
  right: 70px;
}

#columnSlider .splide__arrow--prev span::before {
  content: "\f104";
}

#columnSlider .splide__arrow--next {
  right: 0;
}

#columnSlider .splide__arrow--next span::before {
  content: "\f105";
}

#columnSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

/* ----- ページネーション ----- */
#columnSlider .splide__pagination {
  position: absolute;
  top: 17px;
  right: 190px;
  z-index: 1;
  display: flex;
  gap: 15px;
}

#columnSlider .columnSlider-page {
  width: 10px;
  height: 10px;
  background-color: #e8e8e8;
  border-radius: 50%;
  transition: background 0.2s;
}

#columnSlider .columnSlider-page.is-active {
  background: var(--main-color);
}

/* ----- コラム個別 ----- */
#columnSlider .column_item a {
  width: 100%;
  background: url(../images/common/bg_texture.png) repeat top 0 left 0, var(--bg-color);
  padding: 20px;
}

#columnSlider .column_item_thum {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin: 0 0 15px;
  overflow: hidden;
}

#columnSlider .column_item_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;

  aspect-ratio: 13 / 9;
}

#columnSlider .column_item a:hover .column_item_thum img {
  transform: scale(1.1);
}

#columnSlider .column_item:first-child .column_item_thum::before {
  content: "New";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-self: center;
  width: 90px;
  height: 90px;
  padding: 10px 35px 0 0;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.075em;
  opacity: 0.9;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

#columnSlider .column_info {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin: 0 0 15px;
  color: #747474;
  font-size: 90%;
}

#columnSlider .column_date {
  flex-shrink: 0;
}

#columnSlider .column_info ul {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}

#columnSlider .column_info ul li {
  min-width: 80px;
  padding: 2px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 90%;
  letter-spacing: 0.1em;
  text-align: center;
}

#columnSlider .column_title {
  color: var(--title-color);
  font-family: var(--jp02-font);
  font-weight: 500;
  font-size: 105%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

#columnSlider .column_item a:hover .column_title {
  color: var(--main-color);
}

/*==============================================
  *SP　医療コラム
==============================================*/
@media screen and (max-width: 640px) {
  #columnSlider .inner {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 70px 20px;
  }

  #columnSlider .top_title {
    margin: 0 auto 50px;
  }

  #columnSlider .top_title .eng{
    font-size: 43px;
  }

  #columnSlider .splide {
    margin-right: -40px;
  }

  #columnSlider .splide__arrow {
    width: 50px;
    height: 40px;
  }

  #columnSlider .splide__arrow--next {
    right: 20px;
  }

  #columnSlider .splide__arrow--prev {
    right: 80px;
  }

  #columnSlider .splide__pagination {
    top: 13px;
    right: auto;
    left: 0;
    justify-content: flex-end;
    gap: 13px;
    transform: translate(0);
  }

  #columnSlider .columnSlider-page {
    width: 8px;
    height: 8px;
  }

  #columnSlider .splide__slide:first-child .column_item_thum::before {
    width: 80px;
    height: 80px;
    padding: 13px 25px 0 0;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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;
  }
}