@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
--------------------- */
/* ==================================================================================================================================

  *基本設定

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

section .inner {
  max-width: 1400px;
  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;
  }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 190%;
  letter-spacing: 0.2em;
  line-height: 1;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--main-color);
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 380%;
  letter-spacing: 0.2em;
  line-height: 1;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0.13em;
    line-height: 1.4;
  }
  .top_title .eng {
    font-size: 35px;
    letter-spacing: 0.15em;
    line-height: 1.1;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

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

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

.mvSlider::before{
  content: '';
  position: absolute;
  background: url(../images/front/mv_wave.png) no-repeat center / 1920px 194px;
  width: 100%;
  height: 194px;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.mvSlider::after{
  content: '';
  position: absolute;
  background: url(../images/front/white_flower05.png) no-repeat bottom left / 328px 338px, url(../images/front/white_flower04.png) no-repeat bottom right / 328px 338px;
  width: 100%;
  height: 328px;
  bottom: 120px;
  left: 0;
  z-index: 1; 
}

/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}
.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}
.mvImg .splide__track {
  width: 100%;
  height: 100%;
}
.mvImg .splide__slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

/* MVのアニメーション  */
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.mvCatch p {
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 220%;
  letter-spacing: 0.1em;
  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, 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;
  filter: drop-shadow(0 0 5px rgb(255, 255, 255, 0.5)) drop-shadow(0 0 5px rgb(255, 255, 255, 0.6)) drop-shadow(0 0 5px rgb(255, 255, 255, 0.8));
  color: var(--title-color);
}

/* ----- コンテンツ ----- */
.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;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 230px;
  padding: 20px 15px 15px;
  background:  url(../images/common/logo_icon_white.png) no-repeat bottom 4px left 50px / 375px 136px, url(../images/front/open_bnr_bg.jpg) no-repeat center / cover;
  border-radius: 30px;
  color: var(--title-pink);
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 0;
}
.open_bnr > *::before{
  content: '';
  position: absolute;
  border: 1px solid rgb(247, 112, 137, 0.6);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  z-index: -1;
}

.open_bnr > *::after{
  content: '';
  position: absolute;
  background: url(../images/front/open_bnr_flower.png) no-repeat center / contain;
  width: calc(200px * 0.55);
  height: calc(201px * 0.55);
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

.open_bnr .date {
  font-size: 120%;
}
.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 190%;
}
.open_bnr .nairankai_tit {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  padding: 3px 40px;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  color: var(--title-pink);
  font-size: 115%;
  text-align: center;
}

/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}
.open_bnr.subcolor > * .nairankai_tit {
  color: var(--sub-color);
}
/* MV左側のバナー */
.mv_bnr {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  bottom: 50px;
  right: 0;
}

.mv_bnr div{
  position: relative;
  z-index: 0;
}

.mv_bnr div::before{
  content: '';
  position: absolute;
  background: url(../images/front/line_flower01.png) no-repeat center /contain;
  width: calc(30px * 0.82);
  height: calc(63px * 0.82);
  bottom: 5px;
  right: 20px;
  transform: scale(-1, 1) rotate(-60deg);
  z-index: 1;
}

.mv_bnr div a{
  width: 180px;
  height: 180px;
  padding: 65px 20px 30px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 110%;
  font-family: var(--jp-font);
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: var(--text-color);
  position: relative;
  z-index: 0;
  transition: 0.3s;  
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 50px;
}

.mv_bnr div a:hover{
  opacity: 0.8;
}

