@charset "UTF-8";

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

  *基本設定

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

.front {
  overflow: hidden;
}

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

.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 {
    position: relative;
    line-height: 1.5;
    text-align: center;
    width: fit-content;
    margin: 0 auto 80px;

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 150%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  padding-bottom: 10px;
}

.top_title .eng {
    position: relative;
  display: inline-block;
  padding-bottom: 6px;
  background: linear-gradient(#a7874e 20%,var(--main-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 600%;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0 30px;
}
.top_title .eng::before {
    position: absolute;
    content: "";
    mask: url(../images/kira_img.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/kira_img.svg) top left / cover no-repeat;
    background: var(--sub-color);
    width: 20px;
    height: 20px;
    top: 9px;
    left: 0;
}

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

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

  .top_title .eng {
    font-size: 50px;
    margin: 0;
    padding: 0 30px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 900px;
  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: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.mvCatch p {
  font-size: 220%;
  color: var(--main-color);
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
  letter-spacing: 0.15em;
  font-weight: 500;
    line-height: 1.75;
}
.mvCatch p > span {
    font-size: 130%;
    color: var(--sub-color);
    padding-right: 10px;
}
/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

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

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

.open_bnr {
  position: absolute;
  right: 0;
  bottom: 80px;
  display: inline-block;
  padding: 4px;
  background: var(--bg-color);
  border-radius: 50%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  padding: 15px;
  background: url(../images/bg_pattern02.jpg) top left / 300px;
  border-radius: 50%;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  color: var(--main-color);
}

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

.open_bnr .open_text {
  position: relative;
  margin: 5px 0 5px;
  font-size: 180%;
  letter-spacing: 0.12em;
  padding: 0 26px;
}
.open_bnr .open_text::before {
position: absolute;
    content: "";
    mask: url(../images/kira_img.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/kira_img.svg) top left / cover no-repeat;
    background: #d2bd7e;
    width: 16px;
    height: 16px;
    top: 14px;
    left: 0;
}
.open_bnr .open_text::after {
position: absolute;
    content: "";
    mask: url(../images/kira_img.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/kira_img.svg) top left / cover no-repeat;
    background: #d2bd7e;
    width: 16px;
    height: 16px;
    top: 14px;
    right: 0;
}
.open_bnr .nairankai_tit {
    position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 0 10px;
  padding: 5px 10px;
  text-align: center;
}
.open_bnr .nairankai_tit::before {
    position: absolute;
    content: "";
    width: 65px;
    height: 1px;
    background: var(--line-color);
    left: 0;
}
.open_bnr .nairankai_tit::after {
    position: absolute;
    content: "";
    width: 65px;
    height: 1px;
    background: var(--line-color);
    right: 0;
}
.nairakai_date {
    line-height: 1.75;
}
.open_bnr .btn01 {
    max-width: 155px;
}
.open_bnr a {
    font-size: 63%;
}
/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}

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

/* MVアイコン */
.mv_info {
    position: absolute;
    bottom: 80px;
    display: flex;
    flex-flow: column;
    gap: 15px;
    font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.mv_info_item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(167, 135, 78, 0.9), rgba(91, 64, 36, 0.9));
    width: 360px;
    min-height: 100px;
    padding: 20px 20px 20px 135px;
    color: #fff;
    border-radius: 10px;
}
.mv_info_item::after {
    content: "";
    position: absolute;
    background: url(../images/logomark_w.svg) top left / cover no-repeat;
    width: 100px;
    height: 130px;
    opacity: 0.1;
    bottom: -48px;
    right: -18px;
}
.mv_info_item::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-left: -145px;
    left: 100px;
}
.mv_info_item.child_adult::before {
    background: 
    url(../images/info_icon01.svg) center right 31% / 27% no-repeat,
    #fff;
}
.mv_info_item.access::before {
    background: 
    url(../images/info_icon02.svg) center right 31% / 27% no-repeat,
    #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: auto;
    bottom: 20px;
    display: none;
  }

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

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }

  .mvContents {
    display: none;
  }

  .sp_only {
    display: block;
    background: none !important;
  }

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

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

  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 30px 20px;
    border-radius: 7px;
  }
  .mv_info {
    position: static;
    width: 100%;
    max-width: 400px;
  }
  .mv_info_item {
    width: 100%;
  }
  .mv_info_item.child_adult::before,
  .mv_info_item.access::before {
    background: url(../images/info_icon01.svg) center right 31% / 27% no-repeat,
    #f2efeb;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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;
  background: url(../images/bg_pattern02.jpg) bottom right;
}
.clinic::before {
    position: absolute;
    content: "";
    width: 27%;
    height: 500px;
    background: url(../images/bg_pattern03.jpg) top left / 500px;
    bottom: 200px;
    right: 0;
    z-index: -1;
    border-radius: 10px 0 0 0;
    opacity: 0.5;
}
.clinic::after {
    content: "";
    display: block;
    background: 
    linear-gradient(rgba(91, 64, 36, 0.1),rgba(91, 64, 36, 0.1)),
    url(../images/bg_img01_02.jpg) center / cover no-repeat;
    width: 90%;
    height: 440px;
    border-radius: 0 10px 10px 0;
}
/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
  padding: 100px 50px;
}
/* .clinic .news::before {
    position: absolute;
    content: "";
    width: calc((100% - 1400px) / 2 + 100px);
    min-width: 160px;
    height: 200px;
    background: url(../images/bg_pattern03.jpg) top left / 500px;
    top: 0;
    left: 0;
    border-radius: 0 0 10px 0;
    opacity: 0.6;
} */
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  gap: 0px;
  padding: 50px 80px 80px;
  background: var(--bg-color);
  border-radius: 10px;
}

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

