@charset "UTF-8";

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

@import url("variables.css");

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

  *基本設定

==================================================================================================================================*/
body{
  background: url(../images/mv_bg.png) no-repeat top 400px center / auto;
}

@media screen and (min-width: 1920px) {
  body{
    background: url(../images/mv_bg.png) no-repeat top 400px center / 100% auto;
  }
}

.front {
  overflow: hidden;
}

section .inner {
  padding: 100px 0;
}

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

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

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

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

/*==============================================
  *SP 基本設定
==============================================*/
@media screen and (max-width: 640px) {
  body{
    background: none;
  }
  section .inner {
    padding: 60px 20px;
  }

  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}


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

  *タイトル

==================================================================================================================================*/
.top_title {
  margin-bottom: 50px;
  padding: 50px 0 0;
  background: url(../images/tit_logo.png) no-repeat top center / 45px;
  line-height: 1.5;
  text-align: center;
}

.top_title h2 {
  padding: 0;
  font-size: 240%;
  font-family: var(--main-font);
  letter-spacing: 0.15em;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-family: var(--main-font);
  font-size: 135%;
}

/* 左寄せ */
.top_title.title_left {
  padding: 0;
  background: none;
  font-family: var(--main-font);
  text-align: start;
}

/*==============================================
  *SP タイトル
==============================================*/
@media screen and (max-width: 640px) {
  .top_title{
    margin-bottom: 35px;
    padding: 40px 0 0;
    background: url(../images/tit_logo.png) no-repeat top center / 35px;
  }

  .top_title h2 {
    font-size: 26px;
  }

  .top_title .eng {
    font-size: 18px;
  }
}

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

  *メインビジュアル

==================================================================================================================================*/
.mainvisual {
  margin-left: 4%;
  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 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:hover span {
  background: var(--text-color);
}

.mvSlider .sliderBtn span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.2s;
}

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

.mvSlider #mv_btnPrev.sliderBtn span::before {
  content: "\f104";
}

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

.mvSlider #mv_btnNext.sliderBtn span::before {
  content: "\f105";
  right: 20px;
}

/* 各スライダーのボタンは非表示に */
.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 hideImg {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@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%);
  text-align: center;
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
}

.mvCatch p {
  font-size: 250%;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
  display: inline-block;
  letter-spacing: .1em;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
}

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

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

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

.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgb(255, 255, 255, 0.4);
  border-radius: 50%;
}

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

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

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

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

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

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

/* バナー */
.mv_info{
  position: absolute;
  left: 0;
  bottom: 50px;
  display: flex;
  gap: 0 15px;
}

.mv_info_box{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 200px;
  height: 200px;
  background: rgb(0 61 121 / 95%) url(../images/mv_bnr_logo.png) no-repeat left 10px top 10px / 250px auto;
  outline: 1px solid rgb(75 118 159);
  outline-offset: -6px;
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  text-align: center;
  color: #fff;
}

.mv_info a:hover{
  opacity: .8;
  color: #fff;
}

.mv_bnr_right{
  position: absolute;
  right: 0;
  bottom: 50px;
}

.bnr_item{
  padding: 5px;
  background: rgb(247 193 186 / 60%);
}

.bnr_item > a,
.bnr_item > p{
  min-width: 250px;
  height: 80px;
  padding: 0 30px 5px;
  font-family: var(--main-font);
  background: linear-gradient(135deg, rgba(239, 134, 115, 1) 0%, rgba(232, 62, 56, 1) 100%);
  color: #ffffff;
  line-height: 1.5;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.bnr_item > a::before,
.bnr_item > p::before{
  content: "\f16d";
  position: relative;
  top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: rgb(255, 255, 255, 15%);
  border-radius: 50%;
  font-family: "Font Awesome 6 Brands";
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
/* ---------- RIBONバナー ---------- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}

/*==============================================
  *SP メインビジュアル
==============================================*/
@media screen and (max-width: 640px) {
  .mainvisual {
    margin-left: 0;
    height: 400px;
  }

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

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

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

  .mvCatch {
    top: auto;
    bottom: 20px;
  }

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
  }

  .mvContents {
    display: none;
  }

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

  .sp_only_contents .mv_info{
    position: static;
    gap: 0 5px;
  }

  .sp_only_contents .mv_info_box{
    width: 48vw;
    height: 48vw;
    font-size: 14px;
  }

  .sp_only_contents .mv_bnr_right{
    margin-top: 5px;
    position: static;
  }

  .open_bnr {
    position: static;
  }

  .open_bnr {
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
}


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

  *バナーエリア

==================================================================================================================================*/
:is(.banner_grid , .banner_slider) .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

/* 画像のみのバナー */
:is(.banner_grid , .banner_slider) .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

:is(.banner_grid , .banner_slider) .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

:is(.banner_grid , .banner_slider) .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}

/* インプットバナー */
:is(.banner_grid , .banner_slider) .input .banner_slide {
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--bg-color);
}