.mv_bnr div a::before {
  position: absolute;
  content: '';
  background: url(../images/front/mv_bnr_icon01.png) no-repeat center / contain;
  width: 50px;
  height: 50px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.mv_bnr div:nth-of-type(2) a::before{
  background: url(../images/front/mv_bnr_icon02.png) no-repeat center / contain;
}

.mv_bnr div:nth-of-type(3) a::before{
  background: url(../images/front/mv_bnr_icon03.png) no-repeat center / contain;
}

.mv_bnr div a::after {
  position: absolute;
  content: '';
  border: 1px solid var(--line-color);
  border-radius: 50%;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.mv_bnr div a .morebtn{
  background: url(../images/front/bg_btn.jpg) no-repeat center / cover;
  color: #fff;
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 60%;
  line-height: 1;
  margin-top: 6px;
}


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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 450px;
  }
  .mvSlider::before{
    /* background: url(../images/front/mv_wave.png) no-repeat left -40px bottom 0 / 750px 75px;
    width: 100%;
    height: 75px; */
    display: none;
  }
  .mvSlider::after{
    background: 
    url(../images/front/white_flower05.png) no-repeat bottom left / calc(328px * 0.3) ,
    url(../images/front/white_flower04.png) no-repeat bottom right  / calc(328px * 0.3) ;
    height: 80px;
    bottom: 0;
  }
  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }
  .mvSlider .sliderBtn#mv_btnPrev {
    left: 10px;
  }
  .mvSlider .sliderBtn#mv_btnNext {
    right: 10px;
  }
  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }
  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 20px;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 20px;
  }
  .open_bnr > *::before{
    border-radius: 18px;
  }
  .open_bnr > *::after{
    width: calc(200px * 0.35);
    height: calc(201px * 0.35);
    bottom: -10px;
    right: -10px;
  }
  /* MV左側のバナー */
  .mv_bnr{
    position: unset;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px 10px;
    width: 100%;
  }

  .mv_bnr div::before{
    bottom: 0;
  }

  .mv_bnr div a{
    width: 150px;
    height: 150px;
    padding: 50px 10px 10px;
    font-size: 100%;
  }

  .mv_bnr div a::before{
    width: 40px;
    height: 40px;
  }

  .mv_bnr div a .morebtn{
    padding: 7px 10px;
  }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }
  .sp_only .inner {
    padding: 0 20px;
  }
  .sp_only_contents {
    margin-bottom: 10px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
}
/* ==================================================================================================================================

  *バナーエリア

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

.top_banner::before{
  content: '';
  position: absolute;
  background: url(../images/front/white_flower03.png) no-repeat center / contain;
  width: calc(150px * 0.8);
  height: calc(496px * 0.8);
  top: 120px;
  right: 3%;
  z-index: -1;
}

.top_banner .inner{
  padding: 20px 40px 30px;
}
/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  flex-direction: column;
  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: 15px;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  border-radius: 15px;
}

.top_banner .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px 13px 0 0;
}

.top_banner .input .banner_slide .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 20px 10px;
}

.top_banner .input .banner_slide .slide_title {
  margin: 0 auto 10px;
  padding: 0 5px 10px;
  border-bottom: 1px solid var(--line-color);
  color: var(--title-pink);
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 120%;
  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;
  border: 1px solid var(--line-color);
  padding: 4px;
  border-radius: 18px;
}

/* スライダーの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(--sub02-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::before{
    width: calc(150px * 0.4);
    height: calc(496px * 0.4);
    top: -80px;
    right: 0;
  }

  .top_banner .inner{
    padding: 10px;
  }

  /* ----- グリッドバナー ----- */
  .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;
  background: url(../images/front/clinic_bg01.jpg) no-repeat top left / calc(594px * 0.9) calc(833px * 0.9), url(../images/front/clinic_bg02.jpg) no-repeat bottom right / 773px 525px;
}

/* ----- お知らせ ----- */
.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: 40px 40px 70px;
}

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

.clinic .news .top_title {
  margin: 0 0 30px;
  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, 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;
  filter: drop-shadow(0 0 5px rgb(255, 255, 255, 0.5)) drop-shadow(0 0 5px rgb(255, 255, 255, 0.8));
}

.clinic .news .top_title .eng{
  font-size: 340%;
  letter-spacing: 0.13em;
}

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

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

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

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

.clinic .info .office_hour .title {
  background: #ffffff;
}

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
  border-radius: 10px 10px 0 0;
}

.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(--sub02-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}

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

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
}

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

.clinic .info address .tel a{
  color: var(--title-color);
}

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--title-color);
}

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px auto 0;
  font-family: var(--jp-font);
  font-weight: 300;
}

.clinic .info .speciality span{
  padding: 2px 30px 4px;
  border-radius: 30px;
  border: solid 1px #b6b2ac;
  background: rgba(255, 255, 255, 0.6);
  color: #8f8c88;
}

.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;
  width: 100%;
  border-radius: 15px;
}

