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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
}

section .inner {
  padding: 120px 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: 180%;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.top_title .eng {
  display: inline-block;
  padding-bottom: 10px;
  background: url(../images/front/midashi_bg.jpg) center / cover no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 400%;
  font-family: var(--en-font);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ----------------------------------------------------------------------
  ▼ 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: 850px;
  /* overflow: hidden; */
  background: url(../images/front/shape01.png) bottom 150px left -300px / 448px no-repeat;
}

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mvSlider::before {
    position: absolute;
    content: "";
    width: 230px;
    height: 200px;
    background: url(../images/front/dot_img01.png) top left / contain no-repeat;
    left: 40px;
    bottom: -100px;
    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: calc(100% - 100px);
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
        border-radius: 0 0 100px 100px;
}

.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: 43%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.mvCatch p {
  font-size: 120%;
  text-align: center;
  /* filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff); */
}
.mvCatch p .orange {
    color: #f98900;
}
.mvCatch p .green {
    color: #4eac19;
}
.mvCatch p.catch01 {
    font-size: 220%;
    letter-spacing: 0.12em;
    text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0-2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;  
}
.mvCatch p.catch02 {
    line-height: 1.5;
    padding-top: 5px;
      text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.catch_kamoku {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 24px;
}
.catch_kamoku span {
    display: block;
    color: #fff;
    font-size: 17px;
    padding: 0 15px 3px;
    border-radius: 300px;
    border: 2px solid rgba(255,255,255,0.7);
}
.catch_kamoku span:nth-child(1) {
    background: var(--sub-color);
}
.catch_kamoku span:nth-child(2) {
    background: var(--main-color);
}
.catch_kamoku span:nth-child(3) {
    background: var(--sub-color02);
}
/* ----- コンテンツ ----- */
.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: 85px;
  display: inline-block;
  /* padding: 4px;
  background: rgba(255, 255, 255, 0.4); */
  border-radius: 50%;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: 290px;
  padding: 15px;
  background:  rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  border: 2px solid #ffe2ac;
}
.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: var(--sub-color);
  border-radius: 300px;
  color: #fff;
  font-size: 90%;
  text-align: center;
}

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

