@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.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;
  }
}

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

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

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

  *タイトル

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

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 23px;
  font-family: var(--font-jp);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-size: 70px;
  letter-spacing: 0.12em;
  font-weight: 500;
  /* letter-spacing: 0.1em; */
  font-family: var(--font-en);
  background: var(--gra);
  background: -webkit-linear-gradient(to right, #1eaa39, #8dc21f);
  -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: 5px 0 0; */
    font-size: 18px;
  }

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

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

  *メインビジュアル

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* MVのアニメーション  */
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }

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

@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }

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

/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 40%;
	top: 60%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  font-family: var(--font-jp);
  font-weight: 500;
  text-align: center;
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

/* ----- コンテンツ ----- */
.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);
}

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

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

  /* ----- スライダーの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: 50%;
	  top: 75%;
    /* bottom: 20px; */
    display: none;
  }

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

  .mvCatch p {
    font-size: 140%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }

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

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* background: var(--bg-color); */
}

.clinic::before {
  content: "";
  position: absolute;
  width: 20%;
  height: auto;
  aspect-ratio: 854 / 837;
  background: url(../images/front/leaf.png) center / contain no-repeat;
  /* bottom: 200px; */
  left: 0;
  top: 0;
  z-index: -1;
}

.clinic::after {
  content: "";
  position: absolute;
  width: 30%;
  height: auto;
  aspect-ratio: 1330 / 1073;
  background: url(../images/front/tree.png) center / contain no-repeat;
  /* bottom: 200px; */
  right: 0;
  bottom: -5px;
  z-index: -1;
}


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

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

  .news_left {
    flex-shrink: 0;
  }

  .top_title {
    margin: 0 0 30px;

    .eng {
      font-size: 50px;
    }
  }

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

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

    >* {
      width: calc(50% - 20px);
    }

    .googlemap iframe {
      height: 400px;
    }
  }



  .office_hour {
    .title {
      background: var(--main-color);
      color: #ffffff;
      font-family: var(--font-jp);
      font-weight: 500;
      letter-spacing: 0.1em;
    }

    .table_wrapper {
      background: var(--bg-color);
    }
  }

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

      &::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;
      }
    }

    .location {
      padding: 5px 0 5px 50px;

      &::before {
        content: "\f3c5";
      }

      .zipcode {
        margin-right: 10px;
      }
    }

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

      &::before {
        content: "\f3cd";
      }
    }

    .fax {
      margin-top: 15px;
      padding: 5px 0 5px 50px;
      font-size: 30px;
      line-height: 1;

      &::before {
        content: "\f249";
      }
    }
  }

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

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


    .title {
      flex-shrink: 0;
      width: fit-content;
      padding: 10px 30px;
      background: var(--main-color);
      color: #ffffff;
      text-align: center;
      font-family: var(--font-jp);
      font-weight: 500;
      letter-spacing: 0.1em;
    }
  }

  .googlemap iframe {
    height: 400px;
  }

  .list_access {
    margin-top: 5px;
  }

  .calendar_text {
    margin-top: 20px;
  }

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {

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

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

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

      >* {
        width: 100%;
      }
    }

    .speciality {
      flex-flow: column;
      gap: 10px;
      padding: 10px;

      .title {
        width: 100%;
      }
    }
  }

  .clinic {
    &::before {
      width: 40%;
    }

    &::after {
      width: 43%;
    }

  }
}

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

  *ご挨拶（パターン01）

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


.greeting::before {
  content: "";
  position: absolute;
  width: 25%;
  height: auto;
  aspect-ratio: 854 / 837;
  background: url(../images/front/leaf.png) center / contain no-repeat;
  right: 0;
  top: 0;
  z-index: -1;
  transform: scale(-1, 1);
}

.greeting::after {
  content: "";
  position: absolute;
  width: 25%;
  height: auto;
  aspect-ratio: 854 / 837;
  background: url(../images/front/leaf.png) center / contain no-repeat;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: scale(1, -1);
}


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

.greeting_flex {
  display: flex;
  gap: 50px;
  align-items: center;
}

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

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

.greeting_text h3{
	font-size:130%;
	font-family: var(--font-jp);
	    font-weight: 500;
}
.greeting_text>*:not(:last-child) {
  margin-bottom: 2em;
}

.greeting_profile {
  padding: 20px 30px;
  background: var(--main-color);
  color: white;
  font-family: var(--font-jp);
  /* font-weight: 500; */
  line-height: 1.75;
  text-align: center;
  position: absolute;
  bottom: -50px;
  right: -40px;
  border-radius: 20px;
}

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {

  .greeting::before,
  .greeting::after {
    width: 40%;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_profile {
    position: relative;
    bottom: 0;
    right: 0;
    padding: 20px 10px;
    border-radius: 0px 0px 20px 20px;
  }

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


}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  /* background: url(../images/front/medical_bg.jpg) no-repeat center/cover; */
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1)), url(../images/front/medical_bg.jpg) no-repeat center/cover;
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title h2 {
  filter: drop-shadow(0 0 3px #a2a3a381) drop-shadow(0 0 5px #a2a3a381) drop-shadow(0 0 8px #a2a3a381);

}

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

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
}

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

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

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