.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 {
    background: 
    url(../images/front/clinic_bg01.jpg) no-repeat top left / calc(594px * 0.35) calc(833px * 0.35), 
    url(../images/front/clinic_bg02.jpg) no-repeat bottom right / calc(773px * 0.35) calc(525px * 0.35);
  }
  
  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .news .top_title .eng{
    font-size: 35px;
    letter-spacing: 0.15em;
    line-height: 1.1;
  }

  .clinic .news .top_title h2{
    font-size: 22px;
    letter-spacing: 0.13em;
    line-height: 1.4;
  }

  .clinic .news .btn01{
    margin-top: 20px;
  }

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

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

  .clinic .info address .location .zipcode{
    display: block;
  }

  .clinic .info .speciality {
    flex-flow: wrap;
    gap: 8px;
  }

  .clinic .info .speciality span{
    padding: 2px 18px 2px;
  }

  .clinic .info .note{
    padding-left: 0;
  }

  .clinic .info .googlemap iframe{
    height: 300px;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
  background: var(--bg-color);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 241, 228, 0.4) 80%, rgba(245, 241, 228, 1) 95%), url(../images/front/bg_suisai01.jpg) no-repeat top center /cover;
}

.greeting::before{
  content: '';
  position: absolute;
  background: url(../images/front/greeting_flower.png) no-repeat center / contain;
  width: 386px;
  height: 744px;
  top: -200px;
  right: 0;
  z-index: -2;
  opacity: 0.7;
}
/* コンテンツとの重なり調整用 */
@media screen and (max-width: 1650px) {
  .greeting::before{
    width: calc(386px * 0.8);
    height: calc(744px * 0.8);
    top: -130px;
  }
}

.greeting::after{
  content: '';
  position: absolute;
  background: url(../images/front/wave.svg) repeat-x top left / 300px 24px;
  width: 100%;
  height: 24px;
  bottom: -1px;
  background: url(../images/front/bg_feature.jpg) no-repeat center / cover;
  -webkit-mask: url(../images/front/wave.svg) repeat-x left top / 300px 24px;
  mask: url(../images/front/wave.svg) repeat-x left top / 300px 24px;
  z-index: -1;
}

.greeting .inner{
  padding-top: 130px;
  padding-bottom: 120px;
}

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