.clinic .news .top_title {
    display: flex;
    align-items: flex-end;
    gap: 20px;
  margin: 0;
}
.clinic .news .top_title h2 {
    font-size: 130%;
    padding-bottom: 5px;
}
.clinic .news .top_title .eng {
    font-size: 450%;
    padding: 0 0 0 30px;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info {
    padding: 0 50px;
}
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 0 0 120px;
}

.clinic .info .inner > * {
  width: calc(50% - 20px);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.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(--sub-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;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
}
.clinic .info address .tel a {
    color: #93784f;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  color: #93784f;
}

.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;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 10px;
}

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

.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: 30px;
  text-align: center;
}

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

@media screen and (max-width: 640px) {
.clinic {
    background: 
    linear-gradient(#fff,transparent) top left / 100% 100px no-repeat,
    url(../images/bg_pattern02.jpg) bottom right / 500px;
}
.clinic::before {
    width: 37%;
    height: 385px;
    bottom: 75px;
    right: 0;   
}
.clinic::after {
    height: 150px;
}
.clinic .news {
    padding: 70px 20px;
}
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 50px 20px;
  }
  .clinic .news .top_title {
    gap: 15px;
  }
  .clinic .news .top_title h2 {
    font-size: 120%;
    padding-bottom: 3px;
  }
.clinic .news .top_title .eng {
    font-size: 320%;
    padding: 0 0 0 30px;
}
.clinic .info {
    padding: 0 20px;
}
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 0 70px;
  }

  .clinic .info .inner > * {
    width: 100%;
  }
.clinic .info address .location .zipcode {
    display: block;
}
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info .googlemap iframe {
    height: 300px;
  }
}


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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
}
.greeting::before {
    position: absolute;
    content: "";
    background:
    linear-gradient(rgba(221,207,183,0.2),rgba(221,207,183,0.3)),
  url(../images/bg_pattern02.jpg) top left / 500px;
    width: 30%;
    height: 600px;
    top: 0;
    left: 0;
}

.greeting::after {
    position: absolute;
    content: "";
    background: url(../images/logomark.svg) top left / cover no-repeat;
    width: 700px;
    height: 929px;
    right: -100px;
    bottom: -50px;
    opacity: 0.1;
    z-index: -1;
}

.greeting .top_title {
    position: relative;
    line-height: 1.5;

    width: fit-content;
    margin: 0 auto 80px 0;
    display: flex;
    align-items: flex-end;
    gap: 23px;
}

