@charset "UTF-8";

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

  *基本設定

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

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

.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: 80px;
  padding: 10px 50px 0;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title .eng {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #1cb8ce 0%, #1cb8ce 75%, #008cbb 75%, #008cbb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: transparent;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.15em;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.top_title .eng::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -50px;
  display: block;
  width: 20px;
  height: 20px;
  background: var(--main-color);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

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

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

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

  .top_title .eng::before {
    top: -5px;
    left: -20px;
    width: 12px;
    height: 12px;
  }

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

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 950px;
  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 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mvImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28, 184, 206, 0.2), rgba(0, 140, 187, 0.1));
  opacity: 1;
}

.mvImg::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 1;
}

.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%;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.mvCatch p {
  color: #ffffff;
  font-size: 200%;
  letter-spacing: 0.2em;
  text-align: center;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

/* ----- コンテンツ ----- */
.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: 80px;
  z-index: 1;
  display: inline-block;
  padding: 3px;
}

.open_bnr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--sub-color);
  opacity: 1;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.open_bnr::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--sub-color);
  opacity: 1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.open_bnr > * {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 170px;
  padding: 10px 15px 15px;
  background: rgba(0, 121, 162, 0.7);
  border: 2px solid rgb(255, 255, 255);
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 130%;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
}

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

.open_bnr .open_text {
  /* margin: 0 0 20px; */
  font-size: 180%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 15px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 90%;
  text-align: center;
}

.open_bnr .nairankai_date {
  letter-spacing: 0.1em;
}

.open_bnr .nairankai_time {
  margin-top: 5px;
}

.banner-wrapper {
  position: absolute;
  right: 0;
  bottom: 80px;
  display: flex;
  gap: 10px;
}

.banner-item a{
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  width: 150px;
  height: 150px;
  padding: 30px 15px 15px;
  background: rgba(24, 170, 189, 0.7);
  border: 2px solid rgb(255, 255, 255);
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 105%;
  line-height: 1.5;
  letter-spacing: 0.125em;
  text-align: center;
}

.banner-item a:hover{
  opacity: 0.7;
}

.banner-item a i {
  position: relative;
  left: 2px;
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

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

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

  /* ----- スライダーの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: 30px;
    display: none;
    transform: translate(0);
  }

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

  .mvCatch p {
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.075em;
    text-align: start;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
  }

  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    transform: translate(0);
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 15px 17px;
    border: 2px solid #e3edf1;
    border-radius: 0;
    font-size: 100%;
  }

  /* .open_bnr .open_text {
    margin-bottom: 15px;
  } */

  .banner-wrapper {
    position: static;
    flex-flow: wrap;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    max-width: 390px;
    padding: 0 3px;
  }
	
  .banner-item {
	width: calc(50% - 3px);
	aspect-ratio: 1;
   }

  .banner-item a {
    justify-content: center;
	width: 100%;
    height: 100%;
    padding: 20px 15px 25px;
    border: 2px solid #dae7e9;
    font-size: 100%;

  }

  .banner-item a i {
    font-size: 18px;
  }

  /* ----- スマホ専用エリア ----- */
  .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: 15px;
    width: 100%;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

.top_banner .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}

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

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

.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.top_banner .input .banner_slide .slide_content {
  font-size: 90%;
}

.top_banner .input a.banner_slide:hover {
  opacity: 0.6;
}

/* ----- グリッドバナー ----- */
.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 13.3333333333px);
}

/* ----- スライダーバナー ----- */
#bannerSlider .splide {
  position: relative;
  z-index: 1;
}

#bannerSlider .splide__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* スライドの設定  */
#bannerSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

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

#bannerSlider .bannerSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  background: var(--main-color);
  border-radius: 50%;
  font-size: 80%;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--sub-color);
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
  z-index: 1;
  display: flex;
  gap: 15px;
  margin: 30px auto 0;
}

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

#bannerSlider .bannerSlider_page.is-active {
  background: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }

  /* スライダーのArrowボタン */
  #bannerSlider .bannerSlider_arrow {
    width: 40px;
    height: 40px;
  }

  #bannerSlider .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }

  /* ページネーション */
  #bannerSlider .bannerSlider_pagination {
    gap: 12px;
    margin: 20px auto 0;
  }

  #bannerSlider .bannerSlider_page {
    width: 8px;
    height: 8px;
  }
}

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

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

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

.clinic::after {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 100px);
  min-width: 1250px;
  height: 650px;
  background: linear-gradient(135deg, rgba(28, 184, 206, 0.1), rgba(0, 140, 187, 0.1)), url(../images/common/top-reception.jpg) no-repeat center/cover;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}