.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0px 0px 10px rgb(217 217 217);
  /* border-radius: 20px; */
}

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

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

.medical_icon {
  display: grid;
  height: auto;
  aspect-ratio: 1 / 1;
  width: 140px;
  background: #eef4e1;
  place-items: center;
  border-radius: 50%;
  margin: 0px auto 10px !important;
}


.medical_icon img {
  width: 45%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.medical_item:nth-child(3) .medical_icon img,
.medical_item:nth-child(6) .medical_icon img,
.medical_item:nth-child(7) .medical_icon img {
  width: 40%;
}

.medical_item:nth-child(8) .medical_icon img {
  width: 50%;
}


.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
  font-family: var(--font-jp);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--sub-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 500;
}

.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 {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/common/dmy.jpg) no-repeat center/cover;
  } */


  .medical {
    /* background: url(../images/front/sp_medical_bg.jpg) no-repeat center/cover; */
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(../images/front/sp_medical_bg.jpg) no-repeat center/cover;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_icon {
    width: 50%;
  }

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

  .medical_title_eng {
    font-size: 10px;
  }

  /* ----- 先頭2つの設定----- */
  /* .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }

  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 15px 20px 30px;
  }

  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }

  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  } */
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 100px);
  aspect-ratio: 1920 / 3424;
  background: url(../images/front/bg_circle.png) top / contain no-repeat;
  /* bottom: 200px; */
  left: 0;
  top: 100px;
  z-index: 0;

}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 70px 30px;
  position: relative;
  z-index: 1;
}

.feature_item {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.feature_img {
  flex-shrink: 0;
  width: 500px;
  margin-top: -50px;
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 50px 30px 50px;
  background: #ffffff;
}

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 20px;

  h3 {
    color: var(--sub-color);
    font-size: 150%;
    line-height: 1.75;
    font-family: var(--font-jp);
    font-weight: 500;
    letter-spacing: 0.1em;
  }
}

.feature_num {
  margin: 0 0 10px;
  font-size: 120%;
  font-family: var(--font-en);
  font-weight: 500;

  span {
    color: var(--main-color);
    font-size: 140%;
  }
}

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

  .btn01 {
    text-align: center;
  }
}

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

.feature_item:nth-child(even) .feature_inner{
  margin: 0 -50px 0 0;
} */

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

    &::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      aspect-ratio: 1920 / 3424;
      background: url(../images/front/sp_bg_circle.png) top / contain repeat;
      /* bottom: 200px; */
      left: 0;
      top: 50px;
      z-index: 0;
    }
  }


  .feature_list {
    gap: 40px;
  }

  .feature_num {
    margin-bottom: 0;
  }

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

  .feature_img {
    width: 100%;
    margin: 0;
  }

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 30px 20px;
  }

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

    h3 {
      font-size: 22px;
    }
  }

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

  .feature_item:nth-child(even) .feature_inner{
    margin: 0 auto;
  } */
}

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

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

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

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

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

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

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

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

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

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 10px;
}

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

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

/* 追記 */
.feature_img img,
.feature_inner,
.medical_inner,
iframe,
.greeting_img img {
  border-radius: 20px;
}

.speciality,
.table_wrapper {
  border-radius: 10px;
}

.clinic .title {
  border-radius: 5px;
}

/* bnr */
.bnr_flex {
  display: flex;
  position: absolute;
  bottom: 50px;
  right: 0;
  gap: 10px;


  li {
    width: 180px;
    height: auto;
    aspect-ratio: 1 / 1;
    background: #0e9c61;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-jp);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    overflow: hidden;
    position: relative;

    &:nth-child(2) {
      background: #289f3f;
    }

    &:nth-child(3) {
      background: #70a339;
    }
	  
	  &:nth-child(4) {
      background: #86bb4d;
    }

    &::before {
      content: "";
      position: absolute;
      width: 55%;
      height: auto;
      aspect-ratio: 84 / 127;
      background: url(../images/front/bnr_leaf.png) center / contain no-repeat;
      right: -4px;
      bottom: 0px;
      z-index: 0;
      opacity: 0.15;
    }
  }
}

/* 640 */
@media screen and (max-width: 640px) {
  .bnr_flex {
    position: relative;
    bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;

    li {
      width: 48%;
    }
  }

  .greeting_img img {
    border-radius: 20px 20px 0px 0px;
  }

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

  .feature_title {
    h3 {
      font-size: 20px;
    }
  }

}


@media screen and (max-width: 415px) {

  .medical_title {
    h3 {
      font-size: 13px;
    }

    .medical_title_eng {
      font-size: 9px;
    }
  }

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

    .name {
      font-size: 110%;
    }
  }

  .feature_title {
    h3 {
      font-size: 5.5vw;
    }
  }

}