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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
}
section .inner {
  padding: 150px 0;
}
.text > *:not(:last-child) {
  margin-bottom: 2em;
}
/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}
/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  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;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  margin-bottom: 100px;
  line-height: 1.8;
  text-align: center;
}
/* 左寄せ */
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 240%;
  letter-spacing: 0.15em;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: rgb(141 195 62 / 15%);
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1000%;
  line-height: 1.2;
  top: 33%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  z-index: -1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 22px;
  }
  .top_title .eng {
    font-size: 45px;
    color: rgb(141 195 62 / 20%);
    top: 46%;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  overflow: hidden;
}
.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
.mvSlider .sliderBtn#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: 35%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.mvCatch p {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 280%;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
}
.mvCatch .sub_copy {
  width: fit-content;
  background: #ffffff;
  border-radius: 100px;
  padding: 8px 30px;
  text-shadow: none;
  filter: drop-shadow(0 0 5px rgb(141 195 62 / 40%));
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 120%;
  margin-bottom: 14px;
}
.copy_strong {
  font-size: 120%;
}
/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mvContents .splide__track {
  width: 100%;
  height: 100%;
}
/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: url(../images/front/texture_suisai.png) center, #80cc37;
  border-radius: 50%;
  color: #ffffff;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  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(--text-color);
  font-size: 90%;
  text-align: center;
}
/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}
.open_bnr.subcolor > * .nairankai_tit {
  color: var(--sub-color);
}
/*==== MVのバナー ====*/
.mv_info_wrap {
  position: absolute;
  left: 350px;
  bottom: 60px;
  display: flex;
  gap: 20px;
  z-index: 10;
}
/* 丸本体 */
.mv_info {
  width: 255px;
  height: 215px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../images/front/texture_suisai.png) center, #ff9286;
}
.mv_info_bnr {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 50px;
  color: #ffffff;
  text-decoration: none;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.highlight {
  font-size: 130%;
}
.bnr_text {
  margin: 0;
}
.bnr_text span {
  display: block;
}
.bnr_text span + span {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px dotted #ffffff;
}
/* ==== グリーン ====*/
.mv_info_bnr01 .mv_info_bnr {
  padding-top: 75px;
  background: url(../images/front/texture_suisai.png) center, #08a812;
}
/*ホバー*/
.mv_info a:hover {
  background: url(../images/front/texture_suisai.png) center, #1f7524; /*濃いグリーン*/
  color: #ffffff;
}
/* ==== ライトブルー ====*/
.mv_info_bnr02 .mv_info_bnr {
  padding-top: 40px;
  line-height: 1.6;
  background: url(../images/front/texture_suisai.png) center, #31b4ed;
}
/*ホバー*/
.mv_info_bnr02 .mv_info_bnr:hover {
  background: url(../images/front/texture_suisai.png) center, #2089b6; /*濃いブルー*/
}
/* アイコン本体 */
.mv_info_bnr .mv_icon {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 2;
  background-color: #ffffff;
  transition: .3s;
}
/* 1つ目 */
.mv_info_bnr01 .mv_icon {
  background:
    url(../images/front/mv_bnr_icon01.png) center / 55% no-repeat;
  background-color: #ffffff;
}
/* 2つ目 */
.mv_info_bnr02 .mv_icon {
  background:
    url(../images/front/mv_bnr_icon02.png) center / 60% no-repeat;
  background-color: #ffffff;
}
/* 矢印 */
.mv_info::after {
  position: absolute;
  bottom: -8px;
  right: -10px;
  content: "\f061";
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgb(255 255 255 / 75%);
  border-radius: 15px;
  transition: .2s;
  color: var(--sub-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  padding-bottom: 5px;
  padding-right: 5px;
}
.mv_info_bnr02::after {
  color: var(--sub-color02);
}
/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }
  /* ----- スライダーの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: -10px;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.6;
  }
  .mvCatch .sub_copy {
    padding: 4px 15px 3px;
    font-size: 80%;
    margin-bottom: 5px;
  }
  /* ----- コンテンツ ----- */
  .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: 15px;
  }
  /* ----- スマホ MVバナー ----- */
  .mv_info_wrap {
    position: static;
    display: contents;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 100%;
    align-items: center;
  }
  .mv_info {
    width: 100%;
    max-width: 330px;
    height: 130px;
  }
  .mv_info_bnr {
    padding-top: 0;
    text-align: left;
    font-size: 16px;
  }
  .mv_info_bnr01 .mv_info_bnr {
    padding-top: 0;
  }
  .mv_info_bnr01 .mv_info_bnr, .mv_info_bnr02 .mv_info_bnr {
    padding-left: 0;
    padding-top: 0;
  }
  .mv_info_bnr .mv_icon {
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
  }
  .mv_info::after {
    right: -7px;
    bottom: 10%;
    transform: translateY(50%);
  }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }
  .sp_only .inner {
    padding: 0 20px 40px;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: url(../images/front/texture_suisai.png) center, #d0fba9;
}
/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 110px 70px 90px;
  background: #ffffff;
  border-radius: 25px;
}
.clinic .news .inner .top_title h2 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 240%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.clinic .news .inner .top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 180%;
  line-height: 1.2;
  top: -18px;
}
.clinic .news .news_left {
  flex-shrink: 0;
}
.clinic .news .top_title {
  margin: 0 0 30px;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}