.clinic .news::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc((100% - 1200px) / 2 - 200px);
  min-width: 100px;
  height: 100%;
  background: rgba(227, 223, 210, 0.3);
}

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

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

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

.clinic .news .top_title .eng {
  padding: 0;
  font-size: 80px;
}

.clinic .news .top_title .eng::before {
  display: none;
}

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

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  z-index: 1;
}

.clinic .info::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -500px;
  z-index: -1;
  display: block;
  width: calc(50% - 300px);
  height: calc(80% + 500px);
  background: #cbf9ff;
  opacity: 0.3;
}

.clinic .info .inner {
  display: flex;
  gap: 60px;
  padding: 0 50px 150px;
}

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

.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: 50px;
}

.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.clinic .info address .location {
  padding: 10px 0 10px 70px;
}

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

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

.clinic .info address .tel {
  margin-top: 20px;
  padding: 7px 0 13px 70px;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.12em;
}

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

.clinic .info address .fax {
  margin-top: 20px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
}

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

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

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 15px 30px;
  background: var(--main-color);
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.clinic .info .office_hour {
  margin-top: 25px;
}

.clinic .info .googlemap iframe {
  width: 100%;
  height: 380px;
}

.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::after {
    width: 100%;
    min-width: auto;
    height: 300px;
  }

  /* ----- お知らせ ----- */
  .clinic .news::after{
	top: 50px;
	width: 50px;
	min-width: auto;
   }
	
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .news .top_title {
    margin-bottom: 40px;
    padding: 0;
  }

  .clinic .news .top_title .eng {
    margin-bottom: 5px;
    font-size: 50px;
  }

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

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

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

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

  .clinic .info address > * {
    min-height: 40px;
  }

  .clinic .info address > *::before {
    width: 40px;
    height: 40px;
    padding: 0 0 2px 0;
  }

  .clinic .info address .location {
    padding: 0 0 0 55px;
    line-height: 1.6;
  }

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

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

  .clinic .info address .tel {
    margin-top: 15px;
    padding: 6px 0 14px 55px;
    font-size: 30px;
  }

  .clinic .info address .fax {
    margin-top: 15px;
    padding: 6px 0 14px 55px;
    font-size: 30px;
  }

  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 10px 12px;
  }

  .clinic .info .speciality .title {
    width: 100%;
    padding: 8px 10px;
  }

  .clinic .info .office_hour {
    margin-top: 25px;
  }

  .clinic .info .googlemap iframe {
    width: 100%;
    height: 300px;
  }
}

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

  *ご挨拶（パターン01）

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

.greeting::after {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 100px);
  min-width: 1250px;
  height: 650px;
  margin: 0 0 0 auto;
  background: linear-gradient(135deg, rgba(28, 184, 206, 0.1), rgba(0, 140, 187, 0.1)), url(../images/common/top_waiting.jpg) no-repeat center/cover;
}

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

.greeting_flex {
  display: flex;
  flex-flow: row-reverse;
  gap: 100px;
}

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

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

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

.greeting_img::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -50px;
  z-index: -1;
  display: block;
  width: 85%;
  height: 70%;
  background: var(--bg-color);
}

.greeting_img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 85%;
  height: 70%;
  background: var(--main-color);
}

.greeting_text {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 105%;
  line-height: 2.5;
}

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

.greeting_text .catch {
  position: relative;
  z-index: 1;
  font-size: 160%;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-align: center;
}

.greeting_text .catch::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 30px auto 0;
  background: linear-gradient(to right, var(--main-color), 5%, #ffffff 5%, #ffffff 6%, var(--main-color) 6%, var(--main-color) 10%, #ffffff 10%, #ffffff 11%, var(--main-color) 11%, var(--main-color));
}

