@charset "UTF-8";

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

  *基本設定

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

section .inner {
  max-width: 1400px;
  padding: 120px 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 {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  line-height: 1.5;
  text-align: center;
}

.top_title::before {
  content: "";
  display: block;
  width: 91.2px;
  height: 74.4px;
  margin: 0 auto 20px;
  background: url(../images/common/logo.svg) no-repeat center/cover;
}

.top_title h2 {
  position: absolute;
  top: calc(50% + 45px);
  left: 50%;
  z-index: 2;
  width: 100%;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #004573;
  font-size: 34px;
  letter-spacing: 0.15em;
  transform: translate(-50%, -50%);
}

.top_title .eng {
  display: inline-block;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 110px;
  line-height: 1;
  letter-spacing: 0.15em;
  opacity: 10%;
}

.top_title .eng.white {
  color: #ffffff;
  opacity: 1;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 50px;
    line-height: 1.5;
  }

  .top_title::before {
    width: 63.84px;
    height: 52.08px;
    margin: 0 auto 20px;
  }

  .top_title h2 {
    top: calc(50% + 35px);
    font-size: 22px;
    letter-spacing: 0.15em;
  }

  .top_title .eng {
    font-size: 58px;
    letter-spacing: 0.1em;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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 {
  width: 100%;
  height: 100%;
}

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

.mvImg .splide__track::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 95px;
  background: var(--bg-color);
  -webkit-mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
  mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
}

.mvImg .splide__track::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 95px;
  background: linear-gradient(to right, rgba(0, 117, 193, 0.7), rgba(113, 197, 219, 0.5));
  -webkit-mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
  mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
  opacity: 1;
}

.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 .catch {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin: 0 auto;
  padding: 5px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.65;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.mvCatch .catch .catch_text {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 300px;
  padding: 0 5px 0 20px;
  letter-spacing: 0.15em;
  text-align: center;
}

.mvCatch .catch .catch_text::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

/* ----- コンテンツ ----- */
.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: 100px;
  display: inline-block;
  padding: 4px;
  background: rgba(0, 117, 193, 0.2);
  border-radius: 10px;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: rgba(0, 117, 193, 0.6);
  border-radius: 8px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  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;
}

.banner-wrapper {
  position: absolute;
  bottom: 140px;
  left: 315px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.banner-access-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #ffffff;
  border-radius: 6px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 110%;
  letter-spacing: 0.15em;
  text-align: center;
}

.banner-access-inner i {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 0 0 2px 1px;
  background: var(--bg-color);
  border-radius: 5px;
  color: var(--main-color);
  font-size: 32px;
  line-height: 1;
}

.banner-access-inner .station {
  display: flex;
  gap: 5px;
  margin: 0 auto 10px;
}

.banner-access-inner .station-item {
  display: inline-block;
  padding: 3px 12px;
  background: var(--bg-gray);
  border-radius: 10000px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.banner-access-inner .line {
  display: block;
  padding: 0 10px 8px;
  border-bottom: 1px solid var(--line-color);
  line-height: 1.65;
}

.banner-virus-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #ffffff;
  border-radius: 6px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100%;
  letter-spacing: 0.15em;
  text-align: ce;
  text-align: center;
}

.banner-virus-inner i {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 0 0 2px 1px;
  background: #eef8fb;
  border-radius: 5px;
  color: var(--sub-color);
  font-size: 28px;
  line-height: 1;
}

.banner-virus-inner .line {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2px 10px 12px;
  border-bottom: 1px solid var(--line-color);
  line-height: 1.6;
}

/* ----- スマホ専用エリア ----- */
.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: 80px;
    display: none;
    transform: translate(0, 0);
  }

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

  .mvCatch .catch {
    gap: 10px;
    font-size: 24px;
  }

  .mvCatch .catch .catch_text {
    min-width: 120px;
    padding: 0 5px 0 10px;
  }

  .mvCatch .catch .catch_text::before {
    bottom: 0;
    height: 20px;
  }

  .mvImg .splide__track::before {
    height: 31px;
    background: var(--bg-color);
    -webkit-mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
    mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
  }

  .mvImg .splide__track::after {
    bottom: 5px;
    height: 31px;
    background: linear-gradient(to right, rgba(0, 117, 193, 0.7), rgba(113, 197, 219, 0.5));
    -webkit-mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
    mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
  }

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

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
  }

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

  .banner-wrapper {
    position: static;
    max-width: 300px;
  }

  .banner-access-inner {
    border: 1px solid var(--line-color);
  }

  .banner-access .station {
    flex-flow: column;
    gap: 2px;
  }

  .banner-virus-inner {
    border: 1px solid var(--line-color);
  }

  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: var(--bg-color);
  }

  .sp_only .inner {
    padding: 30px 20px 0;
  }

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  h1 {
    margin-bottom: 0;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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;
  background: linear-gradient(to bottom, var(--bg-color) calc(100% - 350px), #ffffff calc(100% - 350px));
}

.clinic::after {
  content: "";
  display: block;
  width: calc(100% - 200px);
  height: 700px;
  margin: 0 auto;
  background: url(../images/common/dmy.jpg) no-repeat center/cover;
  border-radius: 30px;
}

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

.clinic .news .top_title::before {
  width: 68.4px;
  height: 55.8px;
  margin: 0 auto 20px;
}

.clinic .news .top_title .eng {
  font-size: 70px;
}

.clinic .news .top_title h2 {
  top: calc(50% + 35px);
  font-size: 30px;
}

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

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

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

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

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

.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: #ffffff;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 19px;
  letter-spacing: 0.1em;
}