/* mv_info */
.mv_info {
  position: absolute;
  left: 0;
  bottom: 85px;
  display: flex;
  gap: 15px;
}
.mv_info a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 180px;
    height: 180px; */
    bottom: 0;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    margin: 0 7px 7px 0;
    padding: 15px 0 0 7px;
    color: #fff;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    /* text-align: center; */
    line-height: 1.7;
    text-align: left;
    transition: bottom 0.2s;
}
.mv_info a:hover {
    bottom: 10px;
}
.mv_info a:nth-child(1) {
    aspect-ratio: 1 / 1;
    background: 
    url(../images/front/mv_info_icon01.png) top 17px center / 35px no-repeat,
    rgba(88, 170, 72, 0.5);
}
.mv_info a:nth-child(2) {
    border-radius: 56% 44% 54% 46% / 46% 54% 44% 56%;
    width: 310px;
    background: 
    url(../images/front/mv_info_icon02.png) top 25px center / 40px no-repeat,
    rgba(222, 142, 33, 0.5);
    padding: 15px 7px 0 20px;
}
.mv_info a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: 
    url(../images/front/icon_bg02.jpg) center / cover no-repeat;
    border-radius: 50%;
    top: 7px;
    left: 7px;
    z-index: -1;
}
.mv_info a:nth-child(2)::before {
background: url(../images/front/icon_bg01.jpg) center / cover no-repeat;
}
.mv_info a::after {
    content: "\f061";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    transition: right 0.2s;
    color: var(--main-color);
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.mv_info a:nth-child(2)::after {
    color: var(--sub-color);
}
/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 500px;
    margin-top: 68px;
  }
  .mvImg {
    width: calc(100% - 20px);
    border-radius: 20px;
  }
  .mvSlider::before {
    width: 94px;
    height: 82px;
    left: -33px;
    bottom: -10px;
  }
  /* ----- スライダーの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 {
    display: none;
  }
  
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
  }
  .mvCatch p.catch01 {
    font-size: 24px;
    text-shadow: 
    1px 1px 0 #FFF, -1px -1px 0 #FFF,
    -1px 1px 0 #FFF, 1px -1px 0 #FFF,
    0px 1px 0 #FFF,  0-1px 0 #FFF,
    -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
  .mvCatch p.catch02 {
    font-size: 14px;
  }
  .catch_kamoku {
    gap: 5px;
  }
  .catch_kamoku span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 1.2;
    padding: 2px 15px 5px;
  }
  /* ----- コンテンツ ----- */
  h1 {
    background: none;
  }
  .mvContents .mv_info {
    display: none;
  }

  /* ----- 開院バナー ----- */
  .sp_only_contents .open_bnr {
    display: none;
  }
  .mvContents .open_bnr {
    left: calc(50% + 10px);
    bottom: 20px;
  }
  .mvContents .open_bnr .open_text {
    margin: 0 0 3px;
  }
  .mvContents .open_bnr .nairankai_tit {
    margin: 0 0 5px;
  }
  .mvContents .open_bnr > * {
        width: 150px;
        height: 150px;
        padding: 20px 10px;
        font-size: 70%;
  }
   .mvContents .open_bnr > * .nairakai_date {
    font-size: 8px;
   }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    position: relative;
    display: block;
    background: none !important;
    z-index: 1;
  }
  .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_info */
  .mv_info {
      position: static;
      width: 100%;    
      gap: 5px;
  }
  .mv_info a {
      width: 50%;
      height: 100%;
      aspect-ratio: 1 / 1;
      margin: auto;
  }
  .mv_info a:nth-child(1) {
      background-size: 25px;
  }
  .mv_info a:nth-child(2) {
      width: 295px;
      height: 196px;
      background-size: 27px;
  }
  .mv_info a::after {
      bottom: 8px;
  }

  .sp_only_contents .mv_info_sp.sp {
    display: none !important;
  }

  .mv_info_sp.sp {
    position: absolute;
    width: 50%;
    max-width: 148px !important;
    left: calc(50% - 150px) !important;
    bottom: 15px !important;   
  }
  .mv_info_sp.sp a {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0 7px 7px 0;
    padding: 40px 0 0 7px;
    color: #fff;
    font-size: 80%;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    /* text-align: center; */
    line-height: 1.7;
    text-align: left;
    transition: bottom 0.2s;
  }
  .mv_info_sp.sp a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/front/icon_bg02.jpg) center / cover no-repeat;
    border-radius: 50%;
    top: 7px;
    left: 7px;
    z-index: -1;
}
  .mv_info_sp.sp a:nth-child(1) {
    aspect-ratio: 1 / 1;
    background: url(../images/front/mv_info_icon01.png) top 17px center / 35px no-repeat, rgba(88, 170, 72, 0.5);
  }
  .mv_info_sp.sp a:hover {
      bottom: 10px;
  }
  .mv_info_sp.sp a:nth-child(1) {
      aspect-ratio: 1 / 1;
      background: 
      url(../images/front/mv_info_icon01.png) top 17px center / 35px no-repeat,
      rgba(88, 170, 72, 0.5);
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */

.top_content_wrap {
    background: 
    url(../images/common/suisai.png) bottom left / 500px,
    var(--bg-color);
}
.clinic {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
}
.clinic::before {
    position: absolute;
    content: "";
    width: 20%;
    max-width: 350px;
    height: 569px;
    background: url(../images/front/leaf_img02.png) bottom left / contain no-repeat;
    bottom: -400px;
    left: 0;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news::before {
    position: absolute;
    content: "";
    width: 9%;
    height: 200px;
    background: url(../images/front/dot_img02.png) top left / contain no-repeat;
    top: -130px;
    left: -62px;
    opacity: 0.8;
}
.clinic .news::after {
    position: absolute;
    content: "";
    width: 16%;
    max-width: 301px;
    height: 569px;
    background: url(../images/front/leaf_img01.png) top right / contain no-repeat;
    top: -165px;
    right: 0;
}
.clinic .news .inner {
    padding: 0 0 100px;
}

.clinic .news .news_wrap {
  position: relative;
  z-index: 1;
  gap: 80px;
  border-radius: 30px;
}

.clinic .news .news_left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.clinic .news .top_title {
  display: flex;
  align-items: flex-end;
  margin: 0;
  gap: 10px;
}
.clinic .news .top_title h2 {
    font-size: 250%;
}
.clinic .news .top_title .eng {
    font-size: 25px;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info {
    position: relative;
}
.clinic .info::before {
    position: absolute;
    content: "";
    width: 129px;
    height: 478px;
    background: url(../images/front/ashirai_img04.png) top left / contain no-repeat;
    top: -130px;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}
.clinic .info::after {
    position: absolute;
    content: "";
    width: 167px;
    height: 494px;
    background: url(../images/front/ashirai_img05.png) bottom right / contain no-repeat;
    right: 0;
    bottom: -150px;
    z-index: -1;
}
.clinic .info .inner {
  display: flex;
  gap: 40px;
  background: #fff;
  padding:70px;
  border-radius: 30px;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}

.clinic .info .inner>* {
  width: calc(50% - 20px);
}
.illustmap img {
    border-radius: 30px;
    border: 2px solid var(--sub-color03);
}
.clinic .info .office_hour .title {
  background: #ffffff;
}

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.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;
  display: block;
}

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

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

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

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

.clinic .info .speciality {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 25px auto 0;
  padding: 0;
}
.clinic .info .speciality span {
    padding: 0 20px;
    width: calc(50% - 4px);
    border-radius: 300px;
    font-size: 90%;
    text-align: center;
}
.clinic .info .speciality span:nth-of-type(1) {
    background: #ffe6b9;
}
.clinic .info .speciality span:nth-of-type(2) {
    background: #e9f4a7;
}
.clinic .info .speciality span:nth-of-type(3) {
    background: #c3f0b0;
}
.clinic .info .speciality span:nth-of-type(4) {
    background: #c8edfb;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}

.clinic .info .googlemap iframe {
  height: 350px;
}

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

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

.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}
/* 現金・各種クレジット決済対応 */
.cash_wrap {
    position: relative;
    z-index: 1;
    margin-top: 15px;
}
.cash_wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 14px);
    border-radius: 10px;
    left: 0;
    bottom: 0;
    background: var(--bg-color);
    z-index: -1;
}
.cash_wrap h3 {
    width: fit-content;
background: #fff;
    color: var(--sub-color);
    border: 2px solid var(--sub-color);
    margin: 0 auto;
    padding: 0 15px;
    border-radius: 100px;
    font-size: 90%;
}
.cash_wrap h4 {
    width: fit-content;
background: var(--sub-color);
    color: #fff;
    margin: 0 auto 10px;
    padding: 0 10px;
    border-radius: 100px;
    font-size: 80%;
}
.cash_img {
    padding: 15px 35px;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.clinic {
    padding: 0 0 60px;
}
  /* ----- お知らせ ----- */
  .clinic .news::after {
  width: 30%;
  top: -96px;
  }
  .clinic .news .inner {
    padding: 0;
  }
  .clinic .news .top_title h2 {
    font-size: 200%;
  }
  .clinic .news .news_wrap {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info {
    padding: 0 10px;
  }
  .clinic .info::before {
    width: 50px;
    top: -68px;
  }
  .clinic .info::after {
    width: 76px;
    bottom: -76px;
  }
  .clinic .info .inner {
    flex-flow: column;
    padding: 50px 20px 70px;
  }

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

.clinic .info .speciality span {
    line-height: 1.3;
    padding: 5px 10px;
}
.clinic .info .speciality span:nth-of-type(1),
.clinic .info .speciality span:nth-of-type(2) {
    width: 100%;
}
  .clinic .info .speciality .title {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
  background: 
  url(../images/front/ashirai_img01.png) top -10px left / 210px no-repeat,
  url(../images/front/ashirai_img03.png) top -10px right / 250px no-repeat;
}

.greeting .inner {
    padding: 120px 0 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_catch {
    width: fit-content;
    position: relative;
    padding: 0 5px 15px;
    font-size: 150%;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
}
.greeting_catch::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    color: #857350;
    mask: url(../images/common/dot_line.svg) top left / 6px repeat-x;
    -webkit-mask: url(../images/common/dot_line.svg) top left / 6px repeat-x;
    background: var(--sub-color);
    left: 0;
    bottom: 0;
}
.greeting_text p {
    line-height: 2.5;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_img img {
    border-radius: 30px;
}
.greeting_profile {
  padding: 20px 0 0;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}
.greeting_profile .position {
  font-size: 130%;
}
.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
    font-size: 70%;
    padding-right: 10px;
}
.greeting_btn {
  margin-top: 50px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.greeting {
    background-size: 100px;
}
.greeting .inner {
    padding: 70px 20px;
}
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_catch {
    font-size: 125%;
  }
  .greeting_text p {
    line-height: 2;
  }
  .greeting_btn {
    margin-top: 40px;
    text-align: center;
  }
  .greeting_img {
    width: 80%;
    margin: 0 auto;
  }
  .greeting_profile {
    font-size: 80%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  padding: 0 50px;
}
.medical .inner {
    max-width: 1820px;
    padding: 120px 50px;
    background: 
    url(../images/front/medical_bg.jpg) center / cover no-repeat;
    /* background: 
    url(../images/common/suisai02.png) top left / 400px,
    #a0d471; */
    border-radius: 60px;
}
.medical .top_title {
  color: #ffffff;
}
.medical .top_title span {
  background: #fff;
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 18px;
}
.medical .top_title h2 {
    width: fit-content;
    color: #857350;
    background: #fff;
    margin: 0 auto;
    padding: 0 20px 3px;
    border-radius: 300px;
    font-size: 130%;
    letter-spacing: 0.15em;
}
.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 18px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(20% - 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 14px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  text-align: center;
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

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

.medical_title h3 {
  color: var(--text-color);
  line-height: 1.5;
  font-size: 120%;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}

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

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

/* 自費診療準備中 */
.medical_item:nth-child(5)::before {
    position: absolute;
    content: "準備中";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 150%;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    border-radius: 30px;
}
.medical_item:nth-child(5) {
    pointer-events: none;
}
/* ----- 先頭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 {
    padding: 0 10px;
}
.medical .inner {
    padding: 70px 20px;
    border-radius: 40px;
}
  .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: 80%;
  }
  .medical_title h3 {
    font-size: 90%;
  }
  .medical_title_eng {
    font-size: 8px;
  }
  /* ----- 先頭2つの設定----- */
  /* .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }
  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 15px 20px 30px;
  }
  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }
  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  } */
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    position: relative;
  background: 
  url(../images/front/ashirai_img01.png) top -10px left / 210px no-repeat,
  url(../images/front/ashirai_img03.png) top -10px right / 250px no-repeat,
  linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1)) top left / 100% 350px no-repeat,
  url(../images/front/nami_bg03.png) top 350px center / 100% no-repeat,
  url(../images/common/suisai.png) bottom left / 400px,
  var(--bg-color02);
  z-index: 1;
}
.feature::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: 
    url(../images/front/dot_img01.png) top 30% left -84px / 200px no-repeat,
    url(../images/front/leaf_img03.png) top 40% right / 193px no-repeat,
    url(../images/front/leaf_img04.png) bottom 16% left -20px / 193px no-repeat,
    url(../images/front/dot_img01.png) bottom 100px right -84px / 200px no-repeat;
    z-index: -1;
}
.feature .inner {
    padding: 140px 0 120px;
}
.feature .top_title .eng {
    padding-bottom: 20px;
}
.feature .top_title h2 {
    font-size: 220%;
}
.feature .top_title h2 .reason_number {
    font-size: 150%;
    color: var(--sub-color);
    line-height: 1;
        font-family: var(--en-font);
    font-weight: 700;
    font-style: normal;
}
.feature .title_small {
    display: block;
    font-size: 30px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 80px 30px;
      position: relative;
    z-index: 1;
        margin-bottom: 40px;
}

