@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
.front {
  overflow: hidden;
  background: var(--bg-color);
}

section .inner {
  padding: 100px 0;
}

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

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }

  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}

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

  *タイトル

================================================================================================================================== */
.top_title {
  margin-top: 25px;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: left;

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 150%;
  text-align: left;
  color: var(--main-color);
  font-family: var(--main-font);
  font-weight: 600;
  line-height: normal;
  margin-top: 20px;
  margin-left: 4px;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 500%;
  font-family: var(--sub-font);
  font-weight: 800;
  line-height: 0;
}

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

  .top_title h2 {
    margin: 5px 0 0;
    /* font-size: 26px; */
  }

  .top_title .eng {
    /* font-size: 18px; */
    font-size: 250%;
  }
}

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

  *ローディング画面

================================================================================================================================== */
.loading_screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: #dbe7d6;
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
}

.loading_screen.loaded {
  opacity: 0;
  pointer-events: none;
}

body.loading-active {
  overflow: hidden;
}

.loading_inner {
  display: flex;
  flex-flow: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

.loading_title {
  width: 48%;
}

.loading_img {
  width: 25%;
  margin-top: -60px;
  animation: loading_logo 1.4s infinite ease-in-out;
}

@keyframes loading_logo {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }

  100% {
    opacity: 1;
  }
}