.greeting_profile {
  margin-top: 35px;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

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

.greeting_profile .name {
  margin-top: 10px;
  font-size: 170%;
}

.greeting_profile .name .small {
  display: inline-block;
  padding-right: 25px;
  font-size: 75%;
}

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

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

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

.greeting_box:nth-child(even) .greeting_img::before {
  right: -50px;
  left: auto;
  background: #e7f3f7;
}

.greeting_box:nth-child(even) .greeting_img::after {
  right: 0;
  bottom: 0;
  left: auto;
  background: var(--sub-color);
}

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

.greeting_box:nth-child(even) .greeting_text .catch::after {
  background: linear-gradient(to right, var(--sub-color), 5%, #ffffff 5%, #ffffff 6%, var(--sub-color) 6%, var(--sub-color) 10%, #ffffff 10%, #ffffff 11%, var(--sub-color) 11%, var(--sub-color));
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::after {
    width: 100%;
    min-width: auto;
    height: 300px;
  }

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

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

  .greeting_left {
    width: 100%;
  }

  .greeting_img::before {
    top: 50px;
    left: -20px;
  }

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

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

  .greeting_profile .name .small {
    padding-right: 15px;
  }

  .greeting_text {
    font-size: 102%;
  }

  .greeting_text .catch {
    margin-bottom: 20px;
    font-size: 130%;
  }

  .greeting_text .catch::after {
    margin: 20px auto 0;
  }

  .greeting_btn {
    margin-top: 40px;
  }

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

  .greeting_box:nth-child(even) .greeting_img::before {
    top: 50px;
    right: -20px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  margin: -350px auto 0;
  padding-top: 350px;
  background: rgba(227, 223, 210, 0.3);
}

.feature::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(70% - 450px);
  background: rgba(227, 223, 210, 0.2);
}

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

.feature_item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 26.6666666667px);
  height: auto;
  padding: 5px;
}

.feature_item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 80px;
  height: 80px;
  background: var(--main-color);
  opacity: 1;
}

.feature_item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 80px;
  height: 80px;
  background: var(--sub-color);
  opacity: 1;
}

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

.feature_img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
}

.feature_num {
  position: absolute;
  right: 20px;
  bottom: 20px;
  margin: 0 0 0 !important;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--main-color);
  font-size: 300%;
  line-height: 1;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
}

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

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

.feature_title h3 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 140%;
  line-height: 1.65;
  letter-spacing: 0.1em;
  text-align: center;
}

.feature_title h3 .small {
  display: block;
  font-size: 80%;
}

.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 {
    margin: 0 auto;
    padding-top: 0;
  }

  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  padding-bottom: 30px;
}

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

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 18px 20px 22px;
  background: #a9a9a9;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}

.search .tab_list li.is-active {
  background: var(--main-color);
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 15px;
  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: 24px 30px 26px;
  background: #ffffff;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 110%;
}

.search_list a:hover{
  opacity: 0.8;
  color: var(--main-color);
}

.search_list a.coming{
  pointer-events: none;
  user-select: none;
}

.search_list a.coming::before{
  content: "準備中";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(105, 105, 105, 0.8);
  color: #fff;
}

/* ----- 画像あり ----- */
.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);
}

/* ----- 偶数 ----- */
.search .tab_list li:nth-child(even).is-active{
    background: var(--sub-color);
}

.search .panel:nth-child(even){
  background: #e7f3f7;
}

.search .panel:nth-child(even) .search_list a:hover{
  color: var(--sub-color);
}


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search{
    padding-bottom: 15px;
  }
  .search .tab_list {
    flex-flow: wrap;
    gap: 10px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    width: calc(50% - 5px);
    min-height: auto;
    padding: 14px 10px 16px !important;
    font-size: 125%;
    transform: translate(0, 0) !important;
  }

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

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

  .search_list li a{
    padding: 15px 20px;
    font-size: 100%;
  }

  /* ----- 画像あり ----- */
  .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: 1;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(0, 140, 187, 0.3)), url(../images/common/dmy.jpg) no-repeat center/cover;
}

.medical::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 14px);
  height: calc(100% - 18px);
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
}

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

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 22.5px);
  height: auto;
  padding: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.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: 250px;
  padding: 40px 20px 45px;
  background: rgb(255, 255, 255);
  text-align: center;
}

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

.medical_icon {
  width: 70%;
  max-width: 100px;
  margin: 0 auto 10px !important;
  padding: 15px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
}

.medical_title h3 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 130%;
}

.medical_title_eng {
  margin-top: 5px;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
}

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

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 10px auto 0;
  padding: 5px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

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

.medical_item:nth-child(even) .medical_icon {
  border: 1px solid var(--sub-color);
}

.medical_item:nth-child(even) .medical_title_eng {
  color: var(--sub-color);
}

.medical_item:nth-child(even) .medical_btn span {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}

.medical_item:nth-child(even):hover .medical_btn span {
  background: #ffffff;
  color: var(--sub-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(0, 140, 187, 0.3)), url(../images/common/dmy.jpg) no-repeat center/cover;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

  .medical_item:hover {
    transform: translateY(-5px);
  }

  .medical_inner {
    justify-content: flex-start;
    min-height: auto;
    padding: 20px 10px;
  }

  .medical_icon {
    width: 60%;
  }

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

  .medical_title_eng {
    font-size: 11px;
    line-height: 1.6;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}

.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}

.column .column_box {
  width: calc(25% - 18.75px);
}

.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}

.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

  .column .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

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