@charset "UTF-8";

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

  *基本設定

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

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

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

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 150%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-size: 550%;
  letter-spacing: 0.12em;
  line-height: 1.3;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  background: 
  url(../images/green_bg02.jpg) center / 700px no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  overflow: hidden;
}
.mainvisual::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    background: 
    url(../images/bg_nami02.svg) top left / 350px repeat-x,
    url(../images/suisai.png) bottom left,
    var(--bg-color);
    bottom: 0;
    left: 0;
}
.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: "\f053";
}

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

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

/* ----- MVの画像 ----- */
.mvImg {
  width: calc(100% - 150px);
  max-width: 1700px;
  height: 100%;
  margin: 0 auto;
 border-radius: 500px;
  overflow: hidden;
}

.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;
  top: 48%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 1600px) {
.mvCatch {
    left: 100px;
}
}

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

.mvCatch p {
  font-size: 130%;
  letter-spacing: 0.2em;
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 3;
}
.mvCatch p span {
    background: #fff;
    padding: 20px 5px;
    border-radius: 3px;
}
.mvCatch p span:nth-of-type(2) {
    margin-top: 50px;
}

/* ----- コンテンツ ----- */
.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;
  right: 0;
  bottom: 80px;
  display: inline-block;
  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/suisai02.png) bottom left,var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

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

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

.open_bnr .nairankai_tit {
  display: block;
  width: 80%;
  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;
}


.mv_info_wrap {
    position: absolute;
    display: flex;
    right: 320px;
    bottom: 80px;
    gap: 20px;
    font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.mv_info > * {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/suisai02.png) bottom left,#6ab836;
    text-align: center;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    color: #fff;
    line-height: 1.75;
    z-index: 1;
    overflow: hidden;
}
.mv_info > *::before {
    position: absolute;
    content: "";
    background: url(../images/logo_mark_w.svg) top left / cover no-repeat;
    width: 180px;
    height: 149px;
    left: -5px;
    bottom: 0;
    z-index: -1;
    opacity: 0.15;
}
.mv_info > *:hover {
    color: #fff;
    background: url(../images/suisai02.png) bottom left, var(--sub-color);
}
/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }
.mvImg {
    width: 100%;
    border-radius: 0;
}
  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }

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

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

  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }

  .mvCatch {
        top: auto;
        bottom: -50px;
        display: none;
        left: 0px;
  }

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

  .mvCatch p {
    font-size: 90%;
  }

  .mvContents .mv_info_wrap {
    display: none;
  }

  .sp_only {
    display: block;
    background: none !important;
    padding-bottom: 30px;
  }

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

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
   .mvContents .open_bnr {
    right: 20px;
    bottom: 20px;
   }
   .mvContents .open_bnr > * {
    width: 180px;
    height: 180px;
    font-size: 11px;
  }
  .mvContents .open_bnr .open_text {
    margin: 0 0 5px;
  }
  .mvContents .open_bnr .nairankai_tit {
    margin: 0 0 5px;
  }

  .sp_only .open_bnr {
    display: none;
  }

  .mv_info_wrap {
    position: static;
  }
  .mv_info > * {
    width: 150px;
    height: 150px;
    font-size: 80%;
  }
  .mv_info > *::before {
    width: 130px;
    height: 107px;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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%;
}

/* ----- グリッドバナー ----- */
.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(--text-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）

==================================================================================================================================*/
.clinic {
  position: relative;
  z-index: 1;
  background: 
  url(../images/suisai.png) top left,
  var(--bg-color);
}

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

.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 100px 50px;
}
.clinic .news .inner::before {
    position: absolute;
    content: "";
    background: url(../images/leaf_img_s01.png) top left / cover no-repeat;
width: 117px;
    height: 125px;
    top: 30px;
    left: -43px;
}
.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 .news .btn01 a {
    background: #fff;
    border: none;
    color: #8e8270;
}
.clinic .news .btn01 a:hover {
    background: var(--sub-color);
    color: #fff;
}
.clinic .news .btn01 a::after {
    background: var(--sub-color);
}
.clinic .news .btn01 a:hover::after {
    background: #fff;
}
/* ----- 医院概要 ----- */
.clinic .info {
    padding: 0 50px 130px;
}