.greeting .top_title .eng {
    padding: 0 0 6px 30px;
    margin-bottom: -6px;
}
.greeting_box {
  position: relative;
  z-index: 1;
}

.greeting_flex {
  display: flex;
  flex-direction: row-reverse;
  gap: 80px;
}

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

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

.doctor_catch {
      font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
    font-size: 175%;
    color: var(--sub-color02);
    letter-spacing: 0.12em;
}
.doctor_catch > span {
    font-size: 120%;
    color: var(--sub-color);
    padding: 0 10px;
}
.doctor_catch > span:first-child {
    padding-left: 0;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}

.greeting_img img {
    border-radius: 10px;
}
.greeting_profile {
    padding: 30px 0 0 0;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}

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

.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
    font-size: 80%;
    padding-right: 10px;
}
.greeting_img {
    position: relative;
    height: 510px;
}
/* .greeting_img::before {
    position: absolute;
    content: "";
    width: 40%;
    height: 40%;
    background: url(../images/bg_pattern03.jpg) top left / 500px;
    z-index: -1;
    border-radius: 10px;
    left: -15px;
    top: -15px;
}
.greeting_img::after {
    position: absolute;
    content: "";
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #a7874e, var(--main-color));
    z-index: -1;
    border-radius: 10px;
    right: -15px;
    bottom: -15px;
    opacity: 0.8;
} */
.greeting_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.greeting_btn {
  margin-top: 50px;
  text-align: right;
}
/*------ ご挨拶エリア内：ドクターズファイルバナー ------*/
.greeting_bnr_box {
  margin-top: 24px;
}

