@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *バナーエリア
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *病状・病名から探す
  - *医療コラム
  - *無限スライダー
--------------------- */
@import url("variables.css");

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

  *基本設定

================================================================================================================================== */
.front {
  overflow: hidden;
}

section .inner {
  padding: 100px 0;
}

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

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

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

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

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

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

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

  *タイトル

================================================================================================================================== */
.top_title {
  margin-bottom: 80px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
    font-size: 20px;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--main-color);
  font-size: 64px;
  line-height: 1;
  font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.06em;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
    h1 {
        margin: 0 auto;
    }
  .top_title {
    margin-bottom: 200px;
  }

  .top_title h2 {
    margin: 5px 0 0;
    font-size: 12px;
  }

  .top_title .eng {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

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

  *メインビジュアル

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

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mvSlider::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 140px;
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0));
    z-index: 1;
}
/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

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

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

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

.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}

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

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

.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f054";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}

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

.mvImg .splide__slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

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

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

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

/* MVのアニメーション  */
@keyframes hideImg {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }

  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  /* 下降 */
  0% {
    transform: translate3d(0, -30px, 0);
  }

  100% {
    transform: translate3d(0, 0px, 0);
  }
}

/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  left: 290px;
  bottom: 380px;
  z-index: 3;
  width: 100%;
}

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

.mvCatch p {
  font-size: 32px;
  color: var(--main-color);
  line-height: 1.45;
  font-family: var(--jp-font);
font-weight: 400;
font-style: normal;
}
.mvCatch span.catch_eng {
    display: block;
    font-size: 22px;
    font-family:  var(--en-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
}

/* ----- コンテンツ ----- */
.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: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

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

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

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

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

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

/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}
/* New open  */
.mv_open {
    position: absolute;
    left: 0;
    bottom: 316px;
}
/* ==============================================
  *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: 180px;
    left: 0;
  }

  .mvCatch p {
    font-size: 130%;
    line-height: 2;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }
.mvCatch span.catch_eng {
    font-size: 11px;
}
  /* .mvContents {
    display: none;
  } */

  .mv_open {
    left: 20px;
    bottom: 20px;
    width: 130px;
    height: 130px;
  }
  .sp_only {
    display: block;
    background: none !important;
  }

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

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

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

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

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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 a.banner_slide:hover {
  background: #f5f5f5;
}

.top_banner .input .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 .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}

.top_banner .input .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 .slide_content {
  font-size: 90%;
}

/* ----- グリッドバナー ----- */
.top_banner {
    position: relative;
    margin-top: -225px;
    padding-bottom: 25px;
}

.top_banner .inner {
    padding: 0;
}

.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;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

#bannerSlider .bannerSlider_arrow span {
  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(--text-color);
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_prev span::before {
    position: absolute;
    content: "";
    background: url(../images/slide_arrow.png) center / cover no-repeat;
    width: 14px;
    height: 10px;
    transform: scale(-1, 1);
}
#bannerSlider .bannerSlider_arrow_next span::before {
    position: absolute;
    content: "";
    background: url(../images/slide_arrow.png) center / cover no-repeat;
    width: 14px;
    height: 10px;
}
/* #bannerSlider .bannerSlider_arrow_prev span::before {
  content: "\f104";
} */

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

/* #bannerSlider .bannerSlider_arrow_next span::before {
  content: "\f105";
} */

/* ページネーション */
#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;
  }
  #bannerSlider .splide__slide {
    min-height: 80px;
  }
  .top_banner {
    background: var(--bg-color);
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 0;
  }

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

  #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;
  }
  #bannerSlider .bannerSlider_arrow_prev {
    left: 10px;
  }
  #bannerSlider .bannerSlider_arrow_next {
    right: 10px;
  }
}

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

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

================================================================================================================================== */
.clinic {
  background: var(--bg-color);
}

.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
}

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

/* ----- お知らせ ----- */
.clinic .news .top_title h2 {
  font-size: 170%;
}

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