.clinic .info .inner {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 100px;
  background: #fff;
  border-radius: 100px;
}
.clinic .info .inner::before {
     position: absolute;
    content: "";
    background: url(../images/leaf_img_s02.png) top left / cover no-repeat;
    width: 150px;
    height: 116px;
    top: -58px;
    right: -16px; 
}
.clinic .info .inner > * {
  width: calc(50% - 20px);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.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 .zipcode {
  margin-right: 10px;
}

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

.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;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: url(../images/suisai.png) bottom left,var(--bg-color);
  border-radius: 20px;
}

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

.clinic .info .office_hour:first-child {
  margin-top: 30px;
}

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

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

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

.clinic .info .googlemap iframe {
  height: 350px;
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 1500px) {
.clinic .news .inner::before {
    top: -42px;
    left: 52px;
}
}
@media screen and (max-width: 640px) {
    .clinic {
        background:
        url(../images/bg_nami02.svg) top left / 150px repeat-x,
        url(../images/suisai.png) top left, var(--bg-color);
    }
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
.clinic .news .inner::before {
     width: 80px;
    height: 84px;
    top: 30px;
    left: 30px; 
}
.clinic .info {
    padding: 0 10px 70px;
}
  .clinic .info .inner {
    flex-flow: column;
    padding: 50px 15px 70px;
    border-radius: 50px;
  }
.clinic .info .inner::before {
    width: 91px;
    height: 70px;
    top: -20px;
    right: 32px; 
}
  .clinic .info .inner > * {
    width: 100%;
  }
.clinic .info address .location .zipcode {
    display: block;
}
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

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

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
}
.greeting::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    mask: url(../images/bg_nami.svg) bottom left / 350px repeat-x;
    -webkit-mask: url(../images/bg_nami.svg) bottom left / 350px repeat-x;
    background: #fff;
    top: -29px;
    left: 0;
    z-index: 1;
}
.greeting::after {
    position: absolute;
    content: "";
    width: calc(100% - 50px);
    height: 72%;
    background: 
    url(../images/suisai.png) top left,
    url(../images/logo_mark_w.svg) bottom left -92px / 970px no-repeat,
    var(--bg-color);
    right: 0;
    bottom: -200px;
    z-index: -1;
    border-radius: 100px 0 0;
}

.greeting .inner {
    padding: 150px 50px 120px;
}
.greeting .inner::before {
    position: absolute;
    content: "";
    background: url(../images/leaf_img02.png) top left / cover no-repeat;
    width: 550px;
    height: 550px;
    top: -150px;
    left: -25px;
    z-index: 1;
    opacity: 0.8;
}

.greeting_box {
  position: relative;
  z-index: 1;
  display: flex;
    align-items: center;
}

.greeting_box:not(:last-child) {
  margin-bottom: 70px;
}
.greeting .top_title {
    flex-shrink: 0;
    width: 440px;
    margin-top: -50px;
}

.greeting .top_title h2 {
    letter-spacing: 0.2em;
}
.greeting .top_title .eng {
    font-size: 500%;
    letter-spacing: 0.06em;
}
.greeting_right {
    position: relative;
    padding-right: 50px;
}


.greeting_img img {
    border-radius: 100px;
}
.greeting_profile {
    position: absolute;
    right: 0;
    bottom: 0;
  padding: 20px;
  background: url(../images/suisai02.png) top left,var(--main-color);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
    border-radius: 60px 60px 60px 0;
    padding: 30px 50px;
}

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

.greeting_profile .name {
  font-size: 150%;
  text-align: left;
  margin: 0 auto;
  width: fit-content;
}
.greeting_profile .name span {
    font-size: 65%;
    margin-right: 10px;
    color: var(--main-color);
    background: #fff;
    padding: 3px 10px;
    border-radius: 300px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_left {
    padding: 0 50px;
}
.greeting_catch {
    position: relative;
    padding-left: 55px;
    font-size: 180%;
    margin-bottom: 40px!important;
    color: #25ae93;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
}
.greeting_catch::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    background: #25ae93;
    top: 28px;
    left: 0;
}
.greeting_btn {
  margin-top: 50px;
  text-align: center;
}
.greeting_under {
    position: relative;
}
.greeting_under::before {
    position: absolute;
    content: "";
    background: url(../images/leaf_img02.png) top right / cover no-repeat;
    width: 440px;
    height: 440px;
    top: -150px;
    right: -25px;
    opacity: 0.8;
    transform: scaleX(-1);
}
.greeting_under_img {
    width: calc(100% - 100px);
    height: 550px;
}
.greeting_under_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 300px 300px 0;
}