.greeting .top_title{
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.greeting .top_title .eng{
  margin-bottom: 0;
}

.greeting .top_title h2{
  font-size: 170%;
}

.greeting_flex {
	/*--display: flex;
	gap: 50px;*/
	display:block;
}

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

.greeting_left {
  flex-shrink: 0;
  /*width: 65%;*/
	width:100%;
}

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

.greeting_text h3{
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 150%;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 30px!important;
}

.greeting_text p{
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.greeting_right{
  margin-top: 80px;
}

.greeting_img {
  position: relative;
  z-index: 0;
  padding: 10px 10px 0 0;
}

.greeting_img::before{
  content: '';
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 0;
  right: 0;
  border: 1px solid var(--sub-color);
  border-radius: 15px;
  z-index: -1;
}

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

.greeting_profile {
  margin-top: 20px;
  font-family: var(--jp-font);
  font-weight: 300;
  line-height: 1.75;
  text-align: center;
}
.greeting_profile .position {
  margin-bottom: 3px;
  font-size: 120%;
}
.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span.small{
  font-size: 70%;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 241, 228, 0.4) 80%, rgba(245, 241, 228, 1) 95%), url(../images/front/bg_suisai01_sp.jpg) no-repeat top center /cover;
  }

  .greeting::before{
    width: calc(386px * 0.3);
    height: calc(744px * 0.3);
    top: -100px;
  }

  .greeting .inner{
    padding-top: 75px;
    padding-bottom: 100px;
  }

  .greeting .top_title{
    gap: 15px;
  }

  .greeting .top_title .eng{
    font-size: 32px;
  }

  .greeting .top_title h2{
    font-size: 22px;
    letter-spacing: 0.13em;
    line-height: 1.4;
  }
  .greeting_flex {
    flex-flow: column;
    gap: 40px;
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_text h3{
    font-size: 130%;
  }
  .greeting_right{
    margin-top: 0;
  }
  .greeting_img{
    width: 80%;
    margin: 0 auto;
  }
  .greeting_profile .position{
    font-size: 110%;
  }
  .greeting_profile .name{
    font-size: 130%;
  }
  .greeting_btn {
    margin-top: 40px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  background: 
  url(../images/front/feature_flower01.png) no-repeat top 110px right 0 / calc(348px *1) calc(376px * 1),
  url(../images/front/feature_flower02.png) no-repeat top 50% left 0 / calc(432px * 0.8) calc(579px * 0.8),
  url(../images/front/feature_flower03.png) no-repeat top 77% right 0 / calc(371px * 0.9) calc(367px * 0.9),
  url(../images/front/feature_suisai02.png) no-repeat bottom -390px right / 676px 973px, 
  url(../images/front/bg_feature.jpg) no-repeat top left / cover;
}

.feature::before{
  content: '';
  position: absolute;
  background: url(../images/front/greeting_flower02.png) no-repeat center / contain;
  width: calc(166px * 0.9);
  height: calc(346px * 0.9);
  top: -120px;
  left: 0;
  z-index: -1;
}

.feature .inner{
  padding-top: 90px;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  border-radius: 15px;
}

.feature_img{
  position: relative;
  z-index: 0;
  /* padding-bottom: 30px; */
}

.feature_img img{
  border-radius: 15px 15px 0 0;
}

.feature_num {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 0 0 !important;
  color: var(--main-color);
  background: linear-gradient(135deg, #fab8c4 0%, var(--main-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 500%;
  line-height: 1;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 28px 40px;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 15px;
}
.feature_title h3 {
  /* color: var(--main-color); */
  background: url(../images/front/line_flower01.png) no-repeat top 0px left / calc(30px * 0.82) calc(63px * 0.82) , url(../images/front/line_flower02.png) no-repeat bottom 5px right / calc(30px * 0.9) calc(63px * 0.9);
  border-bottom: solid 1px var(--line-color);
  padding: 7px 15px 15px 15px;
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 130%;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: center;
}

.feature_text p{
  line-height: 1.9;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    background: 
    url(../images/front/feature_flower01.png) no-repeat top 110px right 0 / calc(348px * 0.4) calc(376px * 0.4), 
    url(../images/front/feature_flower02.png) no-repeat top 51% left -17px / calc(432px * 0.4) calc(579px * 0.4), 
    url(../images/front/feature_flower03.png) no-repeat top 86% right -44px / calc(371px * 0.4) calc(367px * 0.4), 
    url(../images/front/feature_suisai02.png) no-repeat bottom -80px right / calc(676px * 0.4) calc(973px * 0.4), 
    url(../images/front/bg_feature_sp.jpg) repeat-y top left / contain;
  }

  .feature::before{
    width: calc(166px * 0.5);
    height: calc(346px * 0.5);
    top: -100px;
  }
  .feature .inner{
    padding-top: 70px;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
  }
  .feature_inner{
    padding: 20px 20px 30px;
  }
  .feature_num{
    font-size: 400%;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
  .feature_title h3{
    padding: 7px 5px 15px;
    font-size: 125%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  background: url(../images/front/search_bg.jpg) no-repeat top left / 600px 675px;
  background: url(../images/front/search_bg.jpg) no-repeat top left / 600px 675px, url(../images/front/bg_suisai02.jpg) no-repeat top right / contain;
  z-index: 1;
}

.search::before{
  content: '';
  position: absolute;
  background: url(../images/front/clinic_circle.png) no-repeat center / contain;
  width: 300px;
  height: 300px;
  top: -105px;
  right: -80px;
  z-index: -1;
  animation: rotateAnimation 60s linear infinite;
}
@keyframes rotateAnimation {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.search .inner{
  padding: 120px 0px 0 250px;
}

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

.search .tab_wrapper{
  padding: 50px 50px 150px 50px;
  background: #fff;
  border-radius: 20px 20px 0 0;
}

.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 17px 20px;
  background: #a9a9a9;
  color: #ffffff;
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 140%;
  line-height: 1.5;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
  border-radius: 10px;
}

.search .tab_list li.is-active {
  background: url(../images/front/bg_btn02.jpg) no-repeat center / cover;
  position: relative;
  z-index: 0;
}

.search .tab_list li.is-active::before{
  content: '';
  position: absolute;
  background: var(--main-color);
  width: 20px;
  height: 30px;
  clip-path: polygon(100% 0, 0 0, 50% 50%);
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.search .tab_list li span.small{
  padding-left: 5px;
  font-size: 80%;
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 10px;
}

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

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  height: fit-content;
}

.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 10px 10px 45px;
  border-bottom: 1px solid var(--line-color);
  color: var(--text-color);
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 110%;
  line-height: 1.6;
}

.search_list a:hover{
  border-bottom: solid 1px var(--sub02-color);
  color: var(--title-pink);
}

.search_list a::before{
  content: '';
  position: absolute;
  background-color: #cdb18a;
  mask: url(../images/common/icon_heart.png) no-repeat center / contain;
  -webkit-mask: url(../images/common/icon_heart.png) no-repeat center / contain;
  width: calc(68px * 0.2);
  height: calc(59px * 0.2);
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: -1;
}

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

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

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

.panel_flex .search_list {
  grid-template-columns: repeat(2, 1fr);
  width: calc(50% - 10px);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search {
    background: 
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0) 100%), 
    url(../images/front/search_bg.jpg) no-repeat top left / calc(800px * 0.25) calc(900px * 0.25), 
    url(../images/front/bg_suisai02.jpg) no-repeat top right / contain;
  }

  .search::before{
    width: 120px;
    height: 120px;
    top: -60px;
    right: -20px;
  }

  .search .inner{
    padding: 70px 10px;
  }

  .search .top_title{
    margin-bottom: 20px;
  }

  .search .tab_wrapper{
    padding: 10px;
  }
  .search .tab_list {
    flex-flow: wrap;
    gap: 5px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px 5px !important;
    font-size: 105%;
    letter-spacing: 0.08em;
    transform: translate(0, 0) !important;
  }

  .search .tab_list li span.small{
    padding-left: 0;
    font-size: 70%;
    letter-spacing: 0.05em;
  }

  /* ----- パネル ----- */
  .search .panel {
    padding: 10px;
  }

  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }

  .search_list a{
    padding: 10px 10px 10px 35px;
    font-size: 100%;
  }

  .search_list a::before{
      width: calc(68px * 0.15);
    height: calc(59px * 0.15);
    left: 12px;
  }

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

  .panel_flex .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical{
  position: relative;
  z-index: 0;
  background: 
  url(../images/front/white_flower05.png) no-repeat bottom left  / calc(314px * 1),
  url(../images/front/white_flower04.png) no-repeat bottom right  / calc(314px * 1),
  url(../images/front/bg_medical.jpg) no-repeat center / cover;
  overflow: hidden;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 40px) / 3);
  height: auto;
  padding: 4px;
  border: 1px solid var(--line-color);
  border-radius: 23px;
}
.medical_item:hover {
  transform: translateY(-10px);
}

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