/* ----- 医院概要 ----- */
.clinic .info .office_hour .table_wrap {
  background: #ffffff;
}

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
}

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

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

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

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

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

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

.clinic .info address .location span {
  display: inline-block;
  margin-right: 10px;
}

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

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

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

.clinic .info address .fax p {
  font-size: 30px;
}

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

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

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

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

@media screen and (max-width: 640px) {
  .clinic .inner > * {
    width: 100%;
  }

  /* ----- 医院概要 ----- */
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 15px;
  }

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

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    background: 
    url(../images/bg_greeting_leaf.png) bottom -80px right 40px no-repeat,
    var(--bg-color);
}
.greeting .inner {
  position: relative;
    padding: 195px 0 200px;
}
.greeting .top_title {
    text-align: left;
    margin-bottom: 70px;
}
.greeting .top_title h2 {
    position: relative;
    width: fit-content;
    font-size: 30px;
    color: var(--main-color);
    line-height: 1.5;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}
.greeting .top_title h2::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: var(--line-color);
    left: calc(100% + 42px);
    top: 22px;
    transition: 3s cubic-bezier(0.22, 1, 0.36, 1);
}
.greeting .top_title h2.is-active::before {
  width: calc(((100vw - 100%) - ((100vw - 1200px)) / 2) + 300px);
}
.greeting_box {
  position: relative;
  z-index: 1;
}

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

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

.greeting_left {
  flex-shrink: 0;
  width: 642px;
}
.greeting_text {
    font-family: var(--jp-font02);
    font-weight: 400;
    font-style: normal;
}
.greeting_text p {
    line-height: 2.35;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_img {
    padding-top: 40px;
    opacity: 0;
}
.greeting_img img {
    border: 1px solid var(--line-color);
}
.greeting_profile {
  padding: 50px 0 0 76px;
  line-height: 1.75;
  text-align: left;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.greeting_profile .position {
  font-size: 16px;
}

.greeting_profile .name {
  font-size: 26px;
}
.greeting_profile .name span {
  font-size: 16px;
  padding-right: 20px;
}
.greeting_btn {
  margin: 40px 0 0 76px;
  text-align: center;
}
.top_career_box {
  position: relative;
    display: flex;
    align-items: center;
    gap: 70px;
    border-top: 1px solid var(--line-color);
    border-right: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    padding: 70px 60px 70px 124px;
    margin: 90px -150px 0 0;
}
.top_career_box::before {
    position: absolute;
    content: "";
    top: -1px;
    left: calc((1200px - 100vw) / 2 - 400px);
    width: 0;
    height: calc(100% + 2px);
    background: rgba(255, 255, 255, 0);
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.top_career_box.is-active::before {
  width: calc((100vw - 1200px) / 2 + 400px);
}
.top_career_box::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: -1px;
    width: 1px;
    height: 0;
    background: var(--line-color);
    z-index: -1;
    transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.top_career_box.is-active::after {
    height: 600px;
}
.top_career_title {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 33px;
    font-size: 16px;
    background: var(--main-color);
    color: #fff;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    min-height: 193px;
}
.top_career_inner dl {
    display: flex;
    gap: 16px;
}
.top_career_inner dl dt {
    font-weight: 400;
    flex-shrink: 0;
}
.greeting_eng {
  position: absolute;
  font-size: 150px;
   font-family:  var(--en-font02);
   color: rgba(32, 50, 38, 0.2);
   top: 540px;
    right: -70px;
  z-index: 1;
  letter-spacing: 0.06em;
  line-height: 1;
   font-weight: 400;
   font-style: normal; 
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
/* 印刷プレビュー用 */
@media print {
  .greeting_img {
    opacity: 1;
  }
  .top_career_box::before {
    width: calc((100vw - 1200px) / 2 + 400px);
  }
}
/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting {
        background-position: bottom -80px right -330px;
    }
    .greeting .inner {
        padding: 30px 20px 60px;
    }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }
.greeting .top_title {
    margin-bottom: 30px;
}
.greeting .top_title h2 {
    font-size: 20px;
}
.greeting .top_title h2::before {
    width: 0;
    top: 28px;
    left: calc(100% + 16px)
}
.greeting .top_title h2.is-active::before {
     width: 500px; 
}
.greeting_text p {
    line-height: 1.75;
}
.greeting_img {
    width: 50%;
    margin: 0 auto;
    padding-top: 0;
}
.greeting_profile {
    padding: 20px 0 0;
    text-align: center;
    line-height: 1.5;
    text-align: center;
}
.greeting_text > *:not(:last-child) {
    margin-bottom: 1em;
}
.greeting_profile .position {
    font-size: 14px;
}
.greeting_profile .name {
    font-size: 20px;
}
.greeting_profile .name span {
    font-size: 14px;
}
    .greeting_btn {
        margin: 0 auto;
    }
    .greeting_eng {
     color: rgba(32, 50, 38, 0.1);
    top: 100px;
    right: -30px;
    font-size: 120px; 
    }
    /* 略歴 */
    .top_career_box {
        padding: 10px 10px 10px 20px;
        margin: 30px 0 0 -20px;
        gap: 20px;
    }
    .top_career_box::after {
       top: -1px;
    right: -21px;
    width: 20px;
    height: 1px; 
    }
    .top_career_box.is-active::after {
      height: 1px;
    }
}

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  background: var(--bg-color);
}
.medical::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: var(--line-color);
  top: 328px;
  right: 0;
  transition: 6s cubic-bezier(0.22, 1, 0.36, 1);
}
.medical.is-active::before {
  width: calc((100% - 1200px) / 2 + 1058px);
}
.medical::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: var(--line-color);
  bottom: 160px;
  right: 0;
  transition: 5s cubic-bezier(0.22, 1, 0.36, 1);
}
.medical.is-active::after {
width: calc((100% - 1200px) / 2 + 1058px);
}
.medical .inner {
  display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    align-items: flex-start;
    gap: 115px;
    padding: 160px 0 242px;
}
.medical .top_title {
  text-align: left;
  padding-bottom: 15px;
  margin-top: 25px;
}