.feature_item {
  position: relative;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
}
.feature_item:nth-child(2),
.feature_item:nth-child(5) {
    top: 50px;
}

.feature_num {
    position: absolute;
    margin: 0 0 0 !important;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100px;
    min-height: 100px;
    background: url(../images/front/number_bg.png) center / contain no-repeat;
    font-size: 60%;
    top: 0;
    left: -10px;
    font-family: var(--en-font);
    font-weight: 700;
    font-style: normal;
    z-index: 1;
    color: var(--sub-color);
}
.feature_num span {
  color:#9b865f;
  font-size: 250%;
}
.feature_img_wrap {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    margin: 38px 10px 10px;
}
.feature_img_wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: 
    url(../images/common/suisai02.png) bottom left / 200px,
    var(--sub-color03);
    border-radius: 20px;
    transform: rotate(3deg);
    z-index: -1;
}
.feature_img img {
    border-radius: 12px 12px 0 0;
}
.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 0;
  padding: 20px 10px 10px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 120px;
  padding: 10px;
}
.feature_title h3 {
    color: #745c3d;
    font-size: 130%;
    line-height: 1.6;
    text-align: center;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.feature {
    background:
    url(../images/front/ashirai_img01.png) top -10px left / 100px no-repeat,
  url(../images/front/ashirai_img03.png) top -10px right / 120px no-repeat,
  linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1)) top left / 100% 400px no-repeat,
  url(../images/front/nami_bg03.png) top 400px center / 100% no-repeat,
  url(../images/common/suisai.png) bottom left / 400px,
  var(--bg-color02)
}
.feature::before {
    background-size: 100px;
    background-position:
    top 13% left -20px,
    top 37% right,
    bottom 16% left -8px,
    bottom 25px right -40px;
}
.feature .inner {
    padding: 70px 20px;
}
.feature .top_title {
    margin-bottom: 0;
}
.feature_img_wrap {
    margin: 25px 10px 10px;
}
.feature_num {
    width: 85px;
    min-height: 85px;   
}
.feature_item:nth-child(2),
.feature_item:nth-child(5) {
    top: 0;
}
.feature .top_title h2 {
    font-size: 190%;
}
.feature_title h3 {
    font-size: 120%;
}
.feature .title_small {
    font-size: 17px;
}
  .feature_list {
    gap: 30px;
    margin-bottom: 0;
  }
  .feature_item {
    width: 100%;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 0 !important;
  }
}
/* ==================================================================================================================================

  *病状、症状から探す（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
}
.search::before {
    position: absolute;
    content: "";
    width: 766px;
    height: 1318px;
    mask: url(../images/front/shape02.png) top left / cover no-repeat;
    -webkit-mask: url(../images/front/shape02.png) top left / cover no-repeat;
    background:
    url(../images/common/suisai.png) bottom left / 500px,
    var(--bg-color);
    top: -170px;
    right: 0;
    z-index: -1;
}
.search::after {
    position: absolute;
    content: "";
    width: 167px;
    height: 494px;
    background: url(../images/front/ashirai_img05.png) bottom left / contain no-repeat;
    left: -60px;
    bottom: 150px;
    z-index: -1;
    transform: scaleX(-1)
}
.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.search .tab_list li {
    display: flex;
    flex: 1;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    height: 90px;
    background: #a9a9a9;
    color: #ffffff;
    font-size: 140%;
    cursor: pointer;
    transition: transform 0.2s, padding 0.2s;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    border-radius: 300px;
}

.search .tab_list li.is-active {
    position: relative;
  background: var(--sub-color);
}
.search .tab_list li.is-active::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 20px;
    background: url(../images/front/fukidashi.svg) top left / cover no-repeat;
    bottom: -20px;
    right: 50px;
}
/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 50px 0 0;
}

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

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
  height: fit-content;
}

.search_list a {
position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 20px 15px 20px 50px;
    color: var(--text-color);
    font-size: 110%;
    background: url(../images/common/dot_line.svg)  bottom left / 6px repeat-x;
    font-family: var(--jp-font);
    font-weight: 700;
    font-style: normal;
    line-height: 1.6;
}
.search_list a::after {
    content: "\f061";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    background: var(--main-color);
    width: 24px;
    height: 24px;
    font-size: 10px;
    border-radius: 50%;
    color: #fff;
    transform: translateY(-50%);
    transition: background 0.2s;
}
.search_list a:hover::after {
    background: var(--sub-color);
}
/* ----- 画像あり ----- */
.panel_flex.is-active {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
  flex-direction: row-reverse;
}