.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 30px 20px 40px;
  background: url(../images/front/open_bnr_bg.jpg) no-repeat center / cover;
  text-align: center;
  border-radius: 20px;
}

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

.medical_icon {
  width: 70%;
  max-width: 140px;
  margin: 0 auto 15px !important;
  padding: 20px;
  background: #fff;
  border-radius: 50%;
}

.medical_title h3 {
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 300;
  font-size: 140%;
}

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

.medical_text {
  color: var(--text-color);
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}
.medical_btn span::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

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


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical{
    background: 
    url(../images/front/white_flower05.png) no-repeat bottom left / calc(314px * 0.3),
    url(../images/front/white_flower04.png) no-repeat bottom right / calc(314px * 0.3) ,
    url(../images/front/bg_medical_sp.jpg) no-repeat center / cover;
  }

  .medical::before{
    background: url(../images/front/white_flower.png) no-repeat center / calc(300px * 0.5) calc(310px * 0.5);
    width: calc(300px * 0.5);
    height: calc(310px * 0.5);
    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: 20px 10px;
  }
  .medical_icon {
    width: 60%;
    padding: 13px;
    margin: 0 auto 8px !important;
  }
  .medical_title h3 {
    font-size: 110%;
  }
  .medical_title_eng{
    margin-top: 3px;
    font-size: 11px;
  }

}
/* ==================================================================================================================================

  *医療コラム（パターン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: 20px 0;
}
#infinitySlider .splide__list {
  gap: 20px;
}
#infinitySlider .splide__slide {
  width: 430px !important;
}
#infinitySlider .splide__slide img{
  border-radius: 13px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider{
    padding: 15px 0;
  }
  #infinitySlider .splide__list {
    gap: 15px;
  }
  #infinitySlider .splide__slide {
    width: 300px !important;
  }
}