.medical .top_title span {
  color: var(--main-color);
}
.medical_text_wrap {
    width: 100%;
}
.medical_text {
    font-family: var(--jp-font02);
    font-weight: 400;
    font-style: normal;
}
.medical_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 740px;
  gap: 20px;
    flex-shrink: 0;
}
.medical_list::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 0;
    background: var(--line-color);
    bottom: -82px;
    left: 142px;
    transition: 5s cubic-bezier(0.22, 1, 0.36, 1);
}
.medical_list.is-active::before {
  height: 120px;
}
.medical_item {
  position: relative;
  z-index: 1;
  width: 360px;
  height: 360px;
  outline: 1px solid var(--line-color);
  outline-offset: -1px;
  opacity: 0;
}

.medical_item:hover .medical_inner {
  background: rgba(32, 50, 38, 0.3);  
}

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

.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s, filter 0.2s;
}
.medical_item:hover .medical_img img {
  transform: scale(1.2);
  filter: blur(5px);
}
.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  text-align: center;
   transition: background 0.2s;
}

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

.medical_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
}

.medical_title h3 {
  color: #fff;
  font-size: 24px;
  font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.06em;
   line-height: 1.5;
   min-height: 60px;
}
.medical_title h3 > span {
  font-size: 19px;
  display: block;
}
.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

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

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 0.5px 25px 0.5px 20px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  font-size: 16px;
  color: #ffffff;
  min-width: 166px;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s, border 0.2s;
font-family: var(--jp-font);
font-weight: 400;
font-style: normal;
}