.panel_flex .search_img {
  width: calc(40% - 25px);
  margin: 0 !important;
}
.panel_flex .search_img img {
    border-radius: 30px;
}
.panel_flex .search_list {
    grid-template-columns: repeat(2, 1fr);
    width: calc(60% - 25px);
}
@media screen and (max-width: 1400px) {
.search .panel {
    padding: 50px 50px 0;
}
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.search::before {
    width: 306px;
    height: 518px;    
}
.search::after {
    width: 106px;
    height: 325px;
    bottom: 90px;    
}
  .search .tab_list {
    gap: 20px 5px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    width: fit-content;
    min-width: 25%;
    height: auto;
    padding: 10px !important;
    font-size: 100%;
    transform: translate(0, 0) !important;
    flex: auto;
  }
.search .tab_list li.is-active::before {
    width: 20px;
    height: 13px;
    bottom: -13px;
    right: 26px;   
}
  /* ----- パネル ----- */
  .search .panel {
    padding: 0;
    flex-direction: column-reverse;
  }

  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .search_list a {
    min-height: 50px;
    padding: 10px 15px 10px 50px;
  }

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

  .panel_flex .search_img {
    width: 100%;
    height: 200px;
  }
.panel_flex .search_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  .panel_flex .search_list {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
    position: relative;
}
.pickup::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1000px;
    background: 
    url(../images/common/suisai.png) top left / 500px,
    var(--bg-color);
    mask: url(../images/front/nami_bg02.png) top left / 100% no-repeat;
    -webkit-mask: url(../images/front/nami_bg02.png) top left / 100% no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}
