@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;
  }

  .front h1{
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}

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

  *アニメーション

================================================================================================================================== */
@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: 180%;
  font-family: var(--font-jp);
  font-weight: 700;
  color: #425767;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 80px;
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 0.05em;
  background: radial-gradient(circle, rgba(0, 121, 195, 1) 50%, rgba(92, 178, 204, 1) 100%);
  -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: 22px;
  }

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

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

  *メインビジュアル

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

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

.mvSlider::before {
    position: absolute;
    content: "";
    background: url(../images/front/mv_under_wave.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    padding-top: 10.83%;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    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: "\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%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
  font-family: var(--font-jp);
  font-weight: 700;
  color: #425767;
}

/* ----- コンテンツ ----- */
.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(66, 184, 211, 0.3);
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  padding: 15px;
  background: rgba(66, 184, 211, 0.8);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  position: relative;
  padding-top: 48px;
}

.open_bnr > *::before{
  position: absolute;
  content: "";
  background: url(../images/front/openbnr_icon.png) no-repeat top / contain;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 46px;
}

.mv_bnr > div a:hover{
  opacity: 0.7;
}

.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;
}

.mv_bnr{
  position: absolute;
  right: 0;
  bottom: 80px;
  display: flex;
  align-items: end;
  gap: 15px;
}

.mv_bnr > div{
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv_bnr > div a{
  background: linear-gradient(0deg,rgba(0, 121, 195, 0.8) 50%, rgba(92, 178, 204, 0.8) 100%);
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 120%;
  border-radius: 10px;
  position: relative;
}

.mv_bnr > div a::before{
  position: absolute;
  content: "";
  background: url(../images/front/mvbnr_arrow.png) no-repeat;
  background-size: contain;
  width: 35px;
  height: 17px;
  right: 10px;
  bottom: 10px;
}

.mv_bnr .pickup a{
  width: 260px;
  height: 150px;
  background: linear-gradient(0deg,rgba(247, 163, 17, 0.8) 0%, rgba(224, 183, 16, 0.8) 100%)!important;
}

.mv_bnr .pickup a::before{
  background: url(../images/front/mvbnr_arrow2.png) no-repeat;
}

.mv_bnr > div a span{
  font-size: 150%;
  display: contents;
}

/* ----------------------------------------------------------------------
  ▼ 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: 20px;
    display: none;
  }

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

  .mvCatch p {
    font-size: 130%;
    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: 10px;
  }

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

  .open_bnr > *::before {
    top: 30px;
    left: 50px;
    width: 50px;
    height: 38px;
  }

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

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

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

  .mv_bnr{
    position: static;
    display: block;
    width: 100%;
  }

  .mv_bnr > div{
    margin-bottom: 10px;
  }

  .mv_bnr > div a{
    width: 100%;
    height: 80px;
  }

  .mv_bnr .pickup a{
    width: 100%;
    height: 120px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  background: url(../images/front/bg_leaf.png) no-repeat,var(--bg-color);
  background-size: 900px 661px;
  background-position: left top;
  position: relative;
  padding-bottom: 120px;
}

.clinic::before{
  position: absolute;
  content: "";
  background: url(../images/front/clinic_under_wave.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  padding-top: 11.67%;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* .clinic::after{
  position: absolute;
  content: "";
  background: url(../images/front/bg_leaf.png) no-repeat;
  background-size: contain;
  width: 900px;
  height: 491px;
  left: 0;
  bottom: 50px;
} */

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

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

/* ----- お知らせ ----- */
.news{
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
}

.clinic .news .top_title h2 {
  font-size: 170%;
}

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

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

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
  border-radius: 20px;
}

/* 診療科目 */
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
  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 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;
  font-family: var(--font-en);
  font-weight: 400;
}

.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(--font-en);
  font-weight: 400;
}

.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: 10px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic {
    background-size: 300px 220px;
    background-position: left top;
    position: relative;
    padding-bottom: 0;
  }

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

  .clinic .news .top_title h2 {
  font-size: 20px;
  }

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

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

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
  background: url(../images/front/ill_town.png) no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
}

.greeting::before{
  position: absolute;
  content: "";
  background: url(../images/front/bg_leaf02.png) no-repeat;
  background-size: contain;
  width: 800px;
  height: 707px;
  right: 0;
  top: 60px;
} 

.greeting .inner{
  padding-bottom: 200px;
}

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

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

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

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

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

.greeting_text h3{
  font-size: 140%;
  font-family: var(--font-jp);
  font-weight: 700;
  color: var(--sub-color);
}

.greeting_profile {
  padding: 20px;
  background: radial-gradient(circle, rgba(0, 121, 195, 1) 50%, rgba(92, 178, 204, 1) 100%);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  margin-top: 10px;
  border-radius: 20px;
  font-family: var(--font-jp);
  font-weight: 400;
  }

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

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