:is(.banner_grid , .banner_slider) .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

:is(.banner_grid , .banner_slider) .input a.banner_slide:hover {
  background: #f5f5f5;
}

:is(.banner_grid , .banner_slider) .input .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

:is(.banner_grid , .banner_slider) .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:is(.banner_grid , .banner_slider) .input .slide_inner {
  width: calc(100%);
  height: 100%;
  padding: 0 0 10px;
}

:is(.banner_grid , .banner_slider) .input .slide_title {
  margin: 0 auto 10px;
  padding: 5px 5px 5px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 110%;
  line-height: 1.5;
}

:is(.banner_grid , .banner_slider) .input .slide_content {
  font-size: 90%;
}

/* ----- グリッドバナー ----- */
/* .banner_grid .inner{
  padding-bottom: 0;
} */

.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.banner_grid ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% / 2) - (20px / 2));
}

/* ----- スライダーバナー ----- */
#bannerSlider .splide {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  padding: 0 20px;
}

/* スライダーのArrowボタン */
#bannerSlider .splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 3px;
  background: rgb(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

#bannerSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}

#bannerSlider .splide__arrow:hover span {
  background: var(--text-color);
}

#bannerSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.2s;
}

#bannerSlider .splide__arrow--prev {
  left: 0;
}

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

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

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

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

/* ----- ページネーション ----- */
#bannerSlider .splide__pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  z-index: 1;
  display: flex;
  gap: 15px;
  transform: translateX(-50%);
}

#bannerSlider .bannerSlider-page {
  width: 12px;
  height: 12px;
  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 {    
    background: url(../images/sp_mv_bg.png) no-repeat top center / cover;
  }

  .banner_grid .inner{
    padding: 60px 20px;
  }

  .banner_grid ul{
    gap: 15px;
  }

  .banner_grid ul li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .splide {
    margin-bottom: 30px;
    padding: 0 15px;
  }

  #bannerSlider .splide__arrow {
    width: 40px;
    height: 40px;
  }

  #bannerSlider .splide__arrow span::before {
    font-size: 16px;
  }

  #bannerSlider .splide__pagination {
    bottom: -30px;
  }
}


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

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

==================================================================================================================================*/
.clinic {
  position: relative;
  z-index: 1;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
  background: var(--bg-color);
}

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

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

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

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

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

/* ----- 医院概要 ----- */
.clinic .info{
  position: relative;
  z-index: 0;
  background: url(../images/bg_dot.jpg) left top repeat;
}

.clinic .info::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 360px;
  content: "";
  z-index: -1;
  margin: auto;
  background: url(../images/bg_info.png) no-repeat center bottom / cover;
  background-position: center bottom;
}

.clinic .info::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: "";
  width: 800px;
  height: 120px;
  clip-path: polygon(0px 0px, 100% 100%, 0px 100%);
  z-index: -1;
  background: var(--main-color);
}

.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 200px 0 100px;
}

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

.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;
  font-family: var(--sub-font);
  font-weight: 500;
  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;
  font-family: var(--sub-font);
  font-weight: 500;
  line-height: 1;
}

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

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

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

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

.clinic .info .office_hour:first-child {
  margin-top: 30px;
}