.pickup .inner {
  width: 100%;
  max-width: 1920px;
  padding: 30px 0 0;
}
.pickup .top_title h2 {
    display: flex;
    justify-content: center;
    font-size: 150%;
    padding-top: 40px;
}
.pickup .top_title .eng {
    font-size: 300%;
        background: #70614c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pic_tit_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: rgba(245, 170, 30, 0.7); 
    border-radius: 50%;
    line-height: 1.3;
    color: #fff;
}
/* .pic_tit_item:not(.pain) {
    margin-left: -16px;
} */
.pic_tit_item.riha {
    background: rgba(99, 192, 59, 0.7);
}
.pic_tit_item.seikei {
    background: rgba(30, 184, 245, 0.7);
}
.pic_tit_item.pain::after,
.pic_tit_item.riha::after {
    position: absolute;
    content: "×";
    right: -15px;
    z-index: 1;
}
.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}


.pickup_item {
  display: flex;
  align-items: center;
  width: 100%;
}
.pickup_item::after {
    content: "";
    display: block;
    width: 30%;
    height: 100%;
    background: url(../images/front/concept_img_bg.jpg) center / cover no-repeat;
    flex: 1;
    border-radius: 30px 0 0 30px;
}
.pickup_img {
  position: relative;
  z-index: 1;
  height: 100%;
  flex: 1;
}
.pickup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: right top;
    border-radius: 0 30px 30px 0;
}
.pickup_inner {
  position: relative;
  z-index: 2;
  width: 55%;
  margin: 0;
  padding: 50px 5vw;
  flex: 1.5;
  text-align: center;
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 15px;
  text-align: center;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 200%;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
}
.pickup_title h2 span,
.pickup_title h3 span {
    font-size: 120%;
}
.pickup_title h2 span:nth-child(1),
.pickup_title h3 span:nth-child(1) {
    color: var(--sub-color);
}
.pickup_title h2 span:nth-child(2),
.pickup_title h3 span:nth-child(2) {
    color: var(--main-color);
}
.pickup_title .eng {
  color: var(--main-color);
}