/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  overflow: hidden;
}
.clinic .info::before {
  position: absolute;
  content: "";
  background: url(../images/front/illust_bg_mountain.png) no-repeat bottom center / auto;
  width: 100%;
  height: 200px;
  bottom: -20px;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}
.clinic .info .inner {
  display: flex;
  gap: 60px;
  padding: 0 0 100px;
}
.clinic .info .inner > * {
  width: calc(50% - 20px);
}
.clinic .info .office_hour .title {
  background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
}
.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}
.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.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: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  line-height: 0.8;
  letter-spacing: 0.08em;
}
.clinic .info address .tel a {
  color: var(--text-color);
}
.clinic .info address .tel a:hover {
  color: var(--sub-color);
}
.clinic .info address .tel::before {
  content: "\f3cd";
}
.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
}
.clinic .info address .fax::before {
  content: "\f249";
}
.clinic .info .note {
  margin-top: 20px;
  padding-left: 12px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 100%;
}
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
}
.clinic .illustmap img {
  border-radius: 20px;
}
.clinic .info .googlemap iframe {
  height: 350px;
}
.clinic .info .list_access {
  margin-top: 5px;
}
.clinic .info .calendar_text {
  margin-top: 20px;
}
.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- お知らせ ----- */
  .clinic .news {
    padding: 40px 20px;
  }
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
  /* ----- 医院概要 ----- */
  .clinic .info::before {
    background: url(../images/front/illust_bg_mountain_sp.png) no-repeat bottom center / auto;
    width: 100%;
    bottom: -10px;
    height: 100px;
  }
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
    gap: 30px;
  }
  .clinic .info .inner > * {
    width: 100%;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.greeting::before {
  position: absolute;
  content: "";
  background: url(../images/front/item_leaf_left.png) no-repeat left 0 top 20px / 280px auto, url(../images/front/item_leaf_right.png) no-repeat right 0 top 25px / 280px auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.greeting::after {
  position: absolute;
  content: "";
  background: url(../images/front/greeting_bg.png) no-repeat bottom center / auto;
  width: 100%;
  height: 100%;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.greeting .inner {
  padding: 150px 60px;
}
.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: 60%;
}
.greeting_text h3 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 170%;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 30px !important;
}
.greeting_text p {
  font-size: 110%;
  line-height: 2.5;
  letter-spacing: 0.12em;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_img img {
  margin-bottom: 30px;
  border-radius: 15px;
}
.greeting_profile {
  color: var(--main-color);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.75;
  text-align: center;
}
.greeting_profile .position {
  font-size: 130%;
  padding-bottom: 5px;
}
.greeting_profile .name {
  color: var(--text-color);
  font-size: 150%;
}
.greeting_profile .name span {
  font-size: 70%;
}
.greeting_btn {
  margin-top: 50px;
  text-align: center;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before {
    background: url(../images/front/item_leaf_left.png) no-repeat left 0 top 10px / 100px auto, url(../images/front/item_leaf_right.png) no-repeat right 0 top 5px / 100px auto;
  }
  .greeting::after {
    background: url(../images/front/greeting_bg_sp.png) no-repeat bottom center / auto;
    bottom: -90px;
  }
  .greeting .inner {
    padding: 70px 20px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 50px;
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_img {
    text-align: center;
  }
  .greeting_img img {
    width: 90%;
    margin-bottom: 15px;
  }
  .greeting_text h3 {
    font-size: 155%;
    margin-bottom: 18px !important;
  }
  .greeting_text p {
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .greeting_btn {
    margin-top: 40px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  background: url(../images/front/texture_suisai.png) center, #b9e78e;
  z-index: 0;
}
.medical .top_title {
  color: #ffffff;
}
.medical .top_title span {
  color: rgb(255 255 255 / 30%);
}
.medical_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 40px) / 3);
  height: auto;
}
.medical_item:hover {
  transform: translateY(-10px);
}
.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  text-align: center;
  outline-offset: -16px;
  outline: 4px dotted var(--sub-color02);
}
.medical_item:nth-child(even) .medical_inner {
  outline: 4px dotted var(--main-color);
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}
.medical_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
}
.medical_title h3 {
  color: var(--text-color);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 140%;
  line-height: 1.45;
}
.medical_title h3 span {
  font-size: 75%;
}
.medical_title_eng {
  margin-top: 5px;
  color: var(--sub-color02);
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-align: center;
}
.medical_item:nth-child(even) .medical_title_eng {
  color: var(--main-color);
}
.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);
}
/* ----- 先頭2つの設定----- 
.medical_item:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  min-height: 350px;
}
.medical_item:nth-of-type(-n + 2) .medical_inner {
  padding: 20px 20px 40px;
}
.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}
.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 150%;
}*/
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical .inner {
    padding: 70px 12px;
  }
  .medical .top_title {
    color: var(--text-color);
  }
  .medical .top_title span {
    color: rgb(255 255 255 / 40%);
  }
  .medical_list {
    gap: 15px 10px;
  }
  .medical_item {
    width: calc(50% - 5px);
    padding-left: 5px;
  }
  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
    width: 160px;
    height: 160px;
    outline-offset: -8px;
    outline: 2px dotted var(--sub-color02);
  }
  .medical_item:nth-child(even) .medical_inner {
    outline-offset: -8px;
    outline: 2px dotted var(--main-color);
  }
  .medical_icon {
    width: 40%;
    margin: 0 auto 5px !important;
  }
  .medical_title h3 {
    font-size: 110%;
  }
  .medical_title_eng {
    font-size: 9px;
    line-height: 1.2;
    padding-bottom: 8px;
  }
  /* ----- 先頭2つの設定----- */
  /*  .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }
  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 15px 20px 30px;
  }
  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }
  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  }*/
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  background: var(--bg-color);
  z-index: 0;
  overflow: hidden;
}
.feature::before {
  position: absolute;
  content: "";
  background: url(../images/front/illust_bg_mountain02.png) no-repeat bottom center / auto;
  width: 100%;
  height: 200px;
  bottom: -60px;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.feature::after {
  position: absolute;
  content: "";
  background: url(../images/front/feature_bg_leaf01.png) no-repeat right -50px top 140px / 400px auto, url(../images/front/feature_bg_bird.png) no-repeat right 230px top 460px / 65px auto, url(../images/front/feature_bg_leaf02.png) no-repeat left 80px top 1200px / 120px auto, url(../images/front/feature_bg_leaf03.png) no-repeat right 129px bottom 1690px / 140px auto, url(../images/front/feature_bg_leaf04.png) no-repeat left 120px bottom 1190px / 150px auto, url(../images/front/feature_bg_leaf05.png) no-repeat right -40px bottom 373px / 390px auto;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feature .top_title .eng {
  color: rgb(222 221 202 / 40%);
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 70px 30px;
}
.feature_item {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 50px;
}
.feature_img {
  position: relative;
  flex-shrink: 0;
  width: 540px;
  margin-top: -70px;
  align-self: flex-start;
}
.feature_img::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0px;
  width: 540px;
  height: 395px;
  background: url(../images/front/texture_suisai.png) center, #31b4ed;
  z-index: -1;
  border-radius: 30px;
  opacity: 0.8;
}
.feature_item:nth-child(even) .feature_img::before {
  background: url(../images/front/texture_suisai.png) center, #80cc37;
}
.feature_img img {
  flex-shrink: 0;
  width: 560px;
  border-radius: 50px;
}
.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 80px 50px 50px;
  background: var(--bg-color);
  border-radius: 40px;
  overflow: hidden;
}
.feature_inner::before {
  position: absolute;
  content: "";
  background: url(../images/front/item_leaf_left_silhouette01.png) bottom right / cover no-repeat;
  width: 188px;
  height: 135px;
  top: 8px;
  left: -40px;
  opacity: 0.7;
  z-index: -1;
}
.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 35px;
}
.feature_title h3 {
  position: relative;
  color: var(--text-color);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 200%;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.feature_title h3::before {
  position: absolute;
  content: "";
  width: 20%;
  border-bottom: 2px solid var(--sub-color02);
  top: calc(100% - -12px);
  z-index: 1;
}
.feature_item:nth-child(even) .feature_title h3::before {
  border-bottom: 2px solid var(--main-color);
}
.feature_num {
  margin: 0 0 28px;
  font-family: "menco", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 100%;
  line-height: 1.5;
}
.feature_num span {
  position: absolute;
  color: var(--sub-color02);
  font-size: 350%;
  padding-left: 10px;
  top: 44px;
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
}
.feature_item:nth-child(even) .feature_num span {
  color: var(--main-color);
}
.feature_text .text {
  font-size: 110%;
}
.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: left;
  gap: 10px;
  margin-top: auto;
  padding-top: 45px;
}
.feature_button .btn01 {
  text-align: center;
}
/*特徴ボタン ライトグリーン*/
.feature .btn01 > * {
  background: var(--sub-color02);
  border: 1px solid var(--sub-color02);
}
.feature .btn01 > *:hover {
  background: #ffffff;
  color: var(--sub-color02);
}
/*特徴ボタン ライトブルー*/
.feature_item:nth-child(even) .btn01 > * {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}
.feature_item:nth-child(even) .btn01 > *:hover {
  background: #ffffff;
  color: var(--main-color);
}
/* ----- 左右 ----- */
/*.feature_item:nth-child(even) {
  flex-flow: row-reverse;
}
.feature_item:nth-child(even) .feature_inner {
  margin: 0 -50px 0 0;
}*/
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
  }
  .feature::before {
    display: none;
  }
  .feature::after {
    background: url(../images/front/feature_bg_leaf01.png) no-repeat right -50px top -30px / 155px auto, url(../images/front/feature_bg_bird.png) no-repeat right 90px top 20px / 32px auto;
  }
  .feature .inner {
    padding: 60px 20px 40px;
  }
  .feature_list {
    gap: 40px;
  }
  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
  }
  .feature_inner::before {
    width: 140px;
    height: 97px;
    top: -12px;
    left: 0px;
  }
  .feature_img {
    width: 100%;
    margin: 0;
  }
  .feature_img::before {
    width: 335px;
    height: 245px;
    border-radius: 20px;
  }
  .feature_img img {
    width: 560px;
    border-radius: 35px;
  }
  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 30px 20px;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 25px;
  }
  .feature_num {
    margin: 0 0 12px;
  }
  .feature_num span {
    font-size: 280%;
    top: 8px;
    letter-spacing: 0.05em;
  }
  .feature_title h3 {
    font-size: 150%;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .feature_title h3::before {
    top: calc(100% - -12px);
  }
  .feature_button {
    justify-content: center;
    padding-top: 25px;
  }
  /* ----- 左右 ----- */
  /*  .feature_item:nth-child(even) {
    flex-flow: column;
  }
  .feature_item:nth-child(even) .feature_inner {
    margin: 0 auto;
  }*/
}
/* ==================================================================================================================================

  *医療コラム（パターン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: 400px !important;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 300px !important;
  }
}