/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting::before {
        mask-size: 150px;
        -webkit-mask-size: 150px;
    }
    .greeting::after {
        height: 85%;
        background:
        url(../images/suisai.png) top left,
        url(../images/logo_mark_w.svg) top 320px left -20px / 330px no-repeat,
        var(--bg-color);
    }
.greeting .inner {
    padding: 50px 20px 70px;
}
.greeting .inner::before {
    width: 200px;
    height: 200px;
}
.greeting_box {
    flex-flow: column;
}
.greeting_box:not(:last-child) {
    margin-bottom: 30px;
}
.greeting .top_title {
    width: 100%;
    margin-top: 0;
}
.greeting .top_title .eng {
    font-size: 55px;
}
.greeting_right {
    padding-right: 0;
}
.greeting_img img {
    border-radius: 50px 50px 0 0;
}
.greeting_profile {
    position: static;
    border-radius: 0 0 50px 50px;
    padding: 20px 30px;
}
.greeting_profile .name {
    font-size: 120%;
}

  .greeting_left {
    width: 100%;
    padding: 0;
  }
.greeting_catch {
    font-size: 120%;
    margin-bottom: 20px !important;
}
.greeting_catch::before {
    top: 20px;
}
  .greeting_btn {
    margin-top: 40px;
  }
  .greeting_under::before {
    width: 220px;
    height: 220px;
    top: -46px;
  }
  .greeting_under_img  {
    width: calc(100% - 30px);
    height: 230px;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
    position: relative;
  background: url(../images/suisai02.png) bottom left,#75c8b8;
}
.medical::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 360px;
    background: url(../images/leaf_img03.png) top right / cover no-repeat;
    top: 110px;
    right: -12px;
    opacity: 0.7;
}
.medical::after {
    position: absolute;
    content: "";
    width: 300px;
    height: 360px;
    background: url(../images/leaf_img03.png) top right / cover no-repeat;
    bottom: 95px;
    left: -12px;
    opacity: 0.7;
    transform: scaleX(-1);
}
.medical .top_title {
  color: #ffffff;
}
.medical .top_title .eng {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.medical .top_title span {
  color: var(--main-color);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 60px);
  height: fit-content;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}


/* .medical_item:nth-child(even) {
    margin-top: 30px;
} */
.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 {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 1);
  text-align: center;
  border-radius: 35px;
}
.medical_inner::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: var(--sub-color02);
    bottom: 6px;
    right: 6px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    border-radius: 0 0 30px 0;
        opacity: 0.8;
        transition: 0.2s;
}
.medical_item:hover .medical_inner::before {
    width: 50px;
    height: 50px;
    background: var(--sub-color);
    opacity: 1;
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}


.medical_icon {
    width: 70%;
    max-width: 120px;
    background: #f4f2ed;
    margin: 0 auto 15px !important;
    border-radius: 50%;
    transition: 0.2s;
}
.medical_item:hover .medical_icon {
    transform: rotate(20deg);
}
.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
  line-height: 1.6;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.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: 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::before {
    width: 200px;
    height: 260px;
    top: 134px;
}
.medical::after {
     width: 200px;
    height: 260px;
    bottom: 20px;
}
  .medical_list {
    gap: 15px 10px;
  }

  .medical_item {
    width: calc(50% - 5px);
    height: auto;
    aspect-ratio: none;
  }

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

  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
    border-radius: 25px;
  }
