@charset "UTF-8";

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

  *基本設定

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

section .inner {
  max-width: 1500px;
  padding: 120px 50px;
}

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

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

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

  *タイトル

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

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

.top_title h2 {
  letter-spacing: .1em;
  font-size: 24px;
}

.top_title.title_left h2 {
  padding-left: 2px;
}

.top_title h2 span {
  padding: 0 5px;
  color: var(--sub-color);
  letter-spacing: .1em;
  line-height: 1;
  font-size: 160%;
  font-family: var(--font-en);
  font-weight: 500;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--main-color);
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 72px;
  font-family: var(--font-en);
  font-weight: 500;
}

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

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

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

  .top_title .eng {
    font-size: min(14vw, 64px);
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: calc(100vh - 240px);
  min-height: 700px;
  max-height: 790px;
  padding: 0 80px;
  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#sliderBtn_prev {
  left: 20px;
}

.mvSlider .sliderBtn#sliderBtn_next {
  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#sliderBtn_prev span::before {
  content: "\f053";
}

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

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

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

/* .mvImg::before {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(101 188 142 / .3);
  border-radius: 20px;
} */

.mvImg .splide__track {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

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

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

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0px;
  left: 0px;
  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%);
}

.mvCatch .inner {
  position: relative;
  max-width: calc(100% - 160px);
  z-index: 1;
}

.mvCatch p {
  letter-spacing: 0.12em;
  color: rgb(255, 255, 255);
  font-size: 230%;
  font-family: var(--font-jp);
  font-weight: 500;
  text-shadow: 0 0 20px var(--main-color), 0 0 15px var(--main-color), 0 0 10px var(--main-color), 0 0 5px var(--main-color), 0 0 2px var(--main-color);
}

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

.mvContents .inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 100px);
  max-width: unset;
  height: 100%;
}

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

/* ----- MV特徴バナー ----- */
.mv_bnr_wrap {
  position: absolute;
  bottom: 80px;
  left: 0;
  display: flex;
  gap: 32px;
}

.mv_bnr_item {
  position: relative;
  display: flex;
  align-items: center;
}

.mv_bnr_item::before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 5px;
  content: "";
  width: 120px;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/front/mv_illust01.png) no-repeat center / cover;
  pointer-events: none;
}

.mv_bnr_item::after {
  position: absolute;
  bottom: 5px;
  right: 5px;
  content: "\f061";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--sub-color-orange);
  border-radius: 50%;
  transition: .2s;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
}

.mv_bnr_item:hover::after {
  right: 2px;
}

.mv_bnr_wrap {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;          
  display: flex;
  justify-content: center; 
  gap: 32px;             
  z-index: 10;          
}

.mv_bnr_item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 auto;        
}

.mv_bnr_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 380px;
  min-height: 103px;
  padding: 24px 32px 23px 147px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 25px rgb(101 188 142 / .1);
  line-height: 1.5;
  letter-spacing: .1em;
  color: var(--text-color);
  font-size: 16px;
  font-family: var(--font-jp);
  font-weight: 500;
  transition: .2s;
}

.mv_bnr_text:hover {
  color: var(--text-color);
  filter: brightness(1.1);
  opacity: .95;
}

.mv_bnr_text span>span {
  color: var(--sub-color-orange);
  font-size: 130%;
}

/* 2番目 */
.mv_bnr_item:nth-child(2)::before {
  left: 12px;
  background: url(../images/front/mv_illust02.png) no-repeat center / cover;
}

.mv_bnr_item:nth-child(2)::after {
  background: var(--sub-color-blue);
}

.mv_bnr_item:nth-child(2) .mv_bnr_text {
  padding-left: 140px;
}

.mv_bnr_item:nth-child(2) .mv_bnr_text span>span {
  color: var(--sub-color-blue);
}

.mv_bnr_item:nth-child(2) a span.dotted {
  position: relative;
  left: -1px;
  color: inherit;
  letter-spacing: -2px;
  font-size: 100%;
}

/* 3番目 */
.mv_bnr_item:nth-child(3)::before {
  left: 12px;
  background: url(https://asakaseikei.com/wp/wp-content/uploads/2026/02/medical_illust03.png) no-repeat center / cover;
}

.mv_bnr_item:nth-child(3)::after {
  background: var(--main-color);
}

.mv_bnr_item:nth-child(3) .mv_bnr_text {
  justify-content: center;
}

.mv_bnr_item:nth-child(3) .mv_bnr_text span>span {
  color: var(--main-color);
}

.mv_bnr_item:nth-child(3) a span.dotted {
  position: relative;
  left: -1px;
  color: inherit;
  letter-spacing: -2px;
  font-size: 100%;
}

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

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

.open_bnr .date {
  font-size: 110%;
}

.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 90%;
  text-align: center;
}

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

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

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