.pickup_text {
  margin: 30px 0;
}

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

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

.pickup_btn a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 10px 35px;
    background: var(--sub-color);
    border: 1px solid var(--sub-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: 700;
    font-style: normal;
    border-radius: 300px;
}

.pickup_btn a:hover {
  background: #ffffff;
  color: var(--sub-color);
}
@media screen and (min-width: 1921px) {
 .pickup_img img,
 .pickup_item::after {
    border-radius: 30px;
 }   
} 

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

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

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

.pickup .top_title h2 {
    padding: 0 10px;
    font-size: 17px;
}
.pickup .top_title .eng {
    font-size: 240%;
    padding-bottom: 20px;
}
.pic_tit_item {
    width: calc(100% / 3);
    height: 100%;
    aspect-ratio: 1 / 1;
}
.pic_tit_item.pain::after, .pic_tit_item.riha::after {
    right: -10px;
}

  .pickup_list {
    width: 100%;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: 125%;
    text-align: left;
  }

  .pickup_item {
    flex-flow: column;
    width: 100%;
    align-items: flex-end;
  }
.pickup_item::after {
    flex: auto;
    width: calc(100% - 20px);
    height: 230px;
}
  .pickup_img {
    width: calc(100% - 20px);
    height: 230px;
    margin: 0 auto 0 0;
    flex: auto;
  }
	.pickup_img img {
		object-position: right -20px;
	}
  .pickup_inner {
    width: 100%;
    margin: 0;
    padding: 30px 20px;
  }
.pickup_text {
    text-align: left;
}
  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }

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

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