.medical_inner::before {
    width: 30px;
    height: 30px;
    bottom: 4px;
    right: 4px;
    border-radius: 0 0 24px 0;   
}
  .medical_icon {
    width: 50%;
  }

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

  /* ----- 先頭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 {
    position: relative;
  background: 
  url(../images/bg_nami02.svg) top left / 350px repeat-x,
  url(../images/suisai.png) bottom left,
  var(--bg-color);
}
.feature::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    mask: url(../images/bg_nami02.svg) top left / 350px repeat-x;
    -webkit-mask: url(../images/bg_nami02.svg) top left / 350px repeat-x;
    background:
    url(../images/suisai.png) top left,
    var(--bg-color);
    bottom: -29px;
    left: 0;
    z-index: 1;
}
.feature::after {
    position: absolute;
    content: "";
    width: 300px;
    height: 360px;
    background: url(../images/leaf_img03.png) top right / cover no-repeat;
    bottom: -244px;
    left: -12px;
    opacity: 0.7;
    z-index: 1;
    transform: scaleX(-1);
}
.feature .inner::before {
    position: absolute;
    content: "";
    background: url(../images/leaf_img02.png) top left / cover no-repeat;
    width: 430px;
    height: 430px;
    top: -120px;
    left: -25px;
    z-index: 1;
    opacity: 0.8;
}
.feature .inner::after {
    position: absolute;
    content: "";
    background: url(../images/leaf_img02.png) top right / cover no-repeat;
    width: 430px;
    height: 430px;
    top: -120px;
    right: -25px;
    z-index: 1;
    opacity: 0.8;
        transform: scaleX(-1);
}
.feature .top_title h2 {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    z-index: 1;
}
.feature .top_title h2::before {
    position: absolute;
    content: "";
    width: calc(100% + 50px);
    height: 34px;
    background: #fff;
    border-radius: 300px;
    z-index: -1;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.feature .top_title h2 > span {
    font-family: var(--en-font);
    font-weight: 400;
    font-style: italic;
    color: var(--main-color);
    font-size: 210%;
    padding: 0 5px;
    line-height: 1;
}
.feature .top_title .eng {
    line-height: 1;
    padding-bottom: 5px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.feature_item {
    position: relative;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  padding-top: 60px;
}

.feature_num {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px 8px;
    margin: 0 0 0 !important;
    font-size: 150%;
    color: #8e8270;
    font-family: var(--en-font);
    font-weight: 400;
    font-style: italic;
    top: 0;
    left: 0;
}
.feature_num::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 24px;
    background: url(../images/fukidashi.png) bottom left / cover no-repeat;
    bottom: 0;
}
.feature_num span {
  color: var(--sub-color);
  font-size: 140%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 0;
}

.feature_inner > *:not(:last-child) {
  margin-bottom: 30px;
}
.feature_img img {
    border-radius: 80px;
}
.feature_title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 120px;
    margin-bottom: 20px !important;
    background: url(../images/leaf_line.png) bottom left / 100% no-repeat;
    padding: 20px 20px 30px 36px;
}

.feature_title h3 {
  font-size: 130%;
  line-height: 1.6;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
.feature_title h3 > span {
    font-size: 80%;
}
.feature_text {
    padding: 0 20px;
    line-height: 1.75;
}
.feature_item .btn01 {
  margin-top: auto;
  text-align: center;
}
.feature_item .btn01 a {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}
.feature_item .btn01 a:hover {
    background: #fff;
    color: var(--main-color);
}
.feature_item .btn01 a::after {
    background: #fff;
}
.feature_item .btn01 a:hover::after {
    background: var(--main-color);
}
/* ---- 横並びボタン ----- */
.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 (max-width: 640px) {
.feature {
   background: url(../images/bg_nami02.svg) top left / 150px repeat-x, url(../images/suisai.png) bottom left, var(--bg-color);  
}
.feature::before {
    mask-size: 150px;
    -webkit-mask-size: 150px;
}
.feature::after {
    width: 150px;
    height: 180px;
    bottom: -128px;
}
.feature .inner::before,
.feature .inner::after {
    width: 150px;
    height: 150px;
    top: -40px;
}
.feature .top_title {
    margin-bottom: 24px;
}
.feature .top_title h2 {
    font-size: 15px;
}
.feature .top_title h2::before {
    height: 26px;
}
  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
    padding-top: 46px;
  }
  .feature_img img {
    border-radius: 50px;
  }
.feature_num {
    font-size: 18px;
}
.feature_num::before {
     width: 164px;
    height: 20px;   
}
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
    padding: 20px 0 30px;
  }
  
  .feature_text {
    padding: 0;
  }

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

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  background: url(../images/suisai02.png) top left,#75c8b8;
}
.search::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    border-radius: 200px 200px 0 0;
}

.search .inner {
    position: relative;
    z-index: 2;
}
.search .inner::before {
     position: absolute;
    content: "";
    background: url(../images/leaf_img_s02.png) top left / cover no-repeat;
    width: 140px;
    height: 108px;
    top: 105px;
    left: 312px;
}
.search .inner::after {
     position: absolute;
    content: "";
    background: url(../images/leaf_img_s01.png) top left / cover no-repeat;
    width: 117px;
    height: 125px;
    top: 112px;
    right: 364px;
    transform: scaleX(-1);
}
.search .tab_wrap {
    position: relative;
    padding: 0 100px 80px;
}
.search .tab_wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 50px);
    left: 0;
    bottom: 0;
    background: url(../images/suisai.png) top left,var(--bg-color);
    z-index: -1;
    border-radius: 100px;
}
.search .tab_wrap::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 50px);
    left: 0;
    bottom: -10px;
    background: url(../images/green_bg.jpg) top left / cover no-repeat;
    z-index: -1;
    border-radius: 100px;
    z-index: -2;
}
.search .tab_list {
  gap: 10px;
  margin-bottom: 50px;
}

