@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
  - *バナーエリア
  - *お悩みの部位から探す
--------------------- */
/* ==================================================================================================================================

  *基本設定

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

section .inner {
  padding: 180px 0 130px;
}

.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;
  position: relative;
  padding-top: 45px;
  z-index: 1;
}

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

.top_title::before{
  position: absolute;
  content: "";
  background: url(../images/front/tit_icon01.svg) no-repeat;
  background-size: contain;
  left: 50%;
  transform: translateX(-50%);
  top: -75px;
  width: 50px;
  height: 50px;
}

.top_title h2 {
  font-size: 150%;
  font-family: var(--font-jp);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 95px;
  font-family: var(--font-en);
  font-weight: 400;
  background: linear-gradient(0deg, rgba(232, 216, 193, 1) 0%, rgba(232, 216, 193, 1) 50%, rgba(212, 191, 163, 1) 50%, rgba(212, 191, 163, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;  
  }


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

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

  .top_title .eng {
    font-size: 48px;
    white-space: nowrap;
    top: 10px;
  }

  .top_title::before{
    width: 40px;
    height: 40px;
    top: -35px;
  }

}

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

  *メインビジュアル

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mvCatch p {
  font-size: 150%;
  filter: drop-shadow(0 0 5px rgba(246, 151, 77, 0.8)) drop-shadow(0 0 5px rgba(246, 151, 77, 0.8)) drop-shadow(0 0 5px rgba(246, 151, 77, 0.6));
  font-family: var(--font-jp);
  font-weight: 400;
  color: #ffffff;
}

.mvCatch p span{
  font-size: 170%;
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

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

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--sub-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
}

.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)*/#62605f;
  font-size: 90%;
  text-align: center;
}

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

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

/* MVバナー */
.mv_bnr{
  position: absolute;
  left: 300px;
  bottom: 50px;
  display: flex;
  gap: 15px;
}


.mv_bnr a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  padding: 30px 15px 15px;
  background: /*rgba(151, 110, 57, 0.8)*/rgb(153 151 149 / 90%);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.8;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
  position: relative;
}

.mv_bnr a::before{
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 100vh;
}

.mv_bnr a:hover{
  transform: translateY(-10px);
  background: rgba(151, 110, 57, 0.7);
}

.mv_bnr .seikei a::after{
  position: absolute;
  content: "";
  background: url(../images/front/mvbnr_icon01.svg) no-repeat;
  width: 28px;
  height: 29px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.mv_bnr .traffic a::after{
  position: absolute;
  content: "";
  background: url(../images/front/mvbnr_icon02.svg) no-repeat;
  width: 38px;
  height: 25px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.mv_bnr .day a::after{
  position: absolute;
  content: "";
  background: url(../images/front/mvbnr_icon03.svg) no-repeat;
  width: 28px;
  height: 26px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

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

/* ----------------------------------------------------------------------
  ▼ 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: 120%;
    line-height: 1.75;
    filter: drop-shadow(0 0 5px rgba(246, 151, 77, 0.8)) drop-shadow(0 0 5px rgba(246, 151, 77, 0.8)) drop-shadow(0 0 5px rgba(246, 151, 77, 0.6));
  }

  .mvCatch p span {
    font-size: 130%;
  }

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

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

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

  /* MVバナー */
  .mv_bnr{
  position: static;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 10px;
  }

   .mv_bnr a{
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
  }

     .mv_bnr a::before{
      border-radius: 5px;
     }

  .mv_bnr .seikei a::after {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
  }
  
  .mv_bnr .traffic a::after{
    top: 50%;
    left: 30px;
    transform: translateY(-50%);  
  }

  .mv_bnr .day a::after{
    top: 50%;
    left: 30px;
    transform: translateY(-50%);     
  }

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(249, 244, 238, 1) 90%, rgba(249, 244, 238, 1) 100%);
}

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

.clinic .news::before{
  position: absolute;
  content: "";
  background: rgba(249,244,238,0.7);
  width: 700px;
  height: 510px;
  left: 0;
  top: -60px;
  z-index: -1;
  border-radius: 0 10px 0 0;
}

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

.clinic .news .news_left {
  flex-shrink: 0;
  width: 25%;
}

.clinic .news .top_title {
  margin: 0 0 30px;
}

.clinic .news .top_title .eng{
  font-size: 54px;
  top: 0px;
}

.clinic .news .top_title::before{
  top: -45px;
}

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

/* ----- 医院概要 ----- */
.clinic .info{
  padding: 0;
}

.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 50px 50px;
/*    background:  url(../images/front/bg_beige.jpg) no-repeat center / cover; */
  border-radius: 10px;
  position: relative;
}
.clinic .info .inner:after{
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/front/bg_beige.jpg) no-repeat center / cover;
	border-radius: 10px;
	position: absolute;
	top: 0px;
	left: 0px;
	filter: grayscale(100%);
	content: "";
	z-index:-1;
}

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

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

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

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

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

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

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