.greeting_bnr_list {
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.greeting_bnr_list li {
  width: 48%;
  max-width: 320px;
}

.greeting_bnr_list a {
  display: block;
  transition: opacity 0.3s;
}

.greeting_bnr_list a:hover {
  opacity: 0.85;
}

.greeting_bnr_list img {
  width: 100%;
  height: auto;
}

/* SP調整：縦積みで中央寄せ */
@media screen and (max-width: 640px) {
  .greeting_bnr_list {
    gap: 12px;
  }
  .greeting_bnr_list li {
    width: 80%;
    max-width: none;
  }
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
.greeting::before {
    width: 40%;
    height: 300px;   
}
.greeting::after {
    width: 400px;
    height: 530px;   
}
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
.greeting .top_title {
    flex-flow: column;
    align-items: center;
    margin: 0 auto 50px;
    gap: 0;
}
  .greeting_left {
    width: 100%;
  }
.greeting_img {
    height: auto;
    width: 80%;
    margin: 0 auto;
}
  .greeting_btn {
    margin-top: 40px;
    text-align: center;
  }
  .doctor_catch {
    font-size: 120%;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid var(--sub-color02);
    border-bottom: 1px solid var(--sub-color02);
    margin-bottom: 20px!important;
  }
}

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

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

==================================================================================================================================*/
.pickup {
    background: linear-gradient(-90deg, rgba(197, 203, 217, 0.22) 1px, transparent 0) center / 300px;
}
.pickup .inner {
  width: 100%;
  max-width: none;
  padding: 100px 0 0;
}
.pickup_title_wrap  {
    max-width: 1500px;
    padding: 0 50px;
    margin: 0 auto;
}
.pickup_list {
  display: flex;
  flex-flow: wrap;
    gap: 40px 0;
    justify-content: center;
}

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

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

.pickup_title {
  position: absolute;
  z-index: 2;
  width: 320px;
  margin: 0;
  padding: 30px 20px 0 0;
  left: 0;
  bottom: 0;
  border-radius: 0 10px 0 0;
  background: #fff;
}
.pickup_title::before {
    content: "";
    position: absolute;
    background: url(../images/kado.svg) top left / cover no-repeat;
    width: 10px;
    height: 10px;
    top: -10px;
    left: 0;
}
.pickup_title::after {
    content: "";
    position: absolute;
    background: url(../images/kado.svg) top left / cover no-repeat;
    width: 10px;
    height: 10px;
    right: -10px;
    bottom: 0;
}
/* .pickup_title::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  display: block;
  width: 30px;
  height: 25px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
} */

.pickup_title h2, .pickup_title h3 {
  background: none;
  color: var(--main-color);
  font-size: 180%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  padding-top: 10px;
  letter-spacing: 0.12em;
}

.pickup_title span {
  font-size: 120%;
  color: var(--sub-color);
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}

.pickup_img {
  position: relative;
  z-index: 1;
}
.pickup_img img {
    border-radius: 10px;
}
.pickup_text {
  margin: 30px 0;
}

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

.pickup_link .pickup_btn {
  /* width: calc((100% / 2) - (10px / 2)); */
  width: 100%;
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
  padding: 10px 35px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  font-size: 120%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
  overflow: hidden;
}

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

.pickup_link .pickup_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a:hover::before {
  right: 12px;
  background: var(--main-color);
}

.pickup_link .pickup_btn a::after {
    content: "";
    position: absolute;
    background: url(../images/logomark_w.svg) top left / cover no-repeat;
    width: 138px;
    height: 140px;
    opacity: 0.1;
    bottom: -51px;
    left: 28px;
    transition: background 0.2s;
}
.pickup_link .pickup_btn a:hover::after {
    background: url(../images/logomark.svg) top left / cover no-repeat;
}

/* 奇数 */
.pickup_item:nth-child(odd) {
  padding: 0 50px;
}

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

.pickup_item:nth-child(3) {
    width: fit-content;
}

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

/* 偶数 */
.pickup_item:nth-child(even) {
  padding: 0 50px;
}

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


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

/* .pickup_item:nth-child(2) .pickup_link .pickup_btn a {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}

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

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover::before {
  background: var(--sub-color);
} */

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
.pickup {
    background-size: 25%;
}
  .pickup .inner {
    padding: 70px 0 0;
  }
.pickup_title_wrap {
    padding: 0;
}
  .pickup .top_title {
    margin: 0 auto 50px;
    padding: 0 30px;
  }

  .pickup .top_title h2 {
    font-size: 18px;
  }
.pickup_title h2, .pickup_title h3 {
    font-size: 20px;
    padding-top: 5px;
}

  .pickup_list {
    width: calc(100%);
    gap: 50px
  }

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

  .pickup_title {
    font-size: 90%;
    width: 215px;
    padding: 20px 20px 0 0;
  }

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

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

  .pickup_link {
    min-height: auto;
    margin-top: 0;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }
  .pickup_link .pickup_btn a {
    font-size: 110%;
    padding: 10px 30px 10px 20px;
  }
  .pickup_link .pickup_btn a::before {
    right: 20px;
  }
}
/* ==================================================================================================================================

  *診療案内

================================================================================================================================== */
.medical {
  background: 
linear-gradient(rgba(091, 64, 36, 0.4), rgba(91, 64, 36, 0.4)),
  url(../images/medical_bg.jpg) no-repeat center/cover !important;
}