.clinic .info .list_access {
  margin-top: 5px;
}

.clinic .info .calendar_text {
  margin-top: 20px;
}

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

.clinic .info .googlemap iframe {
  height: 350px;
}

.clinic .info .google_calendar iframe {
/*   height: 450px; */
	height: 550px;
}

@media screen and (max-width: 640px) {
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .news .top_title h2{
    font-size: 26px;
  }

  .clinic .info::before {
    height: 180px;
    background: url(../images/sp_bg_info.png) left -205px center / cover no-repeat;
  }

  .clinic .info::after {
    width: 300px;
    height: 45px;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 100px 20px 60px;
  }

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

  .clinic .info address .location{
    filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff);
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

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



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

  *ご挨拶

==================================================================================================================================*/
.greeting {
  position: relative;
  z-index: 0;
  background: url(../images/bg_dot.jpg) top left repeat;
}

.greeting .inner{
  max-width: 1600px;
  padding: 100px 50px;
}

.greeting .inner .top_title{
  margin-bottom: 100px;
}

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

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

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

.greeting_left {
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  width: calc(60% - 60px);
  font-family: var(--main-font);
  font-size: 17px;
}

.greeting_text h3{
  font-size: 170%;
}

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

.greeting_right{
  margin-top: 50px;
}

.greeting_img {
  width: calc(100% + 20px);
  margin: 0 -20px 0 0;
  padding: 20px 20px 0 0;
  background: #ffffff;
  position: relative;
}

.greeting_img::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 180px;
  display: block;
  width: 50vw;
  height: 80%;
  background: linear-gradient(135deg, rgba(68, 121, 143, 0.1), rgba(68, 121, 143, 0.3)), url(../images/top_doctor_bg01.jpg) no-repeat right top / cover;
  z-index: -1;
}

.greeting_profile {
  margin-top: 25px;
  font-family: var(--main-font);
  text-align: center;
}

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

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

.greeting_btn {
  margin-top: 50px;
}

.greeting_box:nth-child(even) .greeting_flex{
  flex-direction: row-reverse;
}

.greeting_box:nth-child(even) .greeting_flex .greeting_img{
  padding: 20px 0 0 20px;
}
.greeting_box:nth-child(even) .greeting_flex .greeting_img::before{
  left: unset;
  right: 180px;
  background: linear-gradient(135deg, rgba(68, 121, 143, 0.1), rgba(68, 121, 143, 0.3)), url(../images/top_doctor_bg02.jpg) no-repeat left bottom / cover;
}
/*==============================================
  *SP ご挨拶
==============================================*/
@media screen and (max-width: 640px) {
  .greeting .inner{
    padding: 60px 20px;
  }

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

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

  .greeting_left {
    width: 100%;
    font-size: 16px;
  }

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

  .greeting_img{
    width: calc(90% + 10px);
    margin: 0 -10px 0 0;
    padding: 10px 10px 0 0;
  }

  .greeting_img::before{
    top: -100px;
    left: 100px;
    width: 100vw;
  }
  .greeting_profile .position{
    font-size: 100%;
  }

  .greeting_profile .name{
    font-size: 130%;
  }
  .greeting_text h3{
    font-size: 135%;
  }

  .greeting_box:nth-child(even) .greeting_flex{
    flex-flow: column-reverse;
  }

  .greeting_box:nth-child(even) .greeting_flex .greeting_img{
    padding: 10px 0 0 10px;
  }

  .greeting_box:nth-child(even) .greeting_flex .greeting_img::before{
    right: 100px;
    width: 100vw;
  }
}


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

  *診療案内