================================================================================================================================== */
.body-parts {
    position: relative;
    background: 
    url(../images/front/leaf_img05.png) bottom 100px left / 18% no-repeat;
}
.body-parts::before {
    position: absolute;
    content: "";
    mask: url(../images/front/body_parts_bg.png) top center / 1920px no-repeat;
    -webkit-mask: url(../images/front/body_parts_bg.png) top center / 1920px no-repeat;
    background: 
    url(../images/common/suisai.png) top left / 400px,
    var(--bg-color02);
    width: 100%;
    height: calc(100% + 500px);
    top: 0;
    left: 0;
    z-index: -1;
}
@media screen and (min-width: 1921px) {
    .body-parts::before {
    mask-size: 100%;
    -webkit-mask-size: 100%;
    }
}


.body-parts::after {
    position: absolute;
    content: "";
    width: 16%;
    max-width: 301px;
    height: 569px;
    background: url(../images/front/leaf_img01.png) top right / contain no-repeat;
    bottom: -362px;
    right: 0;
}
.body-parts .inner {
    display: flex;
    justify-content: center;
    max-width: 1450px;
    padding: 120px 50px 50px;
}
.body-parts .top_title {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    padding-bottom: 10%;
}
.body-parts .top_title h2 {
    position: relative;
    font-size: 250%;
    line-height: 1.4;
}
.body-parts .top_title h2::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    background: url(../images/front/pain_img.png) center / 50% no-repeat #fff;
    border-radius: 50%;
    z-index: -1;
    top: -92px;
    left: -20px;
}
.body-parts .top_title h2 span {
    font-size: 160%;
    color: var(--sub-color);
    display: block;
}
.body-parts .top_title .eng {
    font-size: 20px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    padding-top: 20px;
    color: var(--text-color);
}
.body-parts .top_title .eng span {
    color: var(--sub-color);
}
.body-parts_wrap {
  position: relative;
  z-index: 1;
  width: 800px;
  flex-shrink: 0;
  margin: 30px auto 0;
  /* background: rgba(217,71,71,1);
  background: rgb(217, 117, 71);
  background: rgb(139, 217, 71); */
}

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

/* ----- 各部位の共通設定 ----- */
.body_parts_list>li {
  position: absolute;
  display: block;
  padding: 0;
  font-family: var(--jp-font);
  font-weight: 700;
  font-style: normal;
}

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

#body-parts1 .body_parts_title::before {
  top: 60%;
  right: -140px;
  width: 130px;
}

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

#body-parts2 .body_parts_title::before {
    top: 52%;
    left: -123px;
    width: 116px;
}

#body-parts3 {
    top: 203px;
    left: 15px;
}

#body-parts3 .body_parts_title::before {
top: 8%;
    right: -126px;
    width: 124px;
    transform: rotate(-23deg);
}

#body-parts4 {
  top: 240px;
  right: 100px;
}

#body-parts4 .body_parts_title::before {
    top: 86%;
    left: -160px;
    width: 150px;
    transform: rotate(-12deg);
}

#body-parts5 {
    top: 408px;
    left: 62px;
}

#body-parts5 .body_parts_title::before {
    top: 22%;
    right: -81px;
    width: 77px;
    transform: rotate(-22deg);
}

#body-parts6 {
  top: 380px;
  right: 100px;
}

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

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

#body-parts7 .body_parts_title::before {
  top: 70%;
  right: -175px;
  width: 160px;
  transform: rotate(10deg);
}

#body-parts8 {
  top: 520px;
  right: 150px;
}

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

/* ----- 各部位のタイトル ----- */
.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;
  border-radius: 300px;
  min-width: 100px;
}

.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-position: top 150px left;
    background-size: 30%;
}
.body-parts::before {
    mask-size: 1400px;
    -webkit-mask-size: 1400px;
}
.body-parts::after {
    width: 30%;
    max-width: 300px;
    height: 456px;
    bottom: -362px;
}
  .body-parts .inner {
    flex-flow: column;
    gap: 0;
    padding: 70px 20px;
  }
.body-parts .top_title {
    padding-bottom: 0;
    margin-bottom: 10px;
}
.body-parts .top_title h2 {
    font-size: 170%;
}
.body-parts .top_title h2::before {
    width: 90px;
    height: 90px;
    top: -42px;
}
.body-parts .top_title .eng {
    font-size: 15px;
    padding-top: 10px;
}
  .body-parts_wrap {
    max-width: 450px;
    width: 100%;
  }

  .body-parts_img {
    width: 40%;
  }

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

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

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

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

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

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

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

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

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

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

  .body_parts_title::before {
    display: none;
  }

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

  *医療コラム（パターン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 {
  position: relative;
  padding: 0;
  background: url(../images/common/suisai.png) bottom left / 400px,
  var(--bg-color02);
  height: 400px;
  display: flex;
  align-items: center;
}
#infinitySlider::before {
    position: absolute;
    content: "";
    width: 250px;
    height: 200px;
    background: url(../images/front/ashirai_img03.png) top right / contain no-repeat;
    right: 0;
    bottom: -195px;
}
#infinitySlider .splide__list {
  gap: 50px;
}
#infinitySlider .splide__slide {
  width: 350px !important;
  height: 350px;
}
#infinitySlider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
#infinitySlider .splide__slide:nth-of-type(even) {
    margin-top: 50px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