.medical_btn span::after {
  content: "";
  position: absolute;
  background: url(../images/btn_arrow_medical.png) top left / cover no-repeat;
  width: 8px;
  height: 7px;
  top: 50%;
  right: 10px;
  display: inline-block;
  transform: translateY(-50%);
}

.medical_item:hover .medical_btn span {
  background: transparent;
  border: 1px solid #fff;
}

/* ----- 先頭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%;
} */

/* 印刷プレビュー用 */
@media print {
  .medical_item {
    opacity: 1;
  }
}
/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
.medical::before {
    top: 127px;
    width: 0;
}
.medical.is-active::before {
  width: calc(100% - 100px);
}
.medical::after {
    bottom: 50px;
    width: 0;
}
.medical.is-active::after {
  width: calc(100% - 100px);
}
.medical .inner {
    flex-direction: column;
    padding: 50px 20px 80px;
    gap: 0;
}
.medical .top_title {
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: right;
}
.medical_text {
    padding: 20px 0 20px 20px;
    width: calc(100% - 80px);
    margin-left: auto;
    border-left: 1px solid var(--line-color);
}
  .medical_list {
    width: 100%;
    gap: 15px 10px;
  }
.medical_list::before {
    height: 100px;
    bottom: -30px;
    left: 80px;
}
  .medical_item {
    width: calc(50% - 5px);
    height: 100%;
    aspect-ratio: 1 / 1;
  }

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

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

  .medical_icon {
    width: 50%;
  }

  .medical_title h3 {
    font-size: 14px;
    min-height: 35px;
  }
  .medical_title h3 > span {
    font-size: 10px;
  }
.medical_btn span {
    font-size: 10px;
    min-width: 0;
}

  /* ----- 先頭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%;
  } */
}

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

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

================================================================================================================================== */
.feature {
  background: url(../images/bg_feature.jpg) center / cover no-repeat;
}
.feature .inner {
  padding: 120px 30px 130px 70px;
  max-width: 100%;
}
.feature .top_title {
  margin-bottom: 75px;
}
.feature .top_title .eng {
  color: #fff;
}
.feature .top_title h2 {
  color: #fff;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
}

.feature_item {
  position: relative;
  display: flex;
  max-width: 316px;
  width: calc(20% - 48px);
/*   height: auto; */
  height: fit-content;
  min-height: 540px;
  opacity: 0;
}

.feature_num {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  margin: 0 0 0 !important;
  font-size: 21px;
  color: #fff;
  left: -42px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: var(--en-font02);
font-weight: 300;
font-style: normal;
line-height: 1;
}

.feature_num span {
  font-size: 40px;
  margin-right: -5px;
}
.feature_img {
  position: relative;
}
.feature_img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  outline: 1px solid var(--line-color);
  outline-offset: -1px;
  
}
.feature_inner {
/*   position: absolute;
  top: 42%; */
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  width: 100%;
  padding: 200px 12% 10px;
  color: #ffffff;

}
.feature_inner > p {
  font-size: 0.78vw;
  font-family: var(--jp-font02);
font-weight: 500;
font-style: normal;

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

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  padding-bottom: 20px;
  margin-bottom: 15px !important;
  border-bottom: 1px solid #fff;
}

.feature_title h3 {
  font-size: 1.1vw;
  line-height: 1.75;
  text-align: left;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.03em;
}

.feature_item .btn01 {
  margin-top: auto;
  text-align: center;
}
/* 偶数 */
.feature_item:nth-child(even) {
  margin-top: 60px;
}
/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}

.btnflex_feature .btn01 > * {
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .feature_title h3 {
    font-size: 22px;
  }
}
/* 印刷プレビュー用 */
@media print {
  .feature_item {
    opacity: 1;
  }
}