.search .tab_list .tab {
  padding: 15px 20px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  border-radius: 25px;
}
.search .tab_list .tab.active {
    position: relative;
}
.search .tab_list .tab.active::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: var(--main-color);
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.search .panel {
  position: relative;
  z-index: 1;
  background: none;
  padding: 0;
}

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

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

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 30px;
  background: #fff;
  color: var(--text-color);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  border-radius: 300px;
  line-height: 1.6;
}
.search_list li a:hover {
    background: var(--main-color);
    color: #fff;
}
.search_list li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 7px;
    height: 7px;
    background: var(--sub-color);
    transform: translateY(-50%);
    border-radius: 50%;
    transition: right 0.2s, background 0.2s;
}
.search_list li a:hover::before {
    background: #fff;
    right: 15px;
}

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

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

.panel_flex .search_list li {
  width: calc(50% - 10px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
.search::before {
    border-radius: 50px 50px 0 0;
}
.search .inner::before {
    width: 82px;
    height: 63px;
    top: 30px;
    left: 14px;
}
.search .inner::after {
    width: 66px;
    height: 70px;
    top: 63px;
    right: 24px;    
}
.search .tab_wrap {
    padding: 0;
}
.search .tab_wrap::before {
    border-radius: 50px;
}
.search .tab_wrap::after {
    border-radius: 50px;
    height: 100px;
}
  .search .tab_list {
    flex-flow:wrap;
    gap: 15px 7px;
    margin: 0 10px 15px;
  }

  .search .tab_list .tab {
    width: calc(50% - 5px);
    min-height: 70px;
    flex: auto;
    padding: 10px !important;
    font-size: 100%;
    transform: translate(0, 0) !important;
    border-radius: 15px;
  }
.search .tab_list .tab.active::before {
    width: 12px;
    height: 12px;
    bottom: -11px;
}
  .search .panel {
    flex-direction: column-reverse;
    padding: 20px 20px 40px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 10px 40px;
  }

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

  .search_img {
    width: 100%;
  }
.search_img img {
    border-radius: 30px;
}
  .panel_flex .search_list {
    width: 100%;
  }

  .panel_flex .search_list li {
    width: 100%;
  }
}
/*==================================================================================================================================

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

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

.pickup .inner {
  width: 100%;
}
.pickup .top_title {
    position: relative;
    margin-bottom: 80px;
}
.pickup .top_title::before {
    position: absolute;
    content: "";
    width: 700px;
    height: 228px;
    background: url(../images/title_bg_suisai.png) center / cover no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
opacity: 0.3;
}
.pickup .top_title h2 {
    font-size: 220%;
    line-height: 1.7;
}
.pickup .top_title h2 .pickup_accent {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: var(--main-color);
    font-size: 140%;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.pickup .top_title h2 .pickup_accent::before {
    position: absolute;
    content: "";
    width: 55px;
    height: 73px;
    background: url(../images/leaf_img_s03.png) top left / cover no-repeat;
    top: 0;
    left: -65px;
}
.pickup .top_title h2 .pickup_accent::after {
    position: absolute;
    content: "";
    width: 52px;
    height: 65px;
    background: url(../images/leaf_img_s04.png) top left / cover no-repeat;
    top: 3px;
    right: -65px;
}
.pickup .top_title h2 .kakeru {
    font-size: 50%;
    font-weight: 500;
    padding: 0 10px;
    color: var(--text-color);
}
.pickup .top_title .eng {
    position: relative;
    font-size: 200%;
    color: var(--sub-color);
    padding: 0 0 20px;
    margin-bottom: 10px;
    -webkit-text-fill-color: var(--sub-color);
    font-family: var(--en-font);
    font-weight: 400;
    font-style: italic;
}
.pickup .top_title .eng::before {
    position: absolute;
    content: "";
    background: url(../images/fukidashi.png) bottom left / cover no-repeat;
    width: 230px;
    height: 28px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 80px;
}

.pickup_item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 80px
}

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

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 55%;
  margin: 0;
  padding: 0;
}

.pickup_title {
  position: relative;
  z-index: 2;
  background: url(../images/leaf_line.png) bottom left / 100% no-repeat;
  margin: 0 auto 15px;
  padding-bottom: 40px;
  text-align: center;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 170%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
    letter-spacing: 0.12em;
}
.pickup_title h2 span,
.pickup_title h3 span {
    color: var(--sub-color);
}

.pickup_title > span {
    position: relative;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: flex-end;
    width: fit-content;
    margin: 0 auto 30px;
  font-size: 20px;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  color: #8e8270;
  line-height: 1;
}

.pickup_title span > span {
    color: var(--main-color);
    font-size: 130%;
}
.pickup_img {
    position: relative;
    margin-bottom: 50px;
}
.pickup_img::before {
    position: absolute;
    content: "";
    width: calc(100% + 230px);
    height: 100%;
    background: 
    linear-gradient(90deg,rgba(255,255,255,1),rgba(255,255,255,0)),
    url(../images/green_bg.jpg) top left no-repeat;
    bottom: -50px;
    left: -300px;
    z-index: -1;
    border-radius: 80px;
}
.pickup_img img {
    border-radius: 80px;
}
.pickup_text {
  margin: 30px 0;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: auto;
}

.pickup_link .pickup_btn {
  width: calc((100% / 2) - (10px / 2));
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 15px 35px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  font-size: 95%;
  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;
  border-radius: 5px;
}

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

.pickup_link .pickup_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a:hover::before {
  right: 12px;
  background: var(--main-color);
}

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

.pickup_item:nth-child(even) .pickup_img::before {
  left: auto;
  right: -300px;
    background: 
    linear-gradient(-90deg,rgba(255,255,255,1),rgba(255,255,255,0)),
    url(../images/green_bg.jpg) top left no-repeat;
}
/* .pickup_item:nth-child(even) .pickup_title > span {
    margin: 0 auto 30px 0;
} */

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
  .pickup_list {
    width: calc(100%);
    gap: 50px;
  }
.pickup .top_title {
    margin-bottom: 40px;
}
.pickup .top_title::before {
    width: 330px;
    height: 106px;    
}
.pickup .top_title h2 {
    font-size: 18px;
}
.pickup .top_title h2 .kakeru {
    display: block;
    line-height: 1;
}
.pickup .top_title h2 .pickup_accent::before {
    width: 42px;
    height: 55px;
    top: 20px;
    left: -50px
}
.pickup .top_title h2 .pickup_accent::after {
    width: 42px;
    height: 53px;
    top: 20px;
    right: -52px;
}
.pickup .top_title .eng {
    font-size: 125%;
}
.pickup .top_title .eng::before {
    width: 135px;
    height: 16px;    
}
  .pickup_title h2, .pickup_title h3 {
    font-size: 18px;
  }

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

  .pickup_img {
    margin: 0 auto 0 0;
  }
  .pickup_img::before {
    border-radius: 50px;
        bottom: -30px;
  }
.pickup_img img {
    border-radius: 50px;
}
  .pickup_inner {
    width: 100%;
    margin: 0 0 0 auto;
    padding: 0;
  }

  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }

  /* 偶数 */
  .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: 0 auto 0 0;
  }
}
/* ==================================================================================================================================

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

#infinitySlider::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background:
    url(../images/bg_nami02.svg) top left / 350px repeat-x,
    url(../images/suisai.png) bottom left,
    var(--bg-color);
    left: 0;
    bottom: 0;
}
#infinitySlider > div {
    position: relative;
    z-index: 1;
}
#infinitySlider > div::before {
    position: absolute;
    content: "";
    background: url(../images/leaf_img02.png) top left / cover no-repeat;
    width: 500px;
    height: 500px;
    top: -310px;
    left: -25px;
    opacity: 0.8;
    z-index: -1;
    transform: scaleY(-1);
}
#infinitySlider > div::after {
    position: absolute;
    content: "";
    background: url(../images/leaf_img02.png) top left / cover no-repeat;
    width: 500px;
    height: 500px;
    top: -310px;
    right: -25px;
    opacity: 0.8;
    z-index: -1;
    transform: scale(-1,-1);
}
#infinitySlider .splide__list {
  gap: 50px;
}

#infinitySlider .splide__slide {
  width: 450px !important;
}
#infinitySlider .splide__slide:nth-child(even) {
    margin-top: 50px;
}
#infinitySlider .splide__slide img {
    border-radius: 30px;
}
/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
  #infinitySlider > div::before,
  #infinitySlider > div::after {
    width: 150px;
    height: 150px;
        top: -88px;
  }
  #infinitySlider .splide__list {
  gap: 30px;
} 
  #infinitySlider .splide__slide:nth-child(even) {
    margin-top: 30px;
  }
}