.clinic .info address .location .zipcode {
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    flex-flow: column;
    padding: 20px 20px 50px;
    border-radius: 0;
  }
	.clinic .info .inner:after{
    border-radius: 0;		
	}
  .clinic .info .inner>* {
    width: 100%;
  }

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

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

  .clinic .news .news_left {
    width: 100%;
  }

  .clinic .news::before {
    width: 170px;
    height: 240px;
    top: 0;
    border-radius: 0 0 10px 0;
  }

  .clinic .news .top_title::before {
    top: -30px;
  }
}

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

  *ご挨拶（パターン01）

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

.greeting::before{
  position: absolute;
  content: "";
  background: url(../images/front/bg_beige.jpg) no-repeat center / cover;
  width: 450px;
  height: 800px;
  top: 0;
  right: 0;
}

.greeting .top_title::before{
  background: url(../images/front/tit_icon03.svg) no-repeat;
  width: 50px;
  height: 53px;
}

.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_profile {
  padding: 20px;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
}

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

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

.greeting_profile .name span{
  font-size: 70%;
  margin-right: 1em;
}

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

.greeting_text h3{
  font-size: 150%;
  font-family: var(--font-jp);
  font-weight: 400;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before {
    width: 240px;
    height: 500px;
  }

  .greeting .top_title::before{
    width: 40px;
    height: 42px;
 }
  
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_profile {
    padding: 20px 0;
  }
  
  .greeting_text h3 {
    font-size: 140%;
  } 
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/common/dmy.jpg) no-repeat center/cover;
}

.medical .top_title {
  padding-top: 55px;
}

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

.medical .top_title::before {
  background: url(../images/front/tit_icon04.svg) no-repeat;
  width: 37px;
  height: 55px;
  top: -90px;
}

.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 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
  font-family: var(--font-jp);
  font-weight: 400;
}

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

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

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 35px 7px 25px;
  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;
  border-radius: 100vh;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 14px;
}

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

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

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/common/dmy_sp.jpg) no-repeat center/cover;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_icon {
    width: 70%;
  }

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

  .medical .top_title::before {
    width: 27px;
    height: 40px;
    top: -20px;
  }

  .medical .top_title .eng{
    top: 25px;
  }  
  
  .medical_btn span{
    font-size: 12px;
    padding: 5px 30px 5px 20px;
  }
  
  .medical_title_eng{
    font-size: 10px;
  }

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

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  background: url(../images/front/bg_body03.png) no-repeat left top / 388px 900px, url(../images/front/bg_body04.png) no-repeat right bottom / 403px 900px,url(../images/front/bg_beige02.jpg) no-repeat center / cover;
}

.feature .top_title::before {
  background: url(../images/front/tit_icon05.svg) no-repeat;
  width: 40px;
  height: 51px;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;  
  position: relative;
  filter: drop-shadow(0px 0px 4px #e2d5be);
}

.feature_num {
  margin: 0 0 0 !important;
  font-size: 130%;
  font-family: var(--font-en);
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 0;
  background: url(../images/front/bg_beige_s.jpg) no-repeat center / cover;
  padding: 0 25px 0 20px;
  border-radius: 0 100vh 100vh 0;
}

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

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 20px 30px;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}

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

.feature_title::before{
  position: absolute;
  content: "";
  background: url(../images/front/tit_bone.svg) no-repeat;
  background-size: contain;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
}

.feature_title h3 {
  color: var(--main-color);
  font-size: 130%;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 400;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature{
    background: url(../images/front/bg_body03.png) no-repeat left top / 100px 232px, url(../images/front/bg_body04.png) no-repeat right bottom / 100px 222px, url(../images/front/bg_beige02.jpg) no-repeat center / cover;
  }

  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

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

  .feature .top_title::before {
    width: 33px;
    height: 41px;
  }
}

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

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

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

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

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

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

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

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

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

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
  background: var(--bg-color);
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

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

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

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

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

.top_banner.banner_slider .inner{
  padding: 70px 0;
}

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

.top_banner .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}

/* インプットバナー */
.top_banner .input .banner_slide {
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--bg-color);
}

.top_banner .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_banner .input .banner_slide .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}

.top_banner .input .banner_slide .slide_title {
  margin: 0 auto 10px;
  padding: 5px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 110%;
  line-height: 1.5;
}

.top_banner .input .banner_slide .slide_content {
  font-size: 90%;
}

.top_banner .input a.banner_slide:hover {
  opacity: 0.6;
}

/* ----- グリッドバナー ----- */
.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 13.3333333333px);
}

/* ----- スライダーバナー ----- */
#bannerSlider .splide {
  position: relative;
  z-index: 1;
}