#infinitySlider {
    height: 200px;
}
#infinitySlider::before {
 width: 125px;   
}
#infinitySlider .splide__list {
  gap: 30px;
}
  #infinitySlider .splide__slide {
    width: 180px !important;
    height: 180px;
  }
  #infinitySlider .splide__slide:nth-of-type(even) {
    margin-top: 20px;
}
}

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

  *youtube埋め込み

================================================================================================================================== */
#youtube {
    position: relative;
    background: 
    url(../images/front/nami_bg01.png) bottom center / 100% no-repeat,
    linear-gradient(#fff,#fff) top left / 100% 50% no-repeat;
}
#youtube::before {
    position: absolute;
    content: "";
    background: url(../images/front/ashirai_img01.png) top left / contain no-repeat;
    width: 200px;
    height: 210px;
    top: -5px;
    left: 0;
}
#youtube::after {
position: absolute;
    content: "";
    background: url(../images/front/ashirai_img02.png) top right / contain no-repeat;
    width: 282px;
    height: 502px;
    top: -220px;
    right: 0;
}

#youtube .inner {
    position: relative;
    padding: 120px 0 70px;
    z-index: 2;
}
#youtube .top_movie {
    text-align: center;
}
#youtube .top_title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 326px;
    flex-shrink: 0;
    margin: 0;
}
#youtube .top_title::before {
    position: absolute;
    content: "";
    width: 326px;
    height: 310px;
    background: url(../images/front/tit_bg01.png) top left / cover no-repeat;
    z-index: -1;
    opacity: 0.9;
}
#youtube .top_title::after {
    position: absolute;
    content: "";
    width: 326px;
    height: 310px;
    background:
    url(../images/front/bird01.png) top 15px left 10px / 80px no-repeat,
    url(../images/front/leaf01.png) bottom right / 70px no-repeat;
    z-index: -1;
}
#youtube .top_title h2 {
    color: #fff;
}
#youtube .top_title h2::before {
    display: block;
    content: "Video";
    font-size: 20px;
    letter-spacing: 0.12em;
    font-family: var(--en-font);
    font-weight: 700;
    font-style: normal;
}
#youtube iframe,
#youtube .movie_coming {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}
#youtube .movie_coming img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.youtube_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
#youtube {
    background:
    url(../images/front/nami_bg01.png) bottom center / 100% no-repeat,
    linear-gradient(#fff,#fff) top left / 100% 80% no-repeat;
}
#youtube::before {
    width: 90px;
}
#youtube::after {
    width: 135px;
    height: 200px;
    top: -200px;
    right: -31px;
}
#youtube .top_title h2 {
    font-size: 20px;
    padding-bottom: 20px;
}
#youtube .inner {
    padding: 100px 0 120px;
}
#youtube .top_title::before {
width: 180px;
height: 171px;
}
#youtube .top_title::after {
width: 180px;
height: 171px;
background-size: 40px, 40px;
}
.youtube_content {
    flex-flow: column;
    padding: 0 20px;
}
  }

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

  *footer(TOPのみ)

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  mask: url(../images/common/nami02.png) bottom center / 100% no-repeat;
  -webkit-mask: url(../images/common/nami02.png) bottom center / 100% no-repeat;
  background: url(../images/common/suisai.png) bottom left / 500px,
    var(--bg-color);
  top: -200px;
  left: 0;
}
footer::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 300px;
  background: url(../images/common/nami03.png) bottom center / 100% no-repeat;
  top: -300px;
  left: 0;
  z-index: -1;
}

  .footer_info .inner::before {
    position: absolute;
    content: "";
    width: 20%;
    max-width: 420px;
    height: 569px;
    background: url(../images/front/leaf_img05.png) bottom left / contain no-repeat;
    top: -500px;
    left: 0;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.footer_info .inner::before {
width: 35%;
    height: 178px;
    top: -155px;
}

}