@media screen and (max-width: 640px) {
    .feature .inner {
        padding: 50px 10px 60px;
    }
    .feature .top_title {
        margin-bottom: 50px;
    }
  .feature_list {
    gap: 15px;
    justify-content: center;
    padding-left: 10px;
  }
  .feature_num {
    font-size: 8px;
    left: -12px;
  }
  .feature_num span {
    font-size: 13px;
    margin-right: -2px;
  }
  .feature_item {
    width: calc(50% - 8px);
    height: 100%;
	min-height: 260px;
    aspect-ratio: 1 / 1.4;
  }
  .feature_inner {
    padding: 70px 10px 10px;
/*     top: 32%; */
  }
  .feature_img {
    position: relative;
    width: 100%;
}
.feature_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top -30px left 0;
}
  .feature_title {
    min-height: auto;
    margin-bottom: 7px !important;
    padding-bottom: 7px;
  }
  .feature_title h3 {
    font-size: 12px;
  }
  .feature_inner > p {
    font-size: 9px;
  }
  .feature_item:nth-child(even) {
    margin-top: 20px;
  }

  /* ---- 横並びボタン ----- */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}
/*==================================================================================================================================

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

==================================================================================================================================*/
.pickup {
  position: relative;
  padding: 160px 0;
  background: #fff;
}
.pickup::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  right: 0;
  top: 420px;
  background: var(--line-color);
  transition: 6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pickup.is-active::before {
  width: 80%;
}
.pickup::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  right: 0;
  bottom: 180px;
  background: var(--line-color);
  transition: 5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pickup.is-active::after {
    width: calc((100% - 1200px) / 2 + 1060px);
}
.pickup .inner {
  width: 100%;
padding: 325px 0 100px;
}

.pickup_list {
  position: relative;
}
.pickup_list::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  right: calc((100% - 1200px) / 2 + 1060px);
  bottom: 20px;
  background: var(--line-color);
    transition: 8s cubic-bezier(0.22, 1, 0.36, 1);
}
.pickup_list.is-active::before {
    height: 120px;
}
.pickup_img_wrap {
    max-width: 1920px;
    margin: 0 auto;
}
.pickup_img {
  position: absolute;
  max-width: 880px;
  width: 45%;
  height: 800px;
  opacity: 0;
}
.pickup_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
} 
.pickup_links_box {
    width: 442px;
    margin-left: auto;
}
.pickup_links_box .top_title {
  text-align: left;
  margin-bottom: 25px;
}
.pickup_inner {
  position: relative;
  z-index: 2;
  width: 442px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}
.pickup_links_wrap {
  background: url(../images/bg_pickup_leaf.png) right bottom no-repeat;
}
.pickup_links_wrap .inner {
  position: relative;
}
.pickup_links_wrap .inner::before {
  display: block;
  position: absolute;
  top: 136px;
  right: -165px;
  content: "PICK UP";
  font-size: 150px;
  color: rgba(32, 50, 38, 0.25);
  font-family: var(--en-font02);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 1;
}
.pickup .pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 15px;
  text-align: center;
}
.pickup .top_title h2 {
  font-size: 36px;
}
.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 200%;
  text-align: left;
}

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

.pickup_text {
  margin: 0 0 27px 0;
  padding: 2px 30px 2px;
  border-left: 1px solid var(--line-color);
    font-family: var(--jp-font02);
    font-weight: 400;
    font-style: normal;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  gap: 22px 20px;
  margin-top: auto;
}

.pickup_link .pickup_btn a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 134px;
  height: 134px;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
  outline: 1px solid;
  outline-color: var(--main-color);
  outline-offset: 0px;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}

.pickup_link .pickup_btn a:hover {
  background: var(--main-color);
  color: #fff;
  animation: light .8s infinite;
}
@keyframes light {
  100% { 
    outline-color: transparent;
    outline-offset: 12px;
  }
}

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