.clinic .info address .location {
  padding: 3px 0 0px 70px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

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

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

.clinic .info address .tel {
  margin-top: 18px;
  padding: 7px 0 5px 70px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.175em;
}

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

.clinic .info address .fax {
  margin-top: 18px;
  padding: 7px 0 5px 70px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.175em;
}

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 25px auto 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}

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

.clinic .info .googlemap {
  padding: 10px;
  background: #ffffff;
  border-radius: 20px;
}

.clinic .info .googlemap iframe {
  width: 100%;
  height: 550px;
  border-radius: 10px;
}

.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: linear-gradient(to bottom, var(--bg-color) calc(100% - 150px), #ffffff calc(100% - 150px));
  }

  .clinic::after {
    width: calc(100% - 40px);
    height: 300px;
    border-radius: 30px;
  }

  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 70px 20px;
  }

  .clinic .news .top_title {
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .clinic .news .top_title::before {
    width: 63.84px;
    height: 52.08px;
    margin: 0 auto 20px;
  }

  .clinic .news .top_title h2 {
    top: calc(50% + 35px);
    font-size: 24px;
    letter-spacing: 0.15em;
  }

  .clinic .news .top_title .eng {
    font-size: 60px;
    letter-spacing: 0.1em;
  }

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

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

  .clinic .info address > * {
    position: relative;
    z-index: 1;
    min-height: 45px;
  }

  .clinic .info address > *::before {
    width: 45px;
    height: 45px;
    padding: 0 0 0 2px;
    font-size: 17px;
  }

  .clinic .info address .location {
    padding: 2px 0 0px 65px;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  .clinic .info address .tel {
    margin-top: 18px;
    padding: 10px 0 5px 65px;
    font-size: 30px;
    letter-spacing: 0.15em;
  }

  .clinic .info address .fax {
    margin-top: 18px;
    padding: 10px 0 5px 65px;
    font-size: 30px;
    letter-spacing: 0.15em;
  }

  .clinic .info .googlemap {
    padding: 8px;
  }

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

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

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

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

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

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

.search::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 400px);
  height: 75%;
  background-image: radial-gradient(#eef4f8 1.3px, transparent 1.3px);
  background-size: 15px 15px;
}

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

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 20px;
  background: #a9a9a9;
  border-radius: 10000px;
  font-family: "dnp-shuei-mgothic-std", 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_container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 95px;
  background: var(--bg-color);
  -webkit-mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
  mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
}

.search_container::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 95px;
  background: linear-gradient(to right, rgba(0, 117, 193, 0.7), rgba(113, 197, 219, 0.5));
  -webkit-mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
  mask: url(../images/common/wave.svg) repeat-x center/1920px 95px;
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
}

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

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 15px;
  height: fit-content;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-color);
}

.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 70px;
  padding: 15px 20px;
  background: var(--bg-color);
  border-radius: 7px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 105%;
}

.search_list a:hover {
  background: #dcf1fc;
  color: var(--main-color);
}
.search_list a[href="#"]{
	pointer-events:
}
.search_list a[href="#"]:before{
    content: "準備中";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.7);
    color: #ffffff;
    transform: translate(-50%, -50%);
	border-radius: 7px;
}
/* ----- 画像あり ----- */
.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 {
    padding-bottom: 50px;
  }

  .search::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 50%;
    height: 75%;
    background-image: radial-gradient(#eef4f8 1.2px, transparent 1.2px);
    background-size: 12px 12px;
  }

  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 20px;
  }

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

  .search_container::before {
    height: 31px;
    background: var(--bg-color);
    -webkit-mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
    mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
  }

  .search_container::after {
    bottom: 5px;
    height: 31px;
    background: linear-gradient(to right, rgba(0, 117, 193, 0.7), rgba(113, 197, 219, 0.5));
    -webkit-mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
    mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
  }

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  padding-bottom: 40px;
  background: var(--bg-color);
}

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

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