@media screen and (max-width: 1530px){
  .mainvisual{
    padding: 0 50px;
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 300px;
    min-height: unset;
    padding: 0 10px 10px;
  }

  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 10px;
  }

  .mvSlider .sliderBtn#sliderBtn_prev {
    left: 10px;
  }

  .mvSlider .sliderBtn#sliderBtn_next {
    right: 10px;
  }

  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 0;
    display: none;
  }

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

  .mvCatch .inner {
    max-width: 100%;
  }

  .mvCatch p {
    font-size: min(5.5vw, 24px);
    line-height: 1.75;
  }

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

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

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

  /* ----- MV特徴バナー ----- */
  .mv_bnr_wrap {
    position: static;
    flex-wrap: wrap;
    gap: 16px;
  }

  .mv_bnr_item {
    width: 100%;
  }

  .mv_bnr_item::before {
    bottom: 50%;
    width: 22vw;
    transform: translateY(50%);
  }

  .mv_bnr_text, .mv_bnr_item:nth-child(2) .mv_bnr_text {
    width: 100%;
    padding: 18px 10vw 16px 26vw;
    font-size: min(4vw, 16px);
  }

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

  h1 {
    background: #fff;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.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 .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: 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(--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;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  padding-bottom: 120px;
  background: url(../images/front/clinic_bg.png) no-repeat bottom center/100% auto, linear-gradient(transparent 70%, var(--bg-color));
}

.clinic::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  width: 45%;
  height: auto;
  aspect-ratio: 768 / 687;
  background: url(../images/front/water_paint01.png) no-repeat center / cover;
  transform: translate(-30%, -30%);
}

.clinic::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -20px;
  content: "";
  width: 14%;
  height: auto;
  aspect-ratio: 606 / 858;
  background: url(../images/front/leaf01.png) no-repeat center/cover;
  transform: translateY(-10%);
  opacity: .8;
}

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

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

.clinic .news .news_left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding: 80px;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 25px rgb(101 188 142 / .1);
  border-radius: 20px;
}

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

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

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

.clinic .info address>*::before {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: var(--bg-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  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: 24px;
  padding: 3px 0 7px 50px;
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 500;
  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: 20px;
  padding-left: 20px;
}

.clinic .info .speciality {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin: 24px auto 0;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 20px;
	font-size: 14px;
}

.clinic .info .speciality .title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 500;
}

.clinic .info .googlemap iframe {
  width: 100%;
  height: 480px;
  border-radius: 20px;
}

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

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

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

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

  .clinic::before {
    width: 65%;
  }

  .clinic::after {
    width: 30%;
  }

  /* ----- お知らせ ----- */
  .clinic .news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

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

  .clinic .info .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 32px;
    padding: 48px 20px;
  }

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

  .clinic .info .speciality {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 10px;
    padding: 10px;
    font-size: 100%;
  }

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

  .clinic .info .note {
    padding: 0;
  }

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

  .clinic .info .btn01 {
    text-align: center;
  }
}

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

  *ご挨拶（パターン01）

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

.greeting::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 40%;
  height: auto;
  aspect-ratio: 768 / 687;
  background: url(../images/front/water_paint01.png) no-repeat center / cover;
  transform: translate(-45%, -45%);
}

.greeting::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -20px;
  content: "";
  width: 14%;
  height: auto;
  aspect-ratio: 606 / 858;
  background: url(../images/front/leaf01.png) no-repeat center/cover;
  transform: translateY(-45%);
}

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

.greeting_flex {
  display: flex;
  gap: 50px;
	justify-content: center;
}

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

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

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

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


.greeting_profile {
  padding: 20px;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 500;
}

.greeting_profile .position {
  letter-spacing: .1em;
  font-size: 130%;
}

.greeting_profile .name {
  letter-spacing: .1em;
  font-size: 150%;
}

.greeting_profile .title {
  margin-right: 12px;
  font-size: 80%;
}

.greeting_profile .hurigana {
  font-size: 90%;
}

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

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

  .greeting::after {
    width: 30%;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_profile {
    padding: 20px 0 10px;
  }

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

  .greeting_profile .hurigana {
    font-size: 70%;
  }

  .greeting_btn {
    margin-top: 40px;
    text-align: center;
  }
	
.greeting_img img {
	width:100%;
}	
	
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: url(../images/front/wave_white02.png) no-repeat left bottom -1px/100% auto, url(../images/front/wave_green02.png) no-repeat left bottom 10px/100% auto, linear-gradient(#fbfbfa, var(--bg-color));
}

.medical .inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 280px;
}

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

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  aspect-ratio: 1;
  box-shadow: 0 0 25px rgb(101 188 142 / .1);
  border-radius: 20px;
}

.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%;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  text-align: center;
}

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

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

.medical_title h3 {
  color: var(--text-color);
  line-height: 1.6;
  letter-spacing: .12em;
  font-size: 130%;
}