.medical .top_title .eng::before {
    background: #fff;
}
.medical .top_title .eng {
  color: var(--main-color);
  background: linear-gradient(#fff,#fff);
      -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.medical .top_title h2 {
    color: #fff;
}
.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 5px;
}

.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 {
    position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  text-align: center;
  border-radius: 10px;
  transition: background 0.2s;
}
.medical_item:hover .medical_inner {
    background: var(--bg-color);
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}
.medical_inner::before {
    position: absolute;
    content: "";
    background: linear-gradient(135deg,rgba(255,255,255,0)50%,#c0c0c0 50%);
    width: 18px;
    height: 18px;
    border-radius: 0 0 5px 0;
    bottom: 0;
    right: 0;
    transition: background 0.2s;
}
.medical_inner:hover::before {
    background: linear-gradient(135deg,rgba(255,255,255,0)50%,var(--sub-color) 50%);
}

.medical_icon {
  width: 70%;
  max-width: 85px;
  margin: 0 auto 15px !important;
  background: linear-gradient(135deg,#a7874e,var(--main-color));
  border-radius: 50%;
}

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

.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(--en-font);
    font-weight: 500;
    font-style: normal;
    line-height: 1;
}

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

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

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

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

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

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

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

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

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical {
    background: 
    linear-gradient(rgba(091, 64, 36, 0.3), rgba(91, 64, 36, 0.3)),
  url(../images/medical_bg_sp.jpg) no-repeat center/cover !important;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_icon {
    width: 50%;
  }

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

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

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

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

==================================================================================================================================*/
.feature {
  position: relative;
  background: 
  linear-gradient(rgba(91,64,36,0.1),rgba(91,64,36,0)) top 17% right / 30% 18% no-repeat,
  linear-gradient(rgba(91,64,36,0.1),rgba(91,64,36,0)) top 35% left / 30% 20% no-repeat,
  linear-gradient(rgba(91,64,36,0.1),rgba(91,64,36,0)) top 54% right / 30% 20% no-repeat,
  linear-gradient(rgba(91,64,36,0.1),rgba(91,64,36,0)) top 74% left / 30% 20% no-repeat,
  linear-gradient(rgba(91,64,36,0.1),rgba(91,64,36,0)) bottom right / 30% 25% no-repeat,
  linear-gradient(rgba(221,207,183,0.2),rgba(221,207,183,0.2)),
  url(../images/bg_pattern02.jpg) top left / 800px
}
.feature .top_title {
    position: relative;
    line-height: 1.5;
    width: fit-content;
    margin: 0 auto 80px 0;
    display: flex;
    align-items: flex-end;
    gap: 23px;
}
/* .feature::before {
    content: "";
    display: block;
    background: linear-gradient(rgba(91, 64, 36, 0.4), rgba(91, 64, 36, 0.4)), url(../images/bg_img01.jpg) center / cover no-repeat;
    width: 90%;
    height: 440px;
    margin-left: auto;
    border-radius: 20px 0 0 20px;
} */
/* .feature::after {
    position: absolute;
    content: "";
    background: url(../images/bg_pattern03.jpg) top left / 500px;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 50%;
    opacity: 0.5; 
} */
.feature .top_title {
    margin-bottom: 70px;
}
.feature .top_title .eng {
    padding: 0 0 0 30px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 100px 30px;
}

.feature_item {
  display: flex;
  height: auto;
  width: 100%;
  margin: 50px 0 0;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    padding: 0px 50px 50px 0;
    background: #fff;
}
/* .feature_item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: 
    linear-gradient(-135deg,rgba(91, 64, 36, 0),rgba(91, 64, 36, 0.5),rgba(187, 161, 91, 0.5),rgba(91, 64, 36, 0));
    border-radius: 10px;
    left: 30px;
    bottom: -30px;
} */
.feature_img {
    position: relative;
    width: 600px;
    max-height: 450px;
    flex-shrink: 0;
    margin: -50px 0 0;
    z-index: 1;
}

.feature_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(168, 147, 124, 0.2);
}
.feature_inner{
  position: relative;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0;
  padding: 50px 50px 0;
  z-index: 1;
}
/* .feature_item::before {
    content: "";
    position: absolute;
    background: url(../images/bg_pattern03.jpg) top left / 500px;
    width: 280px;
    height: 180px;
    left: -15px;
    top: -15px;
    z-index: -1;
    border-radius: 10px;
} */
.feature_inner > *:not(:last-child){
  margin-bottom: 30px;
}

.feature_title{
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px!important;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-color);
}

.feature_title h3{
  color: var(--main-color);
  font-size: 160%;
  letter-spacing: 0.12em;
  line-height: 1.75;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

.feature_num {
  display: flex;
  flex-shrink: 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin: 0 0 5px!important;
  font-size: 140%;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  color: var(--sub-color02);
  /* color: #dece9f; */
}

.feature_num span{
  font-size: 300%;
  color: #d2bd7e;
}

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

.feature_item .btn01 > *{
  padding: 7px 40px 7px 30px;
  font-size: 100%;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  min-width: 200px;
}

.btnflex_feature{
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 5px;
  margin-top: auto;
}

/* 左右 */
.feature_item:nth-child(even){
  flex-flow: row-reverse;
  padding: 0 0 50px 50px;
}
/* .feature_item:nth-child(even)::before {
    background: linear-gradient(135deg,rgba(91, 64, 36, 0),rgba(91, 64, 36, 0.5),rgba(187, 161, 91, 0.5),rgba(91, 64, 36, 0));;
    left: -30px;
} */
.feature_item:nth-child(even) .feature_inner{
  margin: 0;
  padding: 50px 50px 0;
  border-radius: 0 10px 10px 0;
}
.feature_item:nth-child(even) .feature_img img {
    border-radius: 10px;
}
/* .feature_item:nth-child(even) .feature_img::before {
    right: auto;
    left: -15px;
} */

/* ボタン横並び */
.btnflex_feature .btn01{
  width: calc(50% - 2.5px);
}

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

@media screen and (max-width: 640px) {
  .feature{
    padding-bottom: 0;
  }
  .feature .top_title {
    flex-flow: column;
    align-items: center;
    margin: 0 auto 50px;
    gap: 0;
  }
  .feature_list{
    gap: 40px;
  }

  .feature_item{
    flex-flow: column;
    flex-direction: column-reverse;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .feature_img{
    width: 100%;
    margin: 0;
  }

  .feature_inner{
    width: 100%;
    min-height: auto;
    padding: 30px 20px 30px;
    margin: 0;
  }
  .feature_inner > *:not(:last-child) {
    margin-bottom: 20px;
  }
.feature_num {
    font-size: 80%;
}
  .feature_title{
    margin-bottom: 20px!important;
    min-height: auto;
    gap: 15px;
    padding-bottom: 20px;
  }
.feature_title h3 {
    font-size: 120%;
}
  .feature_item .btn01{
    text-align: center;
  }

  /* 左右 */
  .feature_item:nth-child(even){
    flex-flow: column;
    flex-direction: column-reverse;
    padding: 0;
  }
  .feature_item:nth-child(even) .feature_inner{
    margin: 0;
    padding: 30px 20px 30px;
  }

  /* 横並び */
  .btnflex_feature .btn01{
    width: 100%;
  }
}
/* ==================================================================================================================================

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  padding: 150px 50px 120px;
  background: linear-gradient(-90deg, rgba(197, 203, 217, 0.22) 1px, transparent 0) center / 300px;
}
.search_wrap {
    background: url(../images/bg_pattern01.jpg) top left / 500px;
    margin: 0 auto;
    border-radius: 10px;
    max-width: 1700px;
}
.search .tab_list {
  gap: 20px;
}

.search .tab_list .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
  padding: 15px 20px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
    border-radius: 10px;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 50px 0 0 0; 
}

.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: #fff;
  color: var(--text-color);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  border-radius: 5px;
}

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

/* 矢印の背景 */
.search_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--sub-color);
  border: 1px solid var(--sub-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;
}
.search_img img {
    border-radius: 10px;
}
.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 {
    padding: 70px 20px;
    background-size: 25%;
}
  .search .inner {
    padding: 50px 20px;
  }
  .search .tab_list {
    flex-flow: nowrap;
    gap: 7px;
    margin: 0 0 20px;
  }

  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    height: auto;
    padding: 10px !important;
    transform: translate(0, 0) !important;
    font-size: 100%;
    line-height: 1.5;
        text-align: center;
  }
.tab_list li.active::before {
    bottom: -15px;
    width: 15px;
    height: 15px;
}
  .search .panel {
    padding: 0;
  }

  .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;
    flex-direction: column-reverse;
  }

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

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