/* ==============================================
  *SP ローディング画面
============================================== */
@media screen and (max-width: 640px) {
  .loading_title {
    width: 92%;
  }

  .loading_img {
    width: 50%;
    margin-top: -13vw;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 980px;
  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: "\f053";
}

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

/* 各スライダーのボタンは非表示に */
.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 hideImg {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }

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

@keyframes hideTranslate {

  /* 下降 */
  0% {
    transform: translate3d(0, -30px, 0);
  }

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

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

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

.mvCatch p {
  font-size: 220%;
  color: var(--main-color);
  font-family: var(--main-font);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px 10px;
  width: 50%;
  line-height: normal;
}

.mvCatch p span {
  background: #fff;
  padding: 2px 20px 5px;
  border-radius: 5px;
}

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

.opbnr {
  position: absolute;
  bottom: 40px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.opbnr>* {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 260px;
  padding: 15px;
  background: var(--accent-color);
  border-radius: 50%;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  background-size: cover;
}

.opbnr_inner {
  position: relative;
  font-family: var(--main-font);
  color: #fff;
  font-weight: 500;
}

.opbnr_inner::before {
  content: "";
  border: 2px dotted #fff;
  width: 250px;
  height: 250px;
  border-radius: 9999px;
  position: absolute;
}

.opbnr_inner p span {
  font-family: var(--sub-font);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.opbnr_date.-after {
  font-size: 100%;
}

.opbnr_date span {
  font-family: var(--sub-font);
}

.opbnr_date.-before {
  font-size: 100%;
  line-height: 1.5;
}

.opbnr_event {
  color: var(--accent-color);
  max-width: 160px;
  width: 100%;
  font-size: 120%;
  background-color: #fff;
  border-radius: 999px;
  padding: 0 20px 3px;
  margin-bottom: 15px;
  font-weight: 600;
}

.mv-bnr {
  position: absolute;
  left: 290px;
  bottom: 40px;
}

.mv-bnr_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mv-bnr_item {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.mv-bnr_item span {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  padding: 15px;
  background-color: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--main-font);
  font-weight: 600;
}

.mv-bnr_item span::before {
  content: "";
  border: 2px dotted #fff;
  width: 190px;
  height: 190px;
  border-radius: 9999px;
  position: absolute;
}

.opbnr_heading {
  margin: 0 0 10px;
  font-size: 220%;
  font-weight: 800;
  line-height: normal;
}

/* リンクバナー */
.mv_bnr_link{
	display: block;
	position: absolute;
	bottom: 100px;
	right: 0;
}
.mv_bnr_link>*{
	display:inline-block;
	max-width: 350px;
	width: 100%;
	padding: 20px 30px;
	background: var(--sub-color);
	border: 4px solid rgba(255,255,255,0.6);
	background-clip:padding-box;
	border-radius: 10px;
	color: #fff;
	font-size: 160%;
	font-family: var(--main-font);
	font-weight: 600;
	font-style: normal;
	text-align: center;
}
.mv_bnr_link a:after{
	margin-left: 6px;
	color: #fff;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: 900;
	content: "\f08e";
	transition: all 0.2s;
}

.mv_bnr_link>*:hover{
	background: var(--main-color);
	background-clip:padding-box;
	color: #fff;
}

/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.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: inherit;
    bottom: 5%;
    display: none;
  }

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

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

  .mvContents {
    display: none;
  }

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

  .opbnr {
    position: static;
  }

  .mv-bnr {
    position: static;
  }

  .mv-bnr_list {
    width: 100%;
    gap: 10px;
  }

  .mv-bnr_item {
    width: calc(100% / 2);
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;
  }

  .mv-bnr_item span {
    width: 100%;
    height: 100%;
    font-size: 100%;
  }

  .mv-bnr_item span::before {
    width: 96%;
    height: 96%;
  }
	.mv_bnr_link{
		position: static;
		width: 100%;
		max-width: 300px;
		text-align:center;
	}

}

@media screen and (max-width: 360px) {
  .mv-bnr_item span {
    font-size: 80%;
  }
}












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

  *バナーエリア

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

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

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

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

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

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

.top_banner .input a.banner_slide:hover {
  background: #f5f5f5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

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

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

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

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {

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

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

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

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

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

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

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

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

==================================================================================================================================*/
.clinic {
  position: relative;
  z-index: 1;
}

.clinic::after {
  content: "";
  display: block;
  width: 90%;
  height: 360px;
  margin: 0 auto;
  background: url(../images/partition_img01.jpg) no-repeat center / cover;
  background-attachment: fixed;
  border-radius: 20px;
}

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

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

.clinic .news .inner::before {
  content: "";
  position: absolute;
  bottom: 65px;
  left: -30px;
  display: block;
  width: 100px;
  height: 118px;
  background: url(../images/parts_img01.png) no-repeat center / cover;
  transform: rotate(-390deg);
  z-index: 1;
}

.clinic .news .inner::after {
  content: "";
  position: absolute;
  bottom: 125px;
  left: 100px;
  display: block;
  width: 55px;
  height: 61px;
  background: url(../images/parts_img02.png) no-repeat center / cover;
  transform: rotate(-350deg);
  z-index: 1;
}

.clinic .news .news_left {
  flex-shrink: 0;
  position: relative;
}

.clinic .news .news_right {
  width: calc(100% - 350px);
}

.clinic .news .btn01 {
  margin: 50px auto 30px;
  text-align: right;
}

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
}

.clinic .info::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: 80px;
  left: calc(((100% - 1200px) / 2) - 210px);
  width: 680px;
  height: 690px;
  background: url(../images/top_bg03.png) no-repeat center / cover;
}

.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 50px 0 80px;
}

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

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

.clinic .info address>*::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: url(../images/top_bg01.jpg);
  background-position: top -280px right -25px;
  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: 32px;
  line-height: 1;
  font-family: var(--sub-font);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.clinic .info address .tel::before {
  content: "\f3cd";
}

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 32px;
  line-height: 1;
  font-family: var(--sub-font);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--main-color);
}

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  margin: 20px auto 0;
  border: 1px solid var(--main-color);
  border-radius: 4px;
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 15px 30px;
  background: url(../images/top_bg01.jpg);
  background-position: top -290px right -155px;
  color: #ffffff;
  text-align: center;
  border-radius: 3px 0 0 3px;
}

.clinic .info .speciality .detail {
  font-size: 96%;
  padding: 0 15px;
  background: var(--bg-color);
  border-radius: 0 3px 3px 0;
}

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

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

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