.medical_title_eng {
  margin-top: 5px;
  letter-spacing: .12em;
  color: var(--main-color);
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
  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 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);
}

/* ----- 1, 4, 7...番目（main-color） ----- */
.medical_item:nth-child(3n+1) .medical_title_eng {
  color: var(--main-color);
}

/* ----- 2, 5, 8...番目（sub-color-orange） ----- */
.medical_item:nth-child(3n+2) .medical_title_eng {
  color: var(--sub-color-orange);
}

/* ----- 3, 6, 9...番目（sub-color-blue） ----- */
.medical_item:nth-child(3n) .medical_title_eng {
  color: var(--sub-color-blue);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: url(../images/front/wave_white02.png) no-repeat left bottom -1px / 100% auto, url(../images/front/wave_green02.png) no-repeat left bottom / 100% auto, linear-gradient(#f7faf7, var(--bg-color));
  }
	
	

  .medical .inner {
    padding-top: 30px;
    padding-bottom: 120px;
  }

  .medical_list {
    gap: 10px;
  }

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

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

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

  .medical_icon {
    width: 50%;
    margin-bottom: 3px !important;
  }

  .medical_title h3 {
    letter-spacing: .1em;
    font-size: min(3.8vw, 18px);
  }

  .medical_title h3 span {
    font-size: min(3.4vw, 16px);
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  background: url(../images/front/clinic_bg.png) no-repeat bottom -1px center / 100% auto;
}

.feature::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 45%;
  height: auto;
  aspect-ratio: 768 / 687;
  background: url(../images/front/water_paint01.png) no-repeat center/cover;
  transform: translate(40%, -30%);
}

.feature::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -20px;
  content: "";
  width: 14%;
  height: auto;
  aspect-ratio: 606 / 858;
  background: url(../images/front/leaf02.png) no-repeat center/cover;
  transform: translateY(-40%);
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc((100% / 3) - (100px / 3));
  height: auto;
}

.feature_num {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: auto;
  aspect-ratio: 1;
  padding: 10px 16px 8px;
  background: var(--bg-color);
  border-radius: 50%;
  font-size: 100%;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

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

.feature_img {
  position: relative;
  margin-bottom: 68px;
}

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

.feature_inner {
  position: relative;
  display: flex;
  flex-flow: column;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 20px;
}

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

.feature_title h3 {
  color: var(--text-color);
  letter-spacing: .1em;
  font-size: 120%;
  line-height: 1.5;
  text-align: center;
}

.feature_title h3 span {
  padding: 0px 3px;
  color: var(--main-color);
  font-size: 130%;
}

.feature_text.text {
  margin-bottom: 56px;
}

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

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


/* ----- 1, 4, 7...番目（main-color） ----- */
.feature_item:nth-child(3n+1) .feature_num {
  background: var(--bg-color);
}

.feature_item:nth-child(3n+1) .feature_num span {
  color: var(--main-color);
}

.feature_item:nth-child(3n+1) .feature_title h3 span {
  color: var(--main-color);
}

.feature_item:nth-child(3n+1) .btn01>* {
  background: var(--main-color);
  border-color: var(--main-color);
}

.feature_item:nth-child(3n+1) .btn01>*:hover {
  background: #fff;
  color: var(--main-color);
}

.feature_item:nth-child(3n+1) .btn01>*:hover::before {
  background: var(--main-color);
}

.feature_item:nth-child(3n+1) .btn01>*::after {
  color: var(--main-color);
}

.feature_item:nth-child(3n+1) .btn01>*:hover::after {
  color: #fff;
}

/* ----- 2, 5, 8...番目（sub-color-orange） ----- */
.feature_item:nth-child(3n+2) .feature_num {
  background: rgb(255 242 225);
}

.feature_item:nth-child(3n+2) .feature_num span {
  color: var(--sub-color-orange);
}

.feature_item:nth-child(3n+2) .feature_title h3 span {
  color: var(--sub-color-orange);
}

.feature_item:nth-child(3n+2) .btn01>* {
  background: var(--sub-color-orange);
  border-color: var(--sub-color-orange);
}

.feature_item:nth-child(3n+2) .btn01>*:hover {
  background: #fff;
  color: var(--sub-color-orange);
}

.feature_item:nth-child(3n+2) .btn01>*:hover::before {
  background: var(--sub-color-orange);
}

.feature_item:nth-child(3n+2) .btn01>*::after {
  color: var(--sub-color-orange);
}

.feature_item:nth-child(3n+2) .btn01>*:hover::after {
  color: #fff;
}

/* ----- 3, 6, 9...番目（sub-color-blue） ----- */
.feature_item:nth-child(3n) .feature_num {
  background: #f2fbff;
}

.feature_item:nth-child(3n) .feature_num span {
  color: var(--sub-color-blue);
}

.feature_item:nth-child(3n) .feature_title h3 span {
  color: var(--sub-color-blue);
}

.feature_item:nth-child(3n) .btn01>* {
  background: var(--sub-color-blue);
  border-color: var(--sub-color-blue);
}

.feature_item:nth-child(3n) .btn01>*:hover {
  background: #fff;
  color: var(--sub-color-blue);
}

.feature_item:nth-child(3n) .btn01>*:hover::before {
  background: var(--sub-color-blue);
}

.feature_item:nth-child(3n) .btn01>*::after {
  color: var(--sub-color-blue);
}

.feature_item:nth-child(3n) .btn01>*:hover::after {
  color: #fff;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    position: relative;
    background: url(../images/front/clinic_bg.png) no-repeat bottom -1px center / 100% auto, linear-gradient(transparent, rgb(234 249 232 / .5), #f7faf7);
  }

  .feature::before {
    width: 65%;
  }

  .feature::after {
    width: 30%;
  }

  .feature_list {
    gap: 56px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_inner {
    padding: 0;
  }

  .feature_img {
    margin-bottom: 56px;
  }

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

  .feature_text.text {
    margin-bottom: 32px;
  }
}

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

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

==================================================================================================================================*/
.body-parts {
  background: url(../images/front/wave_white.png) no-repeat left bottom -1px / 100% auto, url(../images/front/wave_green.png) no-repeat left bottom 10px / 100% auto, linear-gradient(#f2f9ef, var(--bg-color));
  padding: 30px 0px 260px;
}

.body-parts .inner {
  position: relative;
  display: flex;
  gap: 60px;
  padding: 80px;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 25px rgb(101 188 142 / .1);
  border-radius: 20px;
}

.body-parts .inner::before {
  position: absolute;
  bottom: -40px;
  left: 80px;
  content: "";
  width: 348px;
  height: auto;
  aspect-ratio: 752/688;
  background: url(../images/front/search_illust.png) no-repeat center / cover;
}

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

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

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

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

#body-parts1 .body_parts_title::before {
  top: 123%;
  left: 110px;
  width: 160px;
  transform: rotate(15deg);
}

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

#body-parts2 .body_parts_title::before {
  top: 155%;
  right: 98px;
  width: 140px;
  transform: rotate(-30deg);
}

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

#body-parts3 .body_parts_title::before {
  top: 46%;
  right: -180px;
  width: 170px;
}

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