==================================================================================================================================*/
.medical {
  background: linear-gradient(45deg, rgb(13 59 105 / 85%), rgb(47 103 158 / 85%)), url(../images/medical_bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: clip;
}

.medical::before{
  position: absolute;
  top: -150px;
  left: -150px;
  width: 450px;
  height: 475px;
  content: "";
  background: url(../images/logo_bg.png) no-repeat bottom / contain;
  transform: rotate(160deg);
}

.medical::after{
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 350px;
  height: 400px;
  content: "";
  background: url(../images/logo_bg.png) no-repeat top / contain;
  transform: rotate(340deg);
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title span {
  color: #ffffff;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% / 4) - (30px / 4));
  height: auto;
  overflow: hidden;
}
.medical_item[href="#"] {
	pointer-events: none;
}
.medical_item[href="#"]::after {
	content: "準備中";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	color: #fff;
	font-family: var(--main-font);
    font-size: inherit;
    font-weight: 500;
	font-size: 110%;
	letter-spacing: 0.1em;
}
.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;
  transition: transform 0.4s;
}

.medical_item:hover .medical_img img {
  transform: scale(1.1);
  overflow: hidden;
}

.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 350px;
  padding: 30px 20px 40px;
  background: rgb(32 72 93 / 65%);
  transition: background 0.2s;
  text-align: center;
  text-shadow: 0 0 5px #354b69;
}

.medical_inner::before {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 2;
  display: block;
  width: 50px;
  height: 50px;
  background: rgb(255, 255, 255, 0.2);
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
  transition: background 0.4s, width 0.4s, height 0.4s;
}

.medical_item:hover .medical_inner::before {
  width: 35px;
  height: 35px;
  background: rgb(109 151 175 / 50%);
}

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

.medical_item:hover .medical_inner{
  background: rgb(32 72 93 / 25%);
}

.medical_icon {
  max-width: 100px;
  margin: 0 auto 15px !important;
  padding: 10px;
  background: rgb(255, 255, 255, 0.15);
  border-radius: 50%;
  backdrop-filter: none;
}

.medical_item:hover .medical_icon{  
  background: rgb(109 151 175 / 50%);
}

.medical_title h3 {
  color: #fff;
  font-size: 150%;
  letter-spacing: 0.1em;
}

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

.medical_text {
  color: #fff;
}

.medical_btn span {
  display: none;
  /* position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  border: 1px solid #ffffff;
  font-family: var(--main-font);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s; */
}

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

/* 最後の */
.medical_item:last-child {
  width: 100%;
  min-height: auto;
}

.medical_item:last-child .medical_inner {
  padding: 15px 20px 30px;
}

.medical_item:last-child .medical_icon {
  width: 30%;
}

.medical_item:last-child .medical_title h3 {
  font-size: 180%;
}


/*==============================================
  *SP 診療案内
==============================================*/
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(45deg, rgb(13 59 105 / 85%), rgb(47 103 158 / 85%)), url(../images/sp_medical_bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .medical::before{
    top: -75px;
    left: -75px;
    width: 225px;
    height: 237px;
  }

  .medical::after{
    bottom: -75px;
    right: -50px;
    width: 175px;
    height: 200px;
  }

  .medical_list {
    gap: 10px;
  }

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

  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }

  .medical_inner::before{
    width: 20px;
    height: 20px;
  }

  .medical_icon {
    margin: 0 auto 10px !important;
    width: 50%;
  }

  .medical_title h3 {
    font-size: 110%;
  }

  .medical_text{
    font-size: 14px;
  }

  /* 最後の */
  .medical_item:last-child .medical_inner{
    padding: 30px 10px;
  }

  .medical_item:last-child .medical_title h3{
    font-size: 110%;
  }
}

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

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

==================================================================================================================================*/
.pickup{
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

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

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

.pickup_item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}

.pickup_img {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 40%;
}

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

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 60%;
  padding: 50px 0 0 100px;
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 15px;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 200%;
}

.pickup_title span {
  color: var(--main-color);
  font-family: var(--main-font);
}

.pickup_text {
  margin: 30px 0;
}

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

.pickup_link .pickup_btn {
  width: calc((100% / 2) - (10px / 2));
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  display: block;
  padding: 9px 45px 11px 45px;
  width: 100%;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 100%;
  font-family: var(--main-font);
  letter-spacing: 0.15em;
  line-height: 1.75;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  overflow: hidden;
}

.pickup_link .pickup_btn a:hover {
  filter: brightness(1.2);
}

.pickup_link .pickup_btn a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
  content: "";
}