.clinic .info .btn01 {
  margin-top: 50px;
  text-align: right;
}

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

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

  .clinic::after {
    background-attachment: inherit;
    width: 90%;
    height: 240px;
  }

  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 40px 20px;
  }

  .clinic .news .inner::before {
    top: 60px;
    bottom: inherit;
    left: inherit;
    right: 20px;
    width: 50px;
    height: 60px;
    transform: rotate(-350deg);
  }

  .clinic .news .inner::after {
    top: 57px;
    bottom: inherit;
    left: inherit;
    right: 73px;
    width: 28px;
    height: 30px;
    transform: rotate(-396deg);
  }

  .clinic .info::before {
    bottom: 40px;
    left: calc(((100% - 1200px) / 2) - -90px);
    width: 680px;
    height: 690px;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
    gap: 20px;
  }

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

  .clinic .info .speciality {
    flex-flow: column;
  }

  .clinic .info .speciality .title {
    width: 100%;
    border-radius: 3px 3px 0 0;
  }

  .clinic .info .speciality .detail {
    padding: 10px;
    /*background: none;*/
    background: var(--bg-color);
    border-radius: 0 0 3px 3px;
  }

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



}


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

  *ご挨拶

================================================================================================================================== */
.greeting .inner {
  padding: 140px 0;
}

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

.greeting_box::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: -20px;
  left: calc(((100% - 1200px) / 2) - 180px);
  width: 1280px;
  height: 1002px;
  background: url(../images/top_bg02.png) no-repeat center / cover;
}

.greeting .top_title {
  position: relative;
}

.greeting .top_title::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -20px;
  display: block;
  width: 123px;
  height: 145px;
  background: url(../images/parts_img01.png) no-repeat center / cover;
  transform: rotate(-340deg);
  z-index: 1;
}

.greeting .top_title::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 131px;
  display: block;
  width: 56px;
  height: 61px;
  background: url(../images/parts_img02.png) no-repeat center / cover;
  transform: rotate(-500deg);
  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_right {
  position: relative;
}

.greeting_right::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 150px;
  display: block;
  width: 65px;
  height: 71px;
  background: url(../images/parts_img02.png) no-repeat center / cover;
  transform: rotate(-390deg);
  z-index: 1;
}

.greeting_text {
  position: relative;
  font-family: var(--main-font);
  color: var(--accent-color);
}

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

.greeting_heading {
  font-family: var(--main-font);
  color: var(--sub-color);
  font-weight: 600;
}

.greeting_heading h3 {
  font-size: 170%;
}

.greeting_heading p {
  font-size: 150%;
}

.greeting_heading span {
  position: relative;
  padding-left: 30px;
}

.greeting_heading span::after {
  content: "";
  background-color: var(--sub-color);
  height: 2px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 0;
}

.greeting_profile {
  color: var(--main-color);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: var(--main-font);
}

.greeting_profile .position {
  font-size: 130%;
  margin-right: 15px;
}

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

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

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

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

.greeting_profile-img {
  max-width: 350px;
  margin: 15px auto 25px;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting .inner {
    padding: 60px 20px;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_btn {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .greeting_box::before {
    bottom: 0;
    left: calc(((100% - 1200px) / 2) - -300px);
    width: 640px;
    height: 1422px;
  }

  .greeting .top_title::before {
    top: 33px;
    right: -10px;
    width: 50px;
    height: 60px;
    transform: rotate(-340deg);
  }

  .greeting .top_title::after {
    top: 29px;
    right: 86px;
    display: block;
    width: 28px;
    height: 30px;
    transform: rotate(-500deg);
  }

  .greeting_right::before {
    top: -72px;
    left: inherit;
    width: 28px;
    height: 30px;
    transform: rotate(-230deg);
    right: 41px;
  }

  .greeting_profile {
    display: inherit;
  }

  .greeting_profile-img {
    max-width: none;
    width: 80%;
    margin: 10px auto 5px;
  }

  .greeting_profile .position {
    margin-right: 0;
  }

  .greeting_heading h3 {
    font-size: 150%;
  }

  .greeting_heading p {
    font-size: 120%;
  }

  .greeting_heading span::after {
    left: 0;
    top: 12px;
  }

}

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  margin-bottom: 100px;
}

.medical::after {
  content: "";
  display: block;
  width: 90%;
  height: 360px;
  margin: 0 auto;
  background: url(../images/partition_img02.jpg) no-repeat center / cover;
/*   background: url(../images/partition_img01.jpg) no-repeat center / cover; */
  background-attachment: fixed;
  border-radius: 20px;
}

.medical .inner {
  padding: 140px 0 120px;
}

.medical .top_title {
  position: relative;
}

.medical .top_title::before {
  content: "";
  position: absolute;
  top: -56px;
  left: 404px;
  display: block;
  width: 92px;
  height: 109px;
  background: url(../images/parts_img01.png) no-repeat center / cover;
  transform: rotate(26deg);
  z-index: 1;
}

.medical .top_title::after {
  content: "";
  position: absolute;
  top: -69px;
  left: 354px;
  display: block;
  width: 44px;
  height: 48px;
  background: url(../images/parts_img02.png) no-repeat center / cover;
  z-index: 1;
  transform: rotate(-30deg);
}

.medical .top_title h2 {
  position: relative;
}

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

.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
  margin-top: 80px;
}