.greeting_profile .name span{
  font-size: 70%;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting {
    background: url(../images/front/ill_town.png) no-repeat;
    background-size: 200% auto;
    background-position: left 50% bottom;
  }

  .greeting::before {
    width: 250px;
    height: 222px;
    right: 0;
    top: 30px;
  }

  .greeting .inner {
    padding: 50px 20px 90px;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_text h3{
    margin: 20px 0 30px!important;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: url(../images/front/bg_medical.jpg) no-repeat center / cover;
  position: relative;
}

.medical::before {
    position: absolute;
    content: "";
    background: url(../images/front/clinic_under_wave.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    padding-top: 11.67%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(-1, -1);
    z-index: 1;
}

.medical::after {
    position: absolute;
    content: "";
    background: url(../images/front/medical_under_wave.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    padding-top: 10.83%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.medical .inner{
  padding: 200px 0 250px;
}

.medical .top_title {
  color: #ffffff;
}

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

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

.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::before{
  position: absolute;
  content: "";
  background: rgba(255,255,255,0);
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 15px;
  box-shadow: 0 0 5px var(--main-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.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: linear-gradient(0deg,rgba(0, 121, 195, 0.7) 50%, rgba(92, 178, 204, 0.7) 100%);
  text-align: center;
  border-radius: 20px;
  transition: background 0.2s;
}

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

.medical_item:hover .medical_inner {
  background: linear-gradient(0deg,rgba(0, 121, 195, 0.2) 50%, rgba(92, 178, 204, 0.2) 100%);
}

.medical_icon {
  width: 70%;
  max-width: 100px;
  margin: 0 auto 15px !important;
  background: rgba(255, 255, 255, 1);
  border-radius: 100vh;
}

.medical_title h3 {
  color: var(--text-color);
  font-size: 140%;
  font-family: var(--font-jp);
  font-weight: 700;
  color: #ffffff;  
}

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

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

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

.medical_btn span::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

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

/* ----- 先頭2つの設定----- */
/* .medical_item:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  min-height: 350px;
}

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

.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: url(../images/front/bg_medical.jpg) no-repeat center / cover;
  }

  .medical .inner {
    padding: 70px 20px;
  }

  .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: 110%;
  }

  .medical_title_eng {
    font-size: 10px;
  }

  .medical_img::before {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  /* ----- 先頭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）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
}

.feature::before{
  position: absolute;
  content: "";
  background: url(../images/front/bg_leaf03.png) no-repeat;
  background-size: contain;
  width: 750px;
  height: 690px;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.5;
}

/* .feature::after {
  position: absolute;
  content: "";
  background: url(../images/front/clinic_under_wave.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  padding-top: 11.67%;
  bottom: -223px;
  left: 50%;
  transform: translateX(-50%) scale(-1, -1);
  z-index: 1;
} */

.feature .inner{
    padding-bottom: 150px;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  background: #ffffff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 8px #c3d9de;
  position: relative;
}

.feature_num {
  margin: 0 0 0 !important;
  font-size: 150%;
  font-family: var(--font-en);
  font-weight: 400;
  position: absolute;
  left: 30px;
  top: -30px;
  background: linear-gradient(0deg,rgba(0, 121, 195, 0.8) 50%, rgba(92, 178, 204, 0.8) 100%);
  border-radius: 100vh;
  width: 90px;
  height: 90px;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.feature_num span {
  font-size: 140%;
}

.feature_num::before{
  position: absolute;
  content: "";
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100vh;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);  
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 20px 30px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 20px;
}

.feature_title h3 {
  color: var(--main-color);
  font-size: 140%;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.feature_title h3::before{
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background: radial-gradient(circle, rgba(0, 121, 195, 1) 50%, rgba(92, 178, 204, 1) 100%);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature::before {
    width: 270px;
    height: 223px;
  }

  .feature .inner {
    padding-bottom: 70px;
  }

  .feature_list {
    gap: 50px;
  }

  .feature_item {
    width: 100%;
  }

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

  .feature_num {
    font-size: 120%;
    left: 20px;
    top: -30px;
    width: 70px;
    height: 70px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  
}

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

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

.column .column_box dt a {
  display: block;
  padding: 12px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  border-radius: 10px;
}

.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;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup .inner {
  width: 100%;
  max-width: none;
  padding: 10px 0 0;
}

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

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

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

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 15px;
  padding: 0 30px 0 20px;
  color: var(--main-color);
  border-left: 5px solid;
}

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

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 150%;
  font-family: var(--font-jp);
  font-weight: 700;
}

.pickup_title .eng {
  font-size: 80%;
  font-family: var(--font-en);
  font-weight: 400;
}

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

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

.pickup_text {
  margin: 30px 0;
}

.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  height: 100%;
  margin-top: auto;
}

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

.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 35px;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #ffffff;
  font-size: 95%;
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  border-radius: 10px;
}

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

/* ----- 奇数 ----- */
.pickup_item:nth-child(odd) {
  padding: 70px 50px 70px 50px;
  background: var(--bg-color);
}

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

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

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

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  padding: 70px 50px 70px 50px;
  background: #eeeff7;
}

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

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

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

.pickup_item:nth-child(even) .pickup_btn a {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

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

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

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

  .pickup_title h2, .pickup_title h3 {
    font-size: 130%;
    line-height: 1.5;
  }

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

  .pickup .top_title h2 {
    font-size: 150%;
  }

  .pickup_list {
    width: 100%;
  }

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

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

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

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

  .pickup_btn {
    width: 100%;
  }
}

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

  *お悩みの部位から探す - 追加コンテンツ

================================================================================================================================== */
.body-parts{
  position: relative;  
  background: url(../images/front/bg_leaf04.png) no-repeat;
  background-position: left  bottom;
  background-size: 630px 362px;
}

.body-parts::before{
  position: absolute;
  content: "";
  background: var(--bg-color);
  width: 900px;
  height: 900px;
  border-radius: 100vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;  
}

.body-parts::after{
  position: absolute;
  content: "";
  background: url(../images/front/bg_leaf.png) no-repeat;
  background-size: contain;
  width: 690px;
  height: 509px;
  right: -120px;
  top: 10px;
  transform: scale(-1,1);
  z-index: -1;  
}

.body-parts_wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  /* background: rgba(217,71,71,1);
  background: rgb(217, 117, 71);
  background: rgb(139, 217, 71); */
}

/* ----- 体の画像 ----- */
.body-parts_img {
  max-width: 350px;
  margin: 0 auto;
}

/* ----- 各部位の共通設定 ----- */
.body_parts_list>li {
  position: absolute;
  display: block;
}

/* ----- 各部位の位置 ----- */
#body-parts1 {
  top: 125px;
  left: 130px;
}

#body-parts1 .body_parts_title::before {
  top: 54%;
  right: -137px;
  width: 124px;
}