.pickup_link .pickup_btn a:hover::before {
  right: -10px;
}

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

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

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
  .pickup{
    padding: 0;
  }

  .pickup .inner{
    padding: 60px 20px;
  }

  .pickup_list {
    width: calc(100%);
    gap: 60px;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: 160%;
  }

  .pickup_item {
    flex-flow: column;
    width: 100%;
  }

  .pickup_img {
    width: 100%;
    margin: 0 auto 0 0;
  }

  .pickup_inner {
    width: 100%;
    padding: 30px 0 0;
  }

  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }

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

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

}


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

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

==================================================================================================================================*/
.feature {
  background: url(../images/top_feature_bg.png) var(--bg-color) no-repeat center / cover;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc((100% / 3) - (60px / 3));
  height: auto;
  box-shadow: rgb(235, 235, 235) 0 0 7px;
}

.feature_img{
  position: relative;
}

.feature_num {
  margin: 0 0 0 !important;
  padding-left: 240px;
  width: 100%;
  font-size: 120%;
  font-family: var(--sub-font);
  color: var(--sub-color);
  line-height: 1;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  position: absolute;
  bottom: 10px;
}

.feature_num::before{
  position: absolute;
  left: 0;
  top: 68%;
  content: "";
  background: var(--sub-color);
  width: 60%;
  height: 1px;
  box-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

.feature_num span {
  font-weight: 600;
  font-size: 150%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 20px 30px;
  background: #ffffff;
}

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

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 15px !important;
}

.feature_title h3 {
  color: var(--main-color);
  font-size: 135%;
  line-height: 1.75;
  text-align: center;
}

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

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

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

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

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

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

  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_num{
    padding-left: 60%;
    font-size: 100%;
  }

  .feature_num::before{
    width: 58%;
  }

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

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

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

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

  *病状、症状から探す

==================================================================================================================================*/
.search {
  position: relative;
}

.search .tab_list {
  gap: 10px;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: var(--main-color);
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: fit-content;
}

.search_list li {
  width: calc((100% / 3) - (40px / 3));
  height: auto;
}

/* リンク */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 30px;
  background: var(--bg-color);
  color: var(--text-color);
}

/* 矢印 */
.search_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  z-index: 2;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / 14px 7px;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / 14px 7px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.search_list li a:hover::before {
  background: var(--main-color);
}

/* 矢印の背景 */
.search_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.search_list li a:hover::after {
  background: #ffffff;
}

/* ----- 画像あり ----- */
.search .panel_flex.active {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.search_img {
  width: calc(50% - 10px);
  margin: 0!important;
}

.panel_flex .search_list {
  width: calc(50% - 10px);
}

.panel_flex .search_list li {
  width: calc(50% - 10px);
}

/*==============================================
  *SP 病状、症状から探す
==============================================*/
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

  .search .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: calc(100%);
  }

  .search_list li a {
    min-height: auto;
    padding: 10px 40px;
  }

  .search .panel {
    padding: 20px;
  }

  /* ----- 画像あり ----- */
  .search .panel_flex.active {
    gap: 20px;
  }

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

  .panel_flex .search_list li {
    width: 100%;
  }
}


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

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

==================================================================================================================================*/
#columnSlider {
  background: url(../images/top_feature_bg.png) no-repeat center / cover;
  position: relative;
  z-index: 0;
}

#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 h2{
  font-size: 200%;
}
#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 {
  filter: brightness(1.2);
}

#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%;
}

#columnSlider .column_item_thum {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin: 0 0 15px;
  overflow: hidden;
  box-shadow: rgb(235, 235, 235) 0 0 7px;
}

#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;
  font-family: var(--main-font);
  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-size: 90%;
  font-family: var(--main-font);
  text-align: center;
}

#columnSlider .column_title {
  color: var(--text-color);
  font-size: 105%;
  font-family: var(--main-font);
  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 h2{
    font-size: 26px;
  }

  #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;
  }
}

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

  *無限スライダー

==================================================================================================================================*/
#infinitySlider {
  margin: 15px 0;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

/*==============================================
  *SP 無限スライダー
==============================================*/
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}