.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;
  text-align: center;
  border-radius: 10px;

}

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

.medical_icon {
  width: 250px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px !important;
  background-image: url(../images/top_bg04.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.medical_icon-inner {
  width: 70%;
  max-width: 80px;
}

.medical_title h3 {
  color: var(--main-color);
  font-size: 120%;
  font-family: var(--main-font);
  font-weight: 600;
}

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

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

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

.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(--accent-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 {
    margin-bottom: 60px;
  }

  .medical::after {
    background-attachment: inherit;
    width: 90%;
    height: 240px;
  }

  .medical .inner {
    padding: 40px 20px 60px;
  }

  .medical_list {
    gap: 20px 10px;
    margin-top: 40px;
    padding: 0;
  }

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

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

  .medical_inner {
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
  }

  .medical_icon {
    max-width: 250px;
    max-height: 200px;
    width: 100%;
    height: 100%;
    background-position: center center;
  }

  .medical_icon-inner {
    width: 100%;
    max-width: none;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .medical_icon-inner img {
    width: 35%;
  }

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

  .medical .top_title::before {
    top: 0;
    left: inherit;
    width: 50px;
    height: 60px;
    transform: rotate(26deg);
    right: 0;
  }

  .medical .top_title::after {
    top: -10px;
    left: inherit;
    width: 28px;
    height: 30px;
    transform: rotate(240deg);
    right: 52px;
  }

  /* ----- 先頭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%;
  } */
}

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

  .medical_icon-inner {
    min-height: 150px;
  }
}

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

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

================================================================================================================================== */
.feature {
  position: relative;
  background: var(--main-color);
  z-index: 1;
}

.feature .inner {
  position: relative;
  padding: 140px 0 120px;
}

.feature .top_title {
  position: relative;
}

.feature .top_title::before {
  content: "";
  position: absolute;
  top: 49px;
  right: 0;
  display: block;
  width: 93px;
  height: 118px;
  background: url(../images/parts_img03.png) no-repeat center / cover;
  transform: rotate(-330deg);
  z-index: 1;
}

.feature .top_title::after {
  content: "";
  position: absolute;
  top: -22px;
  right: 76px;
  display: block;
  width: 67px;
  height: 73px;
  background: url(../images/parts_img04.png) no-repeat center / cover;
  transform: rotate(-94deg);
  z-index: 1;
}

.feature .top_title .eng {
  color: var(--bg-color);
}

.feature .top_title h2 {
  position: relative;
  color: var(--bg-color);
}

.feature .top_title h2::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 130px;
  display: block;
  width: 39px;
  height: 43px;
  background: url(../images/parts_img04.png) no-repeat center / cover;
  transform: rotate(-200deg);
  z-index: 1;
}

.feature .top_title h2::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 161px;
  display: block;
  width: 35px;
  height: 38px;
  background: url(../images/parts_img04.png) no-repeat center / cover;
  transform: rotate(-230deg);
  z-index: 1;
}

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

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

.feature_num {
  margin: 0 0 0 !important;
  position: absolute;
  top: -10px;
  left: -10px;
  width: 90px;
  height: 90px;
  z-index: 2;
}