#body-parts4 .body_parts_title::before {
  top: 183%;
  right: 112px;
  width: 126px;
  transform: rotate(-40deg);
}

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

#body-parts5 .body_parts_title::before {
  top: -148%;
  right: -215px;
  width: 230px;
  transform: rotate(-38deg);
}

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

#body-parts6 .body_parts_title::before {
  top: -60%;
  right: 150px;
  width: 190px;
  transform: rotate(30deg);
}

#body-parts7 {
  bottom: 0;
  left: 150px;
}

#body-parts7 .body_parts_title::before {
  top: -200%;
  right: -210px;
  width: 250px;
  transform: rotate(-50deg);
}

#body-parts8 {
  bottom: 0;
  right: 150px;
}

#body-parts8 .body_parts_title::before {
  top: 20%;
  right: 110px;
  width: 160px;
  transform: rotate(10deg);
}

/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 2px 40px;
  background: var(--sub-color-blue);
  border: 1px solid var(--sub-color-blue);
  border-radius: 3em;
  color: #ffffff;
  letter-spacing: .1em;
  font-size: 120%;
  font-family: var(--font-jp);
  text-align: center;
}

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

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

/* -----　部位ごとの病状・病名　----- */
.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%;
}

@media screen and (max-width: 1420px){
  .body-parts .top_title h2{
    font-size: 20px;
  }

  .body-parts .top_title .eng{
    font-size: 54px;
  }
}

/*==============================================
  *SP　お悩みの部位から探す（追加コンテンツ）
==============================================*/
@media screen and (max-width: 640px) {
  .body-parts {
    padding: 0 20px 140px;
    background: url(../images/front/wave_white.png) no-repeat left bottom -1px/ 100% auto, url(../images/front/wave_green.png) no-repeat left bottom/ 100% auto, linear-gradient(#f2f9ef, var(--bg-color));
  }

  .body-parts .inner {
    flex-flow: column;
    gap: 0;
    padding: 48px 20px;
  }

  .body-parts .inner::before {
    bottom: 0;
    left: 0px;
    width: 40%;
    transform: translateY(60%);
  }

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

  .body-parts_img {
    width: 40%;
  }

  /* ----- 各部位の位置 ----- */
  #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 {
    min-width: 80px;
    padding: 5px 12px;
    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 {
  padding: 10px 0;
}

#infinitySlider .splide__list {
  gap: 24px;
}

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

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

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