.feature_item {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
}

.feature_img {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 550px;
  padding: 7px;
  background: #ffffff;
  border-radius: 20px;
}

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

.feature_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  width: calc(100% + 150px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -100px;
  padding: 60px 50px 60px 130px;
  background: linear-gradient(to right, rgb(0, 117, 193), rgb(113, 197, 219));
  border-radius: 20px;
}

.feature_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-color);
}

.feature_title h3 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #004573;
  font-size: 170%;
  line-height: 1.55;
  letter-spacing: 0.15em;
}

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

.feature_text .eng {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #b5b5b5;
}

.feature_num {
  margin: 0 0 20px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 170%;
  line-height: 1;
}

.feature_num span {
  color: var(--main-color);
  font-size: 130%;
}

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

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

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

.feature_item:nth-child(even) .feature_inner {
  margin: 0 -100px 0 0;
  padding: 60px 130px 60px 50px;
}

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

  .feature_list {
    gap: 40px;
  }

  .feature_item {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0;
  }

  .feature_img {
    width: 85%;
    margin: 0 auto -30px;
    padding: 5px;
    border-radius: 15px;
  }

  .feature_img img {
    border-radius: 10px;
  }

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 50px 25px 40px;
    border-radius: 20px;
  }

  .feature_inner::before {
    border-radius: 40px;
  }

  .feature_num {
    margin-bottom: 10px;
    font-size: 110%;
  }

  .feature_title {
    min-height: auto;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .feature_title h3 {
    font-size: 130%;
  }

  .feature_button {
    padding-top: 30px;
  }

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

  .feature_item:nth-child(even) .feature_inner {
    width: 100%;
    margin: 0 auto;
    padding: 50px 25px 40px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  padding: 0px 0 20px;
  background: linear-gradient(rgba(183, 226, 255, 0.6), rgba(224, 249, 255, 0.6)), url(../images/common/dmy.jpg) no-repeat center/cover;
}

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

.medical .top_title .eng {
  opacity: 0.3;
}

.medical_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex-wrap: wrap;
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  background: rgb(255, 255, 255);
  border-radius: 10px;
}

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

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

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

.medical_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 30px 20px 40px;
  text-align: center;
}

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

.medical_icon {
  width: 80%;
  max-width: 100px;
  margin: 0 auto 15px !important;
  padding: 13px;
  border-radius: 50%;
}

.medical_title h3 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 115%;
  line-height: 1.6;
}

.medical_title h3 .small {
  display: block;
  margin-top: 2px;
  color: #9c9c9c;
  font-size: 65%;
}

.medical_title_eng {
  margin-top: 5px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
}

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

.medical_btn {
  margin-top: auto;
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 3px 14px 3px 16px;
  border-radius: 10000px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

.medical_item:nth-child(odd) .medical_icon {
  background: #eff5f8;
}

.medical_item:nth-child(odd) .medical_title_eng {
  color: var(--main-color);
}

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

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

.medical_item:nth-child(even) .medical_icon {
  background: #f1f8fa;
}

.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(rgba(183, 226, 255, 0.6), rgba(224, 249, 255, 0.6)), url(../images/common/dmy.jpg) no-repeat center/cover;
  }

  .medical_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }

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

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

  .medical_icon {
    width: 60%;
    padding: 10px;
  }

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

  .medical_btn span {
    padding: 3px 12px 3px 14px;
    font-size: 10px;
  }
}

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

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

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

.pickup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgb(238, 244, 248) 1.3px, transparent 1.3px);
  background-size: 15px 15px;
}

.pickup .top_title {
  margin-bottom: 80px;
}

.pickup .top_title h2 {
  top: calc(50% + 40px);
  font-size: 30px;
}

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

.pickup_container::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  display: block;
  width: 100%;
  height: 95px;
  background: #ffffff;
  mask: url("../images/common/wave.svg") center center/1920px 95px repeat-x;
}

.pickup_container::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0px;
  z-index: 1;
  display: block;
  width: 100%;
  height: 95px;
  background: linear-gradient(to right, rgba(0, 117, 193, 0.7), rgba(113, 197, 219, 0.5));
  mask: url("../images/common/wave.svg") center center/1920px 95px repeat-x;
}

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

.pickup_item {
  width: 50%;
}

.pickup_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 600px;
  height: auto;
}

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 15px;
  padding: 25px 30px;
  border-radius: 10000px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.65;
  letter-spacing: 0.2em;
  text-align: center;
}

.pickup_title::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  display: block;
  width: 30px;
  height: 25px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

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