================================================================================================================================== */
.column {
  background: url(../images/bg_pattern02.jpg) bottom left / 800px;
}

.column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: var(--bg-color);
  border-radius: 10px;
}

.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;
  border-radius: 5px;
      font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    transition: filter 0.2s;
}
.column_box dt a:hover {
    filter: brightness(1.3);
}
.column_box dd {
  padding: 15px 10px;
  border-bottom: 1px solid 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: 15px 10px;
  background: url(../images/bg_pattern02.jpg) top left / 800px;
}

#infinitySlider .splide__list {
  gap: 15px;
}

#infinitySlider .splide__slide {
  width: 450px !important;
}
#infinitySlider .splide__slide img {
    border-radius: 10px;
}

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

  *ローディングアニメーション

================================================================================================================================== */
.loader {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background-color: #f2ede7;
  z-index: 10001;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    opacity: 1;
  transition: opacity 1s ease; /* ← ふわっと消える時間 */
}
.loader.is-hidden {
  opacity: 0;
  pointer-events: none; /* 非表示時にクリック無効化（任意） */
}
.loading_txt {
    max-width: 400px;
}
.loading_txt > * {
    width: 100%;
}
/* ロゴ下のテキスト */
.loader_logo_under {
    width: 100%;
    max-width: 505px;
    margin-top: 24px;
}
.loader_logo_under img {
  opacity: 0;
  transition: opacity .1s ease; /* ふわっと表示 */
}