.feature_num p {
  font-weight: bold;
  color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: var(--sub-color);
  height: 75%;
  padding: 10px 0;
  font-family: var(--sub-font);
  border-radius: 3px;
}

.feature_num p:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 0;
  width: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 26px solid var(--sub-color);
}

.feature_num span.feature_num-text {
  font-size: 70%;
}

.feature_num span.feature_num-num {
  display: block;
  font-size: 225%;
  margin-top: -20px;
}

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

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

.feature_inner p {
  color: var(--bg-color);
  font-size: 100%;
  font-weight: 600;
  font-family: var(--main-font);
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  min-height: 70px;
  margin-bottom: 15px !important;
}

.feature_title h3 {
  font-family: var(--main-font);
  color: var(--bg-color);
  font-size: 150%;
  line-height: 1.75;
  text-align: left;
  font-weight: 600;
}

.feature_list {
  gap: 60px 30px;
  margin-top: 40px;
}

.feature_item .btn01 {
  margin-top: auto;
  text-align: right;
}

.feature_item .btn01>* {
  color: var(--bg-color);
  border-left: 3px dotted var(--bg-color);
  padding: 0 60px 0 15px;
}

.feature_item .btn01>*::before {
  background: var(--bg-color);
  animation: none;
  mask: none;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  top: 12px;
  z-index: 1;
}

.feature_item .btn01>*:hover::before {
  background: var(--sub-color);
}

.feature_item .btn01>*::after {
  background: var(--main-color);
  z-index: 2;
  right: 13px;
  width: 14px;
  height: 7px;
}

.feature_item .btn01>*:hover::after {
  background: var(--bg-color);
}

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

/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}

.btnflex_feature .btn01>* {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .feature .inner {
    padding: 40px 20px 60px;
  }

  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

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

  .feature_title h3 {
    font-size: 130%;
  }

  .feature .top_title::before {
    top: 47px;
    right: 0;
    width: 50px;
    height: 60px;
    transform: rotate(-340deg);
  }

  .feature .top_title::after {
    top: 16px;
    right: 10px;
    width: 18px;
    height: 22px;
    transform: rotate(-94deg);
  }

  .feature .top_title h2::before {
    top: -12px;
    right: 40px;
    width: 24px;
    height: 26px;
    transform: rotate(-200deg);
  }

  .feature .top_title h2::after {
    top: 20px;
    right: 60px;
    display: block;
    width: 28px;
    height: 30px;
    transform: rotate(-230deg);
  }

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

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
}

.search .tab_list {
  gap: 10px;
}

.search .tab_list .tab {
  padding: 15px 20px;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: var(--main-color);
}

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

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

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 30px;
  background: var(--bg-color);
  color: var(--text-color);
}

.search_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  z-index: 2;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.search_list li a:hover::before {
  background: var(--main-color);
}

/* 矢印の背景 */
.search_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.search_list li a:hover::after {
  background: #ffffff;
}

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

.search_img {
  width: calc(50% - 10px);
  margin: 0 !important;
}

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

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

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
  }

  .search .panel {
    padding: 20px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

  .panel_flex .search_list li {
    width: 100%;
  }
}

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

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

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

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

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

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

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

.column_box dd a {
  color: var(--text-color);
}

.column_box dd a:hover {
  color: var(--main-color);
}

/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
  .column_list {
    gap: 40px;
  }

  .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 10px;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}

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

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

==================================================================================================================================*/
.body-parts {
  position: relative;
  background: #b5e447;
  padding: 140px 0 100px;
}

.body-parts .top_title {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.body-parts .top_title h2 {
  color: var(--bg-color);
}

.body-parts .top_title .eng {
  color: var(--bg-color);
}

.body-parts .inner {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  margin: 110px auto 0;
}

.body-parts_wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.body-parts_wrap::after {
  content: "";
  position: absolute;
  top: -210px;
  right: 200px;
  width: 260px;
  height: 130px;
  background: url(../images/parts_img05.png) no-repeat center / cover;
  z-index: -1;
  transform: rotate(-172deg);
}


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

.body-parts_img::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: calc(((100% - 1200px) / 2) - -300px);
  width: 620px;
  height: 632px;
  background: url(../images/top_bg07.png) no-repeat center / cover;
  z-index: -1;
  transform: rotate(115deg);
}