.pickup_item:nth-child(even) .pickup_inner {
  margin: 0 -70px 0 0;
}
@media screen and (max-width:1500px) {
  .pickup_links_wrap .inner::before {
    font-size: 120px;
        right: -40px;
        top: 161px;
  }
}
@media screen and (min-width:1921px) {
  .pickup_img img {
    border-left: 1px solid var(--line-color);
  }
}
/* 印刷プレビュー用 */
@media print {
  .pickup_img {
    opacity: 1;
  }
}
/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
    .pickup {
        padding: 60px 0 100px;
    }
    .pickup::before {
        top: 145px;
    }
    .pickup::after {
        bottom: 60px;
        width: 0;
    }
    .pickup.is-active::after {
      width: calc(100% - 20px);
    }
    .pickup .inner {
    width: 100%;
    padding: 100px 20px 0 40px;
}
    .pickup_img_wrap {
        max-width: 100%;
    }
    .pickup_links_wrap {
        background-size: 90%;
    }
  .pickup_list {
    width: calc(100%);
  }
  .pickup_list::before {
    right: auto;
    left: 20px;
    bottom: -40px;
  }
  .pickup_list.is-active::before {
    height: 500px;
  }
  .pickup_title h2, .pickup_title h3 {
    font-size: 160%;
  }

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

  .pickup_img {
    width: 40%;
    max-width: 100%;
    height: 280px;
    left: 0;
  }

  .pickup_inner {
    width: 100%;
    width: calc(100% - 20px);
    margin: -30px 0 0 auto;
    padding: 30px 20px;
  }
.pickup_links_box {
    width: 100%;
}
  .pickup_link {
    min-height: auto;
    margin: 20px auto 0;
    gap: 10px;
    justify-content: center;
    max-width: 400px;
  }

  .pickup_link .pickup_btn {
    width: fit-content;
  }
  .pickup .top_title h2 {
        margin: 15px 0 15px 42%;
        font-size: 15px;
}
.pickup_text {
        margin-left: 42%;
        padding: 2px 0 2px 10px;
        font-size: 10px;
}
.pickup_links_wrap .inner::before {
        font-size: 39px;
        right: auto;
        top: 52px;
        left: 45%;
}
.pickup_link .pickup_btn {
    width: calc(100% / 3 - 7px);
    max-width: 100px;
}
.pickup_link .pickup_btn a {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    font-size: 13px;
    letter-spacing: 0.06em;
}
  /* 偶数 */
  .pickup_item:nth-child(even) {
    flex-flow: column;
  }

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

  .pickup_item:nth-child(even) .pickup_inner {
    margin: -30px auto 0 0;
  }
}
/* ==================================================================================================================================

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  background: linear-gradient(#fff 401px,#e7e8e7 401px) top left no-repeat;
}
.search .inner {
  padding: 150px 0 90px;
}
.search .top_title {
  margin-bottom: 65px;
}
.search .tab_list {
  gap: 2px;
}

.search .tab_list .tab {
  padding: 15px 20px;
}
.panel_wrap {
  position: relative;
  padding-bottom: 20px;
}
.panel_wrap::before {
  position: absolute;
  content: "";
  background: url(../images/bg_greeting_leaf.png) bottom left / cover no-repeat;
  width: 616px;
    height: 673px;
    left: -163px;
    bottom: -90px;
}
.search .panel {
  position: relative;
  z-index: 1;
  padding: 80px 0 0;
}

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

.search_list li {
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
}

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  color: var(--text-color);
}

.search_child_title_wrap {
  padding-top: 10px;
  display: flex;
  gap: 10px;
}
.search_child_title_wrap::after {
  position: relative;
  right: 0;
  flex-shrink: 0;
  content: "";
  display: block;
  background: url(../images/btn_arrow.png) top left / cover no-repeat;
  width: 22px;
  height: 22px;
  margin-top: 7px;
  transition: right 0.2s;
}
.search_list li a:hover .search_child_title_wrap::after {
  right: -5px;
}
.search_child_title {
  line-height: 1.16;
  font-size: 16px;
  font-family: var(--jp-font);
font-weight: 400;
font-style: normal;
}
.search_child_title span {
  display: block;
  font-size: 24px;
  font-family: var(--en-font02);
font-weight: 300;
font-style: normal;
word-break: keep-all;
    line-height: 1;
    padding-bottom: 5px;
}
.search_list li a:hover::before {
  background: var(--main-color);
}

.search_tab_eng {
  font-size: 150px;
  color: rgba(32, 50, 38, 0.15);
  font-family: var(--en-font02);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.08em;
}
/* ----- 画像あり ----- */
.panel_flex.active {
  display: flex;
  flex-flow: wrap;
  gap: 10px 84px;
}