.pickup_title .eng {
  font-size: 100%;
}

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

.pickup_img img {
  border-radius: 30px;
}

.pickup_text {
  margin: 40px 0;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 105%;
  line-height: 2.25;
  letter-spacing: 0.2em;
}

.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  height: 100%;
  margin-top: auto;
  padding-top: 40px;
  border-top: 2px solid #ffffff;
}

.pickup_btn {
  width: calc(50% - 5px);
  height: fit-content;
}

.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 7px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 105%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.pickup_btn a:hover {
  background: #ffffff;
  color: var(--main-color);
}

/* ----- 奇数 ----- */
.pickup_item:nth-child(odd) {
  padding: 100px 50px 250px 0;
  background: #e9f3f8;
}

.pickup_item:nth-child(odd) .pickup_inner {
  margin: 0 0 0 auto;
}

.pickup_item:nth-child(odd) .pickup_title {
  background: var(--main-color);
}

.pickup_item:nth-child(odd) .pickup_title::before {
  background: var(--main-color);
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  padding: 100px 0 250px 50px;
  background: #edfafd;
}

.pickup_item:nth-child(even) .pickup_inner {
  margin: 0 auto 0 0;
}

.pickup_item:nth-child(even) .pickup_title {
  background: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_title::before {
  background: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_btn a:hover {
  color: var(--sub-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup {
    padding-top: 50px;
  }

  .pickup::before {
    background-image: radial-gradient(rgb(238, 244, 248) 1.2px, transparent 1.2px);
    background-size: 12px 12px;
  }

  .pickup .top_title {
    margin: 0 auto 50px;
    padding: 0 20px;
  }

  .pickup .top_title h2 {
    top: calc(50% + 35px);
    font-size: 125%;
  }

  .pickup_container::before {
    height: 31px;
    background: #ffffff;
    -webkit-mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
    mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
  }

  .pickup_container::after {
    bottom: 5px;
    height: 31px;
    background: linear-gradient(to right, rgba(0, 117, 193, 0.7), rgba(113, 197, 219, 0.5));
    -webkit-mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
    mask: url(../images/common/wave.svg) repeat-x center/640px 31px;
  }

  .pickup_list {
    width: 100%;
  }

  .pickup_item {
    width: 100%;
    padding: 50px 20px;
  }

  .pickup_title {
    padding: 10px;
    font-size: 110%;
  }

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

  .pickup_title::before {
    bottom: -20px;
    width: 25px;
    height: 20px;
  }

  .pickup_inner {
    max-width: none;
    min-height: auto;
    margin: 0 !important;
  }

  .pickup_text {
    font-size: 100%;
  }

  .pickup_btn {
    width: 100%;
  }

  .pickup_item:nth-child(odd) {
    padding: 50px 20px;
  }

  .pickup_item:nth-child(even) {
    padding: 50px 20px 110px;
  }
}

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

  *ご挨拶（パターン01）

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

.greeting::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: -2;
  display: block;
  width: calc(50% - 300px);
  height: 80%;
  background-image: radial-gradient(rgb(238, 244, 248) 1.3px, transparent 1.3px);
  background-size: 15px 15px;
}

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

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

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

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

.greeting_img img {
  background: var(--bg-color);
  border-radius: 15px;
}

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

.greeting_text {
  line-height: 2.25;
}

.greeting_text .catch {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 5px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 30px;
  line-height: 1.65;
}

.greeting_text .catch .catch_text {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 180px;
  padding: 0 5px 0 20px;
  letter-spacing: 0.15em;
  text-align: center;
}

.greeting_text .catch .catch_text::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 20px;
  background: rgba(0, 117, 193, 0.2);
  border-radius: 5px;
}

.greeting_profile {
  margin-top: 40px;
  font-family: "dnp-shuei-mgothic-std", 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: 160%;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before {
    width: 35%;
    background-image: radial-gradient(rgb(238, 244, 248) 1.2px, transparent 1.2px);
    background-size: 12px 12px;
  }

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

  .greeting_left {
    width: 100%;
  }

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

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

  .greeting_text .catch {
    gap: 10px;
    font-size: 24px;
  }

  .greeting_text .catch .catch_text {
    min-width: 120px;
    padding: 0 5px 0 10px;
  }

  .greeting_text .catch .catch_text::before {
    bottom: 0;
    height: 20px;
  }

  .greeting_btn {
    margin-top: 40px;
  }
}

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 50px;
}

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

#infinitySlider .splide__slide img {
  border-radius: 15px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider {
    padding-bottom: 80px;
  }

  #infinitySlider .splide__list {
    gap: 25px;
  }

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

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

  *医療コラム（パターン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%;
  }
}