.loader_logo_under img.is-visible {
  opacity: 1;
}
/***************************************************
 * Generated by SVG Artista on 9/17/2025, 1:10:44 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.05s both;
          animation: animate-svg-fill-1 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.05s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s both;
          animation: animate-svg-fill-2 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.15000000000000002s both;
          animation: animate-svg-fill-3 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.15000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
          animation: animate-svg-fill-4 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.25s both;
          animation: animate-svg-fill-5 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.25s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
          animation: animate-svg-fill-6 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.35000000000000003s both;
          animation: animate-svg-fill-7 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.35000000000000003s both;
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
          animation: animate-svg-fill-8 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.45s both;
          animation: animate-svg-fill-9 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.45s both;
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
          animation: animate-svg-fill-10 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.55s both;
          animation: animate-svg-fill-11 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.55s both;
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s both;
          animation: animate-svg-fill-12 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

.svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6500000000000001s both;
          animation: animate-svg-fill-13 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6500000000000001s both;
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

.svg-elem-14 {
  -webkit-animation: animate-svg-fill-14 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7000000000000001s both;
          animation: animate-svg-fill-14 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

.svg-elem-15 {
  -webkit-animation: animate-svg-fill-15 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7500000000000001s both;
          animation: animate-svg-fill-15 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7500000000000001s both;
}

@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-16 {
  -webkit-animation: animate-svg-fill-16 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
          animation: animate-svg-fill-16 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-17 {
  -webkit-animation: animate-svg-fill-17 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8500000000000001s both;
          animation: animate-svg-fill-17 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8500000000000001s both;
}

@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-18 {
  -webkit-animation: animate-svg-fill-18 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9000000000000001s both;
          animation: animate-svg-fill-18 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-19 {
  -webkit-animation: animate-svg-fill-19 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9500000000000001s both;
          animation: animate-svg-fill-19 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9500000000000001s both;
}

@-webkit-keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-20 {
  -webkit-animation: animate-svg-fill-20 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
          animation: animate-svg-fill-20 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-21 {
  -webkit-animation: animate-svg-fill-21 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s both;
          animation: animate-svg-fill-21 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s both;
}

@-webkit-keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-22 {
  -webkit-animation: animate-svg-fill-22 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
          animation: animate-svg-fill-22 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-23 {
  -webkit-animation: animate-svg-fill-23 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1500000000000001s both;
          animation: animate-svg-fill-23 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1500000000000001s both;
}

@-webkit-keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-24 {
  -webkit-animation: animate-svg-fill-24 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
          animation: animate-svg-fill-24 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

.svg-elem-25 {
  -webkit-animation: animate-svg-fill-25 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2500000000000002s both;
          animation: animate-svg-fill-25 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2500000000000002s both;
}

@-webkit-keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(106, 57, 6);
  }
}

.svg-elem-26 {
  -webkit-animation: animate-svg-fill-26 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
          animation: animate-svg-fill-26 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(158, 117, 71);
  }
}

.svg-elem-27 {
  -webkit-animation: animate-svg-fill-27 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s both;
          animation: animate-svg-fill-27 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s both;
}

@-webkit-keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(221, 195, 156);
  }
}

.svg-elem-28 {
  -webkit-animation: animate-svg-fill-28 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
          animation: animate-svg-fill-28 0.05s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

@media screen and (max-width: 640px) {
.loading_txt {
    max-width: 125px;
    width: 60%;
}
	.loader_logo_under {
    max-width: 290px;
    margin-top: 0;
	}
}
/* ローディングアニメーションここまで */