#bannerSlider .splide__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* スライドの設定  */
#bannerSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

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

#bannerSlider .bannerSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  background: var(--main-color);
  border-radius: 50%;
  font-size: 80%;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--sub-color);
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
  z-index: 1;
  display: flex;
  gap: 15px;
  margin: 30px auto 0;
}

#bannerSlider .bannerSlider_page {
  width: 10px;
  height: 10px;
  background-color: #e8e8e8;
  border-radius: 50%;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider_page.is-active {
  background: var(--main-color);
}

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

  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }

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

  #bannerSlider .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }

  /* ページネーション */
  #bannerSlider .bannerSlider_pagination {
    gap: 12px;
    margin: 20px auto 0;
  }

  #bannerSlider .bannerSlider_page {
    width: 8px;
    height: 8px;
  }

  .top_banner.banner_slider .inner {
    padding: 30px 0;
    margin-top: 20px;
  }
}

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

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

================================================================================================================================== */
.body-parts{
  padding-bottom: 170px;
  background: url(../images/front/bg_body03.png) no-repeat left top / 388px 900px ,url(../images/front/bg_body04.png) no-repeat right bottom / 403px 900px,url(../images/front/bg_beige02.jpg) no-repeat center / cover;
}

.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_wrap::before{
  position: absolute;
  content: "";
  background: #ffffff;
  width: 600px;
  height: 600px;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100vh;
  z-index: -1;
}

.body-parts .top_title::before{
  background: url(../images/front/tit_icon02.svg) no-repeat;
  width: 50px;
  height: 53px;
}

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

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

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

#body-parts1 .body_parts_title::before {
    top: 115%;
    right: -186px;
    width: 180px;
    transform: rotate(20deg);
}

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

#body-parts2 .body_parts_title::before {
	top: 115%;
    left: -170px;
    width: 165px;
    transform: rotate(338deg);
}

#body-parts3 {
    top: 270px;
    left: 100px;
}

#body-parts3 .body_parts_title::before {
    top: 105%;
    right: -190px;
    width: 180px;
    transform: rotate(17deg);
}

#body-parts4 {
  top: 410px;
  left: 120px;
}

#body-parts4 .body_parts_title::before {
    top: 50%;
    right: -233px;
    width: 225px;
}

#body-parts5 {
  top: 460px;
  right: 130px;
}

#body-parts5 .body_parts_title::before {
	top: -8%;
    left: -200px;
    width: 197px;
    transform: rotate(19deg);
}

#body-parts6 {
  top: 530px;
  right: 160px;
}

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

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

#body-parts7 .body_parts_title::before {
  top: 3%;
  right: -175px;
  width: 170px;
  transform: rotate(-16deg);
}

#body-parts8 {
  top: 700px;
  left: 50%;
  transform: translateX(-50%);
}

#body-parts9 {
    top: 370px;
    right: 80px;
}

#body-parts9 .body_parts_title::before {
    top: 46%;
    left: -110px;
    width: 100px;
}

/* #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(--sub-color);
  border: 1px solid var(--sub-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(--sub-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%;
}

/* 写真エリア */
.imgarea01{
  display: block;
  width: 100%;
  height: 350px;
  background:  linear-gradient(0deg,rgba(249, 244, 238, 1) 0%, rgba(249, 244, 238, 1) 65%, rgba(254, 247, 240, 1) 65%, rgba(254, 247, 240, 1) 100%);
}

.imgarea01 .img01{
  width: 95%;
  height: 350px;
  margin: 0 0 0 auto;
  background: url(../images/front/dummy_top_img01.jpg) no-repeat center / cover;
  border-radius: 10px 0 0 10px;
}

/* ==============================================
  *SP　お悩みの部位から探す（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {

  .body-parts {
    padding-bottom: 90px;
    background: url(../images/front/bg_body03.png) no-repeat left top / 100px 232px, url(../images/front/bg_body04.png) no-repeat right bottom / 100px 222px, url(../images/front/bg_beige02.jpg) no-repeat center / cover;
  }
  
  .body-parts .inner {
    flex-flow: column;
    gap: 0;
  }

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

  .body-parts_img {
    width: 55%;
  }

  .body-parts .top_title::before {
    width: 40px;
    height: 42px;
  }

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

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

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

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

  #body-parts4 {
    top: /*25*/47%;
    left: 0;
  }

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

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

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

  #body-parts8 {
    top: 120%;
    right: 0;
  }
	
  #body-parts9 {
    top: 30%;
    right: 0;
  }

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

  .body_parts_title::before {
    display: none;
  }

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

  .body-parts_wrap::before {
    width: 280px;
    height: 280px;
  }

  /* 写真エリア */
  .imgarea01{
    height: 160px;
  }

  .imgarea01 .img01{
    height: 160px;
  }
}