#body-parts2 {
  top: 95px;
  right: 150px;
}

#body-parts2 .body_parts_title::before {
  top: 50%;
  left: -168px;
  width: 155px;
}

#body-parts3 {
  top: 260px;
  left: 80px;
}

#body-parts3 .body_parts_title::before {
  top: 30%;
  right: -180px;
  width: 170px;
  transform: rotate(-10deg);
}

#body-parts4 {
  top: 220px;
  right: 90px;
}

#body-parts4 .body_parts_title::before {
  top: 90%;
  left: -140px;
  width: 130px;
  transform: rotate(-20deg);
}

#body-parts5 {
  top: 430px;
  left: -10px;
}

#body-parts5 .body_parts_title::before {
  top: 11%;
  right: -74px;
  width: 67px;
  transform: rotate(-35deg);
}

#body-parts6 {
  top: 440px;
  right: 76px;
}

#body-parts6 .body_parts_title::before {
  top: -42%;
  left: -189px;
  width: 190px;
  transform: rotate(30deg);
}

#body-parts7 {
  top: 580px;
  left: 150px;
}

#body-parts7 .body_parts_title::before {
  top: 0%;
  right: -145px;
  width: 140px;
  transform: rotate(-20deg);
}

#body-parts8 {
  top: 610px;
  right: 20px;
}

#body-parts8 .body_parts_title::before {
  top: 55px;
  left: -190px;
  width: 181px;
  transform: rotate(-20deg);
}

/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  font-size: 130%;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  border-radius: 5px;
}

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

.body_parts_title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background: var(--main-color);
}

/* -----　部位ごとの病状・病名　----- */
.body-parts_search {
  margin: 10px 0 0;
}

.body-parts_search li {
  line-height: 1.5;
}

.body-parts_search li:not(:last-child) {
  margin-bottom: 5px;
}

.body-parts_search li a {
  font-size: 95%;
}

/* ==============================================
  *SP　お悩みの部位から探す（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  .body-parts {
    background-size: 250px 144px;
  }

  .body-parts::before {
    width: 350px;
    height: 350px;
    top: 54%;
  }
  
  .body-parts::after {
    width: 300px;
    height: 222px;
    right: -70px;
  }

  .body-parts .inner {
    flex-flow: column;
    gap: 0;
  }

  .body-parts_wrap {
    max-width: 450px;
  }

  .body-parts_img {
    width: 55%;
  }

  /* ----- 各部位の共通設定 ----- */
  .body_parts_list>li {
    padding: 8px;
  }

  /* ----- 各部位の位置 ----- */
  #body-parts1 {
    top: 30px;
    left: 0;
  }

  #body-parts2 {
    top: 0;
    right: 0;
  }

  #body-parts3 {
    top: 25%;
    left: 0;
  }

  #body-parts4 {
    top: 25%;
    right: 0;
  }

  #body-parts5 {
    top: 55%;
    left: 0;
  }

  #body-parts6 {
    top: 50%;
    right: 0;
  }

  #body-parts7 {
    top: 75%;
    left: 0;
  }

  #body-parts8 {
    top: 75%;
    right: 0;
  }

  /* ----- 各部位のタイトル ----- */
  .body_parts_title {
    padding: 7px 15px;
    font-size: 90%;
  }

  .body_parts_title::before {
    display: none;
  }

  /* -----　部位ごとの病状・病名　----- */
  .body-parts_search {
    display: none;
  }
}

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 10px;
}

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

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

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