.search_img {
  width: 596px;
  margin: 0 !important;
  flex-shrink: 0;
  opacity: 0;
}
.search_img img {
    border: 1px solid var(--line-color);
}
.panel_flex .search_list {
  width: calc(100% - 596px - 84px);
  padding-top: 82px;
  opacity: 0;
}

.panel_flex .search_list li {
  width: 240px;
}
.search_child_img {
  width: 240px;
  height: 140px;
  background: var(--main-color);
}
.search_child_img img {
  transition: 0.2s;
  border: 1px solid var(--line-color);
}
.search_list li a:hover .search_child_img img {
  opacity: 0.6;
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
.search {
    background: linear-gradient(#fff 198px, #e7e8e7 198px) top left no-repeat;
}
.search .inner {
    padding: 50px 20px;
}
.search .top_title {
    margin-bottom: 30px;
}
  .search .tab_list {
    flex-flow: wrap;
    gap: 2px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    width: 25%;
    min-height: 50px;
    padding: 7px !important;
    font-size: 11px;
    transform: translate(0, 0) !important;
    line-height: 1.5;
  }
.tab_list li.active {
    height: 60px;
}
  .search .panel {
    padding: 0;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 0;
  }
.search_child_title_wrap::after {
    width: 16px;
    height: 16px;
}
.search_child_title {
    font-size: 13px;
}
.search_child_title span {
    font-size: 10px;
}
.search_tab_eng {
    order: 4;
    font-size: 33px;
}
.panel_wrap {
    padding-bottom: 45px;
}
    .panel_wrap::before {
        width: 360px;
        height: 393px;
        left: -130px;
        bottom: -50px;
    }
  /* ----- 画像あり ----- */
  .search .panel_flex.active {
    gap: 20px;
  }

  .search_img {
    width: 100%;
    height: 220px;
    order: 3;
  }
  .search_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  .panel_flex .search_list {
    width: 100%;
    order: 2;
    margin-bottom: 0;
    padding-top: 10px;
  }

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

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

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

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

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

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

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

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

.column_box dd a {
  color: var(--text-color);
}

.column_box dd a:hover {
  color: var(--main-color);
}

/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
  .column_list {
    gap: 40px;
  }

  .column_box {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  position: relative;
  z-index: 1;
  padding: 0;
  margin-top: -90px;
}

#infinitySlider .splide__list {
  gap: 10px;
}

#infinitySlider .splide__slide {
  width: 400px !important;
  height: 350px;
}
#infinitySlider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line-color);
}
/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 200px !important;
    height: 175px;
  }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
.is-animation {
  animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.feature_item.is-animation:nth-child(1),
.medical_item.is-animation:nth-child(1) {
  animation: slideIn .4s forwards;
}
.feature_item.is-animation:nth-child(2),
.medical_item.is-animation:nth-child(2) {
  animation: slideIn .8s forwards;
}
.feature_item.is-animation:nth-child(3),
.medical_item.is-animation:nth-child(3) {
  animation: slideIn 1.2s forwards;
}
.feature_item.is-animation:nth-child(4),
.medical_item.is-animation:nth-child(4) {
  animation: slideIn 1.6s forwards;
}
.feature_item.is-animation:nth-child(5),
.medical_item.is-animation:nth-child(5) {
  animation: slideIn 2s forwards;
}
@keyframes slideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}