.body-parts_img::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: -340px;
  width: 260px;
  height: 130px;
  background: url(../images/parts_img05.png) no-repeat center / cover;
  z-index: -1;
  transform: rotate(65deg);
}

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

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

#body-parts1 .body_parts_title::before {
/*   top: 240%;
  right: -140px;
  width: 170px; */
	top: 228%;
    right: -126px;
    width: 155px;
  transform: rotate(40deg);
}

#body-parts2 {
/*   top: 90px;
  left: -40px; */
  top: -10px;
  left: -20px;
}

#body-parts2 .body_parts_title::before {
  top: 45%;
  right: -141px;
  width: 120px;
}

#body-parts3 {
/*   top: -40px; */
  top: -33px;
  right: 0px;
}

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

#body-parts4 {
/*   top: 220px; */
  top: 150px;
  left: 150px;
}

#body-parts4 .body_parts_title::before {
  top: 40%;
  right: -120px;
  width: 100px;
  transform: rotate(-10deg);
}

#body-parts5 {
/*   top: 110px; */
  top: 185px;
  right: 70px;
}

#body-parts5 .body_parts_title::before {
/*   top: 200%;
  left: -125px;
  width: 130px;
  transform: rotate(-35deg); */
	top: -3%;
    left: -125px;
    width: 100px;
    transform: rotate(7deg);
}

#body-parts6 {
  top: 310px;
  right: 60px;
}

#body-parts6 .body_parts_title::before {
/*   top: 90%;
  left: -130px;
  width: 120px;
  transform: rotate(-20deg); */
	top: 12%;
    left: -171px;
    width: 150px;
    transform: rotate(10deg);
}

#body-parts7 {
  top: 480px;
/*   left: 170px; */
  left:272px;
}

#body-parts7 .body_parts_title::before {
/*   top: -120%;
  left: 148px;
  width: 120px;
  transform: rotate(130deg); */
	top: -133%;
    left: 60px;
    width: 90px;
    transform: rotate(77deg);
}

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

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

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

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

.body_parts_title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background: var(--accent-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 {
    padding: 40px 20px 80px;
  }

  .body-parts .inner {
    flex-flow: column;
    gap: 0;
    margin: 100px auto 0;
    padding: 0;
  }

  .body-parts_wrap {
    max-width: none;
  }

  .body-parts_wrap::before {
    content: "";
    background: url(../images/top_bg08.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
  }

  .body-parts_wrap::after {
    display: none;
    top: -30px;
    right: -20px;
    width: 160px;
    height: 80px;
    transform: rotate(-148deg);
  }

  .body-parts_img {
    width: 100%;
    text-align: center;
  }

  .body-parts_img img {
/*     width: 60%; */
	width: 55%;
  }

  .body-parts_img::before {
    background: url(../images/top_bg08.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);

    display: none;
  }

  .body-parts_img::after {
    display: none;
    bottom: 30px;
    left: -80px;
    width: 160px;
    height: 80px;
    transform: rotate(45deg);
  }

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

  /* ----- 各部位の位置 ----- */
  #body-parts1 {
/*    top: -70px;
     left: 45%; */
    /* top: -70px;
    left: calc((-20 / 640) * 100vw); */
    top: -40px;
	left: auto;
	right: 0;
  }

  #body-parts2 {
/*     top: -20px; */
	top: -40px;
    left: 0;
  }

  #body-parts3 {
/*     top: 33px; */
	top: 25px;
    left: 0;
    right: inherit;
  }

  #body-parts4 {
    top: 90px;
    left: 0;
  }

  #body-parts5 {
    top: 35%;
    right: 0;
    left: inherit;
  }

  #body-parts6 {
    bottom: 30px;
    right: 0;
    top: inherit;
  }

  #body-parts7 {
    top: inherit;
/*     left: 30%;
    bottom: -30px; */
	left: 38%;
	bottom: 0;
  }

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

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

  .body_parts_title::before {
    display: none;
  }

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

/* 下層ページのみ */

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