@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
.front {
  overflow: hidden;
}

section .inner {
  padding: 120px 50px;
  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 {
  margin-bottom: 90px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 180%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 0;
  background: linear-gradient(90deg, #80b2d9, #84ddb9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 700%;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0 0 8px;
}

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

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

  .top_title .eng {
    font-size: 50px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 2;
  height: 900px;
  /* overflow: hidden; */
}
.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mvSlider::before {
  position: absolute;
  content: "";
  background: url(../images/geometry_img01.png) top left / cover no-repeat;
    width: 280px;
    height: 276px;
    left: -50px;
    bottom: -45px;
}
.splide.mvImg {
    width: calc(100% - 420px);
    margin-left: auto;
    padding-top: 40px;

}
/* ----- スライダーの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%;
  border-radius: 30px 0 0 30px;
}

.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: 100%;
  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: 46%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

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

.mvCatch p {
  font-size: 300%;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: var(--text-color);
  text-shadow:
  0px 0px 5px rgba(255, 255, 255, 1),0px 0px 5px rgba(255, 255, 255, 1),
  0px 0px 5px rgba(255, 255, 255, 1),0px 0px 5px rgba(255, 255, 255, 1),
  0px 0px 10px rgba(255, 255, 255, 1),0px 0px 10px rgba(255, 255, 255, 1),
  0px 0px 10px rgba(255, 255, 255, 1),0px 0px 10px rgba(255, 255, 255, 1),
  0px 0px 15px rgba(255, 255, 255, 1),0px 0px 15px rgba(255, 255, 255, 1),
  0px 0px 20px rgba(255, 255, 255, 1),0px 0px 20px rgba(255, 255, 255, 1);
}
.mvCatch p.sub_catch {
    font-size: 150%;
    padding: 20px 0;
}
.mvCatch p.sub_catch span:first-child {
  color: #2e9b65;
  padding-right: 10px;
}
.mvCatch p.sub_catch span:nth-child(2) {
  color:#2c6ea3;
  padding: 0 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%;
  max-width: calc(100% - 100px);
}

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

.open_bnr {
  position: absolute;
  top: 530px;
      left: 20px;
  display: inline-block;
  border-radius: 50%;
  padding: 30px 0 0 30px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.open_bnr .open_text {
  position: absolute;
  top: 0;
    left: 0;
  display: flex;
  align-items: center;
  line-height: 1.4;
    letter-spacing: 0.12em;
    font-size: 17px;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
  width: 100px;
  height: 100px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #80b2d9, #84ddb9);
  font-family: var(--en-font);
    font-weight: 500;
    font-style: normal;
    box-shadow: 0px 0px 7px 0px rgba(123, 164, 197, 0.2);
}
.open_bnr .open_bnr_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 380px;
  padding: 20px 40px 30px 70px;
  background: rgba(255,255,255,0.9);
  color: var(--text-color);
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 0px 7px 0px rgba(123, 164, 197, 0.2);
}

.open_bnr .date {
  width: 100%;
  padding-bottom: 10px;
  color: #518dbd;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  font-size: 200%;
  border-bottom: 1px solid var(--line-color);
}

.open_bnr .nairankai_tit {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 15px 10px 8px;
    color: var(--main-color);
    font-size: 90%;
    text-align: center;
}
.open_bnr .nairankai_tit::before {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  background: #afd3ef;
  border-radius: 50%;
}
.open_bnr .nairankai_tit::after {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  background: #afd3ef;
  border-radius: 50%;
}
.open_bnr .nairakai_date {
  width: 100%;
}
/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}

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

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

.sp_only {
  display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: calc(100vh - 110px);
  }

  .splide.mvImg {
    width: 100%;
    padding-top: 0;
  }
  .mvImg .splide__track {
    border-radius: 0;
  }
  .mvCatch .inner {
    max-width: 100%;
    padding: 0 20px;
  }
  .mvSlider::before {
    display: none;
  }
  /* ----- スライダーの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: 150%;
    line-height: 1.75;
    text-shadow:
    0px 0px 5px rgba(255, 255, 255, 1),0px 0px 5px rgba(255, 255, 255, 1),
    0px 0px 10px rgba(255, 255, 255, 1),0px 0px 10px rgba(255, 255, 255, 1),
   0px 0px 15px rgba(255, 255, 255, 1),0px 0px 15px rgba(255, 255, 255, 1);
  }
.mvCatch p.sub_catch {
  font-size: 100%;
  padding: 10px 0;
}
  .mvContents {
    display: none;
  }

  .sp_only {
    position: relative;
    display: block;
    background: none !important;
    padding: 0 0 50px;
    z-index: 2;
  }
  .sp_only::before {
        position: absolute;
        content: "";
        background: url(../images/geometry_img01.png) top left / cover no-repeat;
        width: 100px;
        height: 99px;
        bottom: -28px;
        left: -25px;
  }
  .sp_only .inner {
    padding: 0 20px;
  }

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

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

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
  .open_bnr .open_text {
    position: absolute;
    top: -20px;
        left: -20px;
        width: 90px;
        height: 90px;
  }
  .open_bnr .open_bnr_inner {
    position: relative;
    min-width: auto;
    padding: 20px 40px 30px 50px;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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;
  padding-bottom: 450px;
  background: linear-gradient(var(--bg-color),rgba(255,255,255,0) 70%);
}
.clinic::before {
  position: absolute;
    content: "";
    background: url(../images/geometry_img03.png) top left / cover no-repeat;
    width: 265px;
    height: 199px;
    right: 100px;
    bottom: 320px;
    z-index: 1;
}
.clinic::after {
    position: absolute;
    content: "";
    background: url(../images/clinic_bg_v2.jpg) center / cover no-repeat;
    width: calc(100% - 50px);
    max-width: 1700px;
    height: 450px;
    right: 0;
    bottom: 0;
    border-radius: 300px 0 0 300px;
}
/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news::before {
    position: absolute;
    content: "";
    mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(var(--bg-color), rgba(242, 255, 250, 0.9));
    width: 639px;
    height: 540px;
    top: -205px;
    left: -174px;
    z-index: 1;
    transform: rotate(-47deg);
}
.clinic .news::after {
  position: absolute;
  content: "";
  background: linear-gradient(rgba(255,255,255,0),var(--bg-color));
  width: 450px;
  height: 400px;
  top: -400px;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 70px;
  padding: 120px 50px;
}

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

.clinic .news .top_title {
  margin: 0 0 30px;
  text-align: left;
}
.clinic .news .top_title h2 {
    font-size: 140%;
}
.clinic .news .top_title .eng {
    font-size: 450%;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}
.clinic .news .btn01 a {
    border: 1px solid var(--main-color);
    padding: 5px 40px 5px 30px;
    color: var(--main-color);
    line-height: 1.5;
    width: 100%;
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
}
.clinic .news .btn01 a::before {
  color: var(--main-color);
  font-size: 70%;
}
.clinic .news .btn01 a::after {
  content: none;
}
/* ----- 医院概要 ----- */
.clinic .info {
    position: relative;
    margin: 0 50px 0 0;
}
.clinic .info::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 50%;
    height: 100%;
    z-index: -1;
}
.clinic .info::after {
    position: absolute;
    content: "";
    mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(rgba(255,255,255,0), #f2fffa);
    width: 765px;
    height: 646px;
    top: -300px;
    right: -165px;
    z-index: -1;
    transform: rotate(-50deg);
}
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 100px 100px 120px 50px;
  background: #fff;
  border-radius: 0 100px 0 0;
}
.clinic .info .inner::before {
  position: absolute;
    content: "";
    background: url(../images/geometry_img02.png) top left / cover no-repeat;
    width: 260px;
    height: 355px;
    right: -130px;
    top: -137px;
}
.clinic .info .inner::after {
    position: absolute;
    content: "";
    mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(rgba(255, 255, 255, 0), var(--bg-color), rgba(242, 255, 250, 1));
    width: 850px;
    height: 717px;
    bottom: -360px;
    left: -330px;
    transform: rotate(-50deg);
}
.clinic .info .inner > * {
  position: relative;
  z-index: 1;
  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(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}

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

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
}

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

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

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

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

.info address .tel_fax {
	margin: 20px auto 0;
	line-height: 1.7;
}

.info address .tel_fax p{
	line-height: 1.7;
	font-size: 30px;
}
.info address p.internal  {
  font-size: 90%;
  background: var(--sub-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.18em;
  font-family: var(--jp-font);
  margin-bottom: 5px;
  display: inline-table;
  line-height: 2;
}

.info address p.dental  {
  font-size: 90%;
  background: var(--main-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.18em;
  font-family: var(--jp-font);
  margin-bottom: 5px;
  display: inline-table;
  line-height: 2;
}

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

.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 .btn01 a {
    font-family: var(--en-font);
    font-weight: 500;
    font-style: normal;
}
.clinic .info .googlemap {
    padding-top: 30px;
}
.clinic .info .googlemap iframe {
  height: 350px;
  width: 100%;
  border-radius: 20px;
}

@media screen and (max-width: 640px) {
  
  .clinic {
    padding-bottom: 150px;
    background: linear-gradient(var(--bg-color), rgba(255, 255, 255, 0) 100%);
  }
  .clinic::before {
    content: none;
  }
  .clinic::after {
    height: 150px;
    width: calc(100% - 20px);
  }
  
  .clinic .info {
    margin: 0;
  }
  .clinic .info .inner::before  {
        width: 105px;
        height: 143px;
        right: -52px;
        top: -82px;
  }
  .clinic .info .inner::after {
        width: 391px;
        height: 330px;
        left: -173px;
        bottom: -208px;
  }
  .clinic .news::before {
    content: none;
  }
  .clinic .news::after {
    content: none;
  }
  
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 50px 20px 70px;
    border-radius: 0 40px 0 0;
  }

  .clinic .info .inner > * {
    width: 100%;
  }
  .clinic .news .news_left {
    margin: 0 auto;
  }
  .clinic .news .top_title {
    text-align: center;
  }
  .clinic .news .top_title .eng {
    font-size: 50px;
  }
    .clinic .news .top_title .h2 {
      font-size: 18px;
    }
  .clinic .info address .location .zipcode {
    display: block;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 0;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .news .btn01 {
    margin: 30px auto 0;
  }
}


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

  *ご挨拶

================================================================================================================================== */
.greeting {
  position: relative;
}
.greeting::before {
    position: absolute;
    content: "";
    mask: url(../images/mask_nami.svg) top center / 2000px repeat-x;
    -webkit-mask: url(../images/mask_nami.svg) top center / 2000px repeat-x;
    background: linear-gradient(var(--bg-color), rgba(255, 255, 255, 0) 50%);
    width: 100%;
    height: 2000px;
}
.greeting::after {
    position: absolute;
    content: "";
    left: -12px;
    bottom: -118px;
    background: url(../images/geometry_img03.png) top left / cover no-repeat;
    width: 316px;
    height: 237px;
    z-index: 0;
}
.greeting .inner {
  padding: 270px 50px 120px;
}
.greeting .inner::before {
    position: absolute;
    content: "";
    width: 280px;
    height: 276px;
    left: 30px;
    top: 20px;
    background: url(../images/geometry_img01.png) left top / cover no-repeat;
    z-index: 1;
}
.greeting_box {
  position: relative;
  z-index: 1;
}
.greeting_box::before {
    position: absolute;
    content: "";
    background: url(../images/geometry_img03.png) top left / cover no-repeat;
    width: 316px;
    height: 237px;
    right: -410px;
    top: 180px;
    z-index: 1;
}
.greeting_box:not(:last-child) {
  margin-bottom: 70px;
}

.greeting_text {
    display: flex;
    gap: 100px;
    font-size: 110%;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
}
.greeting_text_wrap > *:not(:last-child) {
  margin-bottom: 2em;
}
.doctor_catch {
  flex-shrink: 0;
    font-size: 200%;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.17em;
    background: linear-gradient(#80b2d9, #84ddb9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 150px;
    height: 590px;
}
.doctor_catch span {
  text-combine-upright: all;
}
.greeting_profile {
  padding-top: 30px;
  line-height: 1.75;
  text-align: right;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.greeting_profile .position {
  font-size: 130%;
  padding-bottom: 10px;  
}

.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
    font-size: 65%;
    margin-right: 10px;
    background: var(--sub-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    letter-spacing: 0.18em;
}
.greeting_profile .name span:nth-of-type(2) {
  background: var(--main-color);
}
.greeting_btn {
  margin-top: 30px;
  text-align: right;
}
.greeting_btn a {
  border: 1px solid var(--main-color);
    padding: 5px 40px 5px 30px;
    color: var(--main-color);
    line-height: 1.5;
    width: 200px;
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
}
.greeting_btn a:hover {
  color: var(--main-color);
}
.greeting_btn a::before {
  color: var(--main-color);
  font-size: 70%;
}
.greeting_btn a::after {
  content: none;
}
.greeting_slider_wrap {
  position: relative;
}
.greeting_slider_wrap::before {
  position: absolute;
  content: "";
      mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(161deg, var(--bg-color), rgba(242, 255, 250, 1),rgba(255, 255, 255, 0));
    width: 1000px;
    height: 843px;
    bottom: 0;
    left: -296px;
    z-index: -1;
    transform: rotate(-50deg);
}
.greeting_slider_wrap::after {
  position: absolute;
  content: "";
      mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(-110deg,rgba(255, 255, 255, 0), rgba(242, 255, 250, 1), var(--bg-color) 70%);
    width: 1000px;
    height: 843px;
    bottom: -50px;
    right: -445px;
    z-index: -1;
    transform: rotate(-214deg);
}
/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting_slider_wrap::before {
    top: 350px;
    bottom: auto;
  }
  .greeting::before {
    mask-size: 100%;
    background: linear-gradient(var(--bg-color), rgba(255, 255, 255, 0) 100px);
  }
  .greeting::after {
    width: 113px;
    height: 85px;
    bottom: -31px;
    left: -3px;
  }
  .greeting .inner {
    padding: 70px 20px;
  }
  .greeting .inner::before {
    width: 100px;
    height: 99px;
    top: -20px;
    left: -23px;
  }
  .greeting_box::before {
     width: 113px;
     height: 85px;
     top: 23px;
     right: -62px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .doctor_catch {
    width: 100%;
    height: auto;
    font-size: 22px;
    writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
  }
.greeting_text {
  flex-flow: column;
  gap: 20px;
}
  .greeting_left {
    width: 100%;
  }

  .greeting_btn {
    margin-top: 40px;
  }
}
/*==================================================================================================================================

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

==================================================================================================================================*/
.pickup {
    position: relative;
}
.pickup::before {
    position: absolute;
    content: "";
    mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(-170deg, rgb(233 255 247), rgba(255, 255, 255, 0));
    width: 1000px;
    height: 843px;
    top: -282px;
    left: -350px;
    z-index: -1;
    transform: rotate(176deg);
}
.pickup::after {
    position: absolute;
    content: "";
    mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(var(--bg-color),rgba(255,255,255,0));
    width: 850px;
    height: 717px;
    top: -104px;
    right: -242px;
    z-index: -1;
    transform: rotate(22deg);
}
.top_pickup {
    max-width: 1600px;
    margin: 0 auto;
    padding: 250px 50px 120px;
}
.top_pickup::before {
    position: absolute;
    content: "";
    background: url(../images/geometry_img02.png) top left / cover no-repeat;
    width: 260px;
    height: 355px;
    left: 28px;
    top: -200px;
    z-index: 1;
}
.top_pickup::after {
position: absolute;
    content: "";
    width: 280px;
    height: 276px;
    right: -18px;
    bottom: -286px;
    background: url(../images/geometry_img01.png) left top / cover no-repeat;
    z-index: 1;
}
.pickup .inner {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
}
.pickup .top_title {
    display: flex;
    justify-content: center;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    height: 505px;
    width: 50px;
}
.pickup .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/logo_mark.svg) center / cover no-repeat;
    width: 325px;
    height: 300px;
    top: -70px;
    z-index: -1;
    opacity: 0.1;
}
.pickup .top_title h2 {
    font-size: 200%;
    letter-spacing: 0.12em;
    text-align: left;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}
.pickup .top_title h2 span {
    text-combine-upright: all;
}
.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 200px;
}

.pickup_item {
  width: calc(50% - 100px);
  padding: 0;
}

.pickup_inner {
    position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: auto;
}

.pickup_title {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 15px;
 width: fit-content;
  margin: 0;
  padding: 0;
  text-align: center;
    top: 0;
    left: 0;
    background: var(--sub-color);
    padding: 30px 10px;
    border-radius: 20px 0;
    color: #fff;
}

.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;
  font-size: 230%;
  writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.25em;
}

.pickup_title span {
  font-size: 250%;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
}

.pickup_img {
  position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
}
.pickup_img::before {
    position: absolute;
    content: "";
    background: linear-gradient(transparent, rgb(60 133 103 / 60%));
    width: 100%;
    height: 200px;
    bottom: 0;
}
.pickup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pickup_naika_catch {
    font-size: 135%;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    padding: 30px 0 60px;
    text-align: center;
    margin-top: -140px;
    position: relative;
    color: #fff;
    z-index: 1;
}
.pickup_naika_catch > span {
    font-size: 130%;
}
.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));
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 20px 35px 20px 20px;
  background: var(--bg-color02);
  color: #555;
  font-size: 100%;
  letter-spacing: 0.15em;
  text-align: center;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

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

.pickup_link .pickup_btn a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--sub-color);
  width: 24px;
  height: 24px;
  font-size: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

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

/* 奇数 */
.pickup_item:nth-child(odd) {
  
}

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


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

.pickup_item:nth-child(even) .pickup_title {
    background: var(--main-color);
}
.pickup_item:nth-child(even) .pickup_img::before {
    background: linear-gradient(transparent, rgba(57, 106, 146, 0.6));
}


.pickup_item:nth-child(2) .pickup_link .pickup_btn a {
  background: var(--bg-color);
}

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

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover::before {
  background: #fff;
}
.pickup_item:nth-child(even) .pickup_link .pickup_btn a::before {
  background: var(--main-color);
}
.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover::before {
  color: var(--main-color);
}
/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
  .pickup::after {
    bottom: 0;
    top: auto;
  }

  .pickup .inner {
    padding: 0;
  }
  
.top_pickup {
  padding: 80px 20px 60px;
}
.top_pickup::before {
  width: 105px;
  height: 143px;
  left: -26px;
}
  .top_pickup::after {
        width: 100px;
        height: 99px;
        bottom: -107px;
        right: -4px;
  }
  .pickup .top_title {
    margin: 0 auto 70px;
    padding: 0;
    width: 100%;
    position: static;
    transform: translateX(0);
    height: auto;
  }

  .pickup .top_title h2 {
    font-size: 20px;
    text-align: center;
    writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
  }
.pickup .top_title::before {
  top: -45px;
    width: 160px;
    height: 148px;
}
.pickup_img::before {
  height: 90px;
}

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

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

  .pickup_title {
    padding: 10px;
    font-size: 110%;
    gap: 5px;
  }
  
  .pickup_title span {
    font-size: 140%;
  }
.pickup_title h2, .pickup_title h3 {
  font-size: 120%;
}
  .pickup_title::before {
    bottom: -20px;
    width: 25px;
    height: 20px;
  }
.pickup_naika_catch {
  font-size: 90%;
  margin-top: -115px;
  padding: 30px 0 40px;
}
  .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%;
  }
}

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

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

==================================================================================================================================*/
.medical {
  position: relative;
    background: 
    linear-gradient(-90deg,rgba(123, 164, 197, 0.3), rgba(135, 199, 150, 0.3)),
    url(../images/medical_bg.jpg) center / cover no-repeat;
    border-radius: 100px;
}
.medical::before {
      position: absolute;
    content: "";
    width: 280px;
    height: 276px;
    right: 78px;
    top: -150px;
    background: url(../images/geometry_img01.png) left top / cover no-repeat;
    z-index: 1;
}
.medical::after {
    position: absolute;
    content: "";
    background: url(../images/geometry_img03.png) top left / cover no-repeat;
    width: 265px;
    height: 199px;
    left: 33px;
    bottom: -160px;
    z-index: 1;
}
.top_medical {
    max-width: 1500px;
    margin: 0 auto;
    padding: 120px 50px 150px;
}
.medical .inner {
  width: 100%;
  max-width: none;
  padding: 0;
}
.medical .top_title .eng {
    -webkit-text-fill-color: #fff;
}
.medical .top_title h2 {
    color: #fff;
}
.medical_list {
  display: flex;
  flex-flow: wrap;
  gap: 60px;
}

.medical_item {
  display: flex;
  width: calc(50% - 30px);
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.medical_inner {
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 80px 30px;
    background: #fff;
}

.medical_title {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

/* .medical_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%);
} */

.medical_title h2,
.medical_title h3 {
  background: none;
  font-size: 180%;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.medical_title span {
  font-size: 100%;
  color: #2e9b48;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
}

.medical_img {
    position: absolute;
    width: 100%;
    height: 100%;
}
.medical_img::before {
    position: absolute;
    content: "";
    background: linear-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0.4));
    width: 100%;
    height: 100%;
}
.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medical_icon {
    background: var(--sub-color);
    padding: 40px;
    width: 30%;
    border-radius: 50%;
}
.medical_text {
  margin: 30px 0;
}

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

.medical_link .medical_btn {
  width: calc((100% / 2) - (10px / 2));
  height: fit-content;
}

.medical_link .medical_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 20px 35px 20px 15px;
  background: var(--bg-color02);
  border: 1px solid var(--bg-color02);
  color: var(--text-color);
  font-size: 95%;
  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;
}

.medical_link .medical_btn a:hover {
  background: var(--sub-color);
  color: #fff;
}

.medical_link .medical_btn a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--sub-color);
    width: 24px;
    height: 24px;
    font-size: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
}

.medical_link .medical_btn a:hover::before {
  right: 12px;
  background: #fff;
  color: var(--sub-color);
}

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

.medical_item:nth-child(odd) .medical_inner {
  margin: 0 0 0 auto;
}

/* 偶数 */
.medical_item:nth-child(even) .medical_icon {
    background: var(--main-color);
}
.medical_item:nth-child(even) {
  padding: 0;
}

.medical_item:nth-child(even) .medical_inner {
  margin: 0 auto 0 0;
}

.medical_item:nth-child(even) .medical_title span {
    color: #2c6ea3;
}
.medical_item:nth-child(2) .medical_link .medical_btn a {
  background: var(--bg-color);
}

.medical_item:nth-child(even) .medical_link .medical_btn a:hover {
  background: var(--main-color);
  color: #fff;
}
.medical_item:nth-child(even) .medical_link .medical_btn a::before {
  background: var(--main-color);
}
.medical_item:nth-child(even) .medical_link .medical_btn a:hover::before {
  background: #fff;
  color: var(--main-color);
}

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
  .medical {
    background: linear-gradient(-90deg,rgba(123, 164, 197, 0.3), rgba(135, 199, 150, 0.3)),
    url(../images/medical_bg_sp.jpg) center / cover no-repeat;
    border-radius: 60px;
  }
  .medical::before {
    width: 100px;
    height: 99px;
    right: -15px;
    top: -34px;
  }
  .medical::after {
    width: 113px;
    height: 85px;
    bottom: -62px;
    left: -18px;
  }
  .top_medical {
    padding: 70px 20px;
  }
  .medical .inner {
    padding: 0;
  }

  .medical .top_title {
    margin: 0 auto 50px;
    padding: 0 20px;
  }

  .medical .top_title h2 {
    font-size: 150%;
  }


  .medical_list {
    width: calc(100%);
  }

  .medical_item {
    width: 100%;
    padding: 0!important;
  }
.medical_icon {
  padding: 15px;
}
  .medical_title {
    padding: 10px;
    font-size: 110%;
  }

  .medical_title h2, .medical_title h3 {
    line-height: 1.5;
  }
  .medical_title::before {
    bottom: -20px;
    width: 25px;
    height: 20px;
  }

  .medical_inner {
    max-width: none;
    min-height: auto;
    margin: 0!important;
    padding: 40px 20px;
    gap: 0;
  }

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

  .medical_link .medical_btn {
    width: calc(50% - 5px);
    height: auto;
    display: flex;
  }
  .medical_link .medical_btn a {
    display: flex;
    align-items: center;
    padding: 10px 32px 10px 10px;
  }
  .medical_link .medical_btn a::before,
  .medical_link .medical_btn a:hover::before {
    right: 7px;
  }
}
/*==================================================================================================================================

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

==================================================================================================================================*/
.feature {
  position: relative;
}
.feature::before {
    position: absolute;
    content: "";
    mask: url(../images/mask_nami.svg) top center / 2000px repeat-x;
    -webkit-mask: url(../images/mask_nami.svg) top center / 2000px repeat-x;
    background: linear-gradient(var(--bg-color), rgba(255,255,255,0)50%);
    width: 100%;
    height: 2000px;
}
.top_feature {
    max-width: 1600px;
    margin: 0 auto;
    padding: 270px 50px 200px;
}
.top_feature::before {
      position: absolute;
    content: "";
    background: url(../images/geometry_img03.png) top left / cover no-repeat;
    width: 265px;
    height: 199px;
    left: 33px;
    top: 65px;
    z-index: 1;
}
.feature .inner {
  position: relative;
    width: 100%;
    max-width: none;
    padding: 0;
}
.feature_list{
  display: flex;
  flex-flow: wrap;
  gap: 100px 30px;
}

.feature_item{
  position: relative;
  display: flex;
  height: auto;
  width: 100%;
  gap: 100px;
}

.feature_img {
  width: 48%;
  flex-shrink: 0;
}
.feature_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.feature_inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0;
  padding: 0;
}

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

.feature_title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px!important;
  padding-bottom: 20px;
}
.feature_title::before {
    position: absolute;
    content: "";
    width: calc(100% + 100px);
    height: 1px;
    background: var(--line-color);
    bottom: 0;
    left: -100px;
}
.feature_title h3{
  font-size: 180%;
  line-height: 1.75;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
}

.feature_num {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 161px;
    height: 100px;
    margin: 0 !important;
    font-size: 130px;
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    color: #d3ebfb;
}
.feature_num span {
    position: absolute;
    font-size: 25px;
    background: none;
    letter-spacing: 0.1em;
    color: #2c6ea3;
  font-weight: 500;
}

.feature_item .btn01 {
  text-align: right;
}

.feature_item .btn01 > *{
  padding: 10px 65px 10px 0;
  font-size: 110%;
  font-family: var(--en-font);
    font-weight: 500;
    font-style: normal;
}

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

/* 左右 */
.feature_item:nth-child(even){
  flex-flow: row-reverse;
}

.feature_item:nth-child(even) .feature_inner{
  margin: 0;
}

  .feature_item:nth-child(even) .feature_title::before {
    left: 0;
  }
  .feature_item:nth-child(even) .feature_num {
    color: #d4f1e8;
  }
  .feature_item:nth-child(even) .feature_num span {
    color: #4da380;
  }
  .feature_item:nth-child(even) .btn01 > *::after {
    background: var(--sub-color);
  }
   .feature_item:nth-child(even) .btn01 > *:hover::after {
    background: var(--sub-color02);
  }


  /* 装飾 */

      .feature_item:nth-child(odd)::before {
      position: absolute;
    content: "";
    mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(rgba(255,255,255,0),rgba(242, 255, 250, 1), var(--bg-color) 70%);
    width: 1000px;
    height: 843px;
    top: -350px;
    right: -445px;
    z-index: -1;
    transform: rotate(-214deg);
  }
  .feature_item:nth-child(even)::before {
     position: absolute;
    content: "";
    mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/mask_shape01.svg) top left / cover no-repeat;
    background: linear-gradient(90deg,rgba(255,255,255,0),var(--bg-color), rgba(242, 255, 250, 1)70%);
    width: 1000px;
    height: 843px;
    top: -270px;
    left: -475px;
    z-index: -1;
    transform: rotate(-50deg);
  }
  .feature_item:nth-child(1)::before {
    content: none;
  }
  .feature_item:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 260px;
    height: 355px;
    right: -130px;
    top: -185px;
    background: url(../images/geometry_img02.png) left top / cover no-repeat;
    z-index: 1;
  }
  .feature_item:nth-child(3)::after {
    position: absolute;
    content: "";
    width: 280px;
    height: 276px;
    left: -160px;
    top: -185px;
    background: url(../images/geometry_img01.png) left top / cover no-repeat;
    z-index: 1;
  }
    .feature_item:nth-child(4)::after {
      position: absolute;
    content: "";
    background: url(../images/geometry_img03.png) top left / cover no-repeat;
    width: 265px;
    height: 199px;
    right: -178px;
    top: -123px;
    z-index: 1;
  }
  
  .feature_item:nth-child(5)::after {
    position: absolute;
    content: "";
    width: 260px;
    height: 355px;
    left: -130px;
    top: -185px;
    background: url(../images/geometry_img02.png) left top / cover no-repeat;
    z-index: 1;
  }
/* ボタン横並び */
.btnflex_feature .btn01{
  width: calc(50% - 2.5px);
}

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

@media screen and (max-width: 640px) {
  .feature{
    padding-bottom: 0;
  }
  .top_feature::before {
    width: 113px;
    height: 85px;
    top: -24px;
    left: 0;
  }

  .top_feature {
    padding: 70px 20px;
  }
  .feature::before {
    mask-size: 100%;
        background: linear-gradient(var(--bg-color), rgba(255, 255, 255, 0) 100px);
  }
  .feature_list{
    gap: 40px;
  }

  .feature_item{
    flex-flow: column;
    width: 100%;
    margin: 0;
    gap: 30px;
  }
.feature_item:nth-child(even)::before {
  top: -80px;
}
.feature_item:nth-child(odd)::before {
  top: -80px;
}
  .feature_img{
    width: 100%;
    margin: 0;
  }

  .feature_inner{
    width: 100%;
    min-height: auto;
    padding: 0;
    margin: 0;
  }
  .feature_num {
        width: 87px;
        height: 52px;
        font-size: 70px;
  }
  .feature_title h3 {
    font-size: 17px;
  }
.feature_num span {
  font-size: 18px;
}
  .feature_title{
    margin-bottom: 15px!important;
    min-height: auto;
    gap: 15px;
  }

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

  /* 左右 */
  .feature_item:nth-child(even){
    flex-flow: column;
  }
  .feature_item:nth-child(even) .feature_inner{
    margin: 0 auto;
  }

  /* 横並び */
  .btnflex_feature .btn01{
    width: 100%;
  }
  /* 装飾 */
  .feature_item:nth-child(2)::after {
    width: 105px;
    height: 143px;
    top: -70px;
    right: -60px;
  }
  .feature_item:nth-child(3)::after {
    width: 100px;
    height: 99px;
    top: -62px;
    left: -40px;
  }
  .feature_item:nth-child(5)::after {
    width: 105px;
    height: 143px;
    top: -36px;
    left: -37px;
  }
  .feature_item:nth-child(4)::after {
    width: 113px;
    height: 85px;
        top: -38px;
        right: -40px;
  }
}

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

  *病状、症状から探す

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

.top_search {
    max-width: 1820px;
    margin: 0 auto;
    padding: 120px 50px 120px;
}
.search .inner {
    padding: 0;
    max-width: none;
}
.search .top_title {
    margin-bottom: 0;
    padding-bottom: 110px;
}
.tab_wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
    gap: 50px;
    border-bottom: 1px solid var(--line-color);
}
.tab_title {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  color: #555;
  font-size: 268%;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    padding: 0 100px;
}
.tab_title::before {
  display: block;
  content: "";
  background: 
  url(../images/search_icon01.png) center / 65% no-repeat,
  var(--bg-color02);
  width: 95px;
  height: 95px;
  border-radius: 50%;
}

.tab_title h3 {
  height: fit-content;
}
.tab_title h3 span {
  color:#4da380;
  padding-bottom: 10px;
}
.search .tab_list {
   position: relative;
  gap: 20px;
}

.search .tab_list .tab {
  position: relative;
  padding: 15px 20px;
  border-radius: 5px;
  min-height: 100px;
  border-radius: 300px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.search .tab_list .tab.active::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  background: var(--sub-color);
  display: block;
  width: 30px;
  height: 25px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}
.search .panel {
  position: relative;
  z-index: 1;
  padding: 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: 80px;
  padding: 15px 45px 15px 30px;
  background: var(--bg-color02);
  color: var(--text-color);
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
}
.search_list li a:hover {
  background: var(--sub-color);
  color: #fff;
}
.search_list li a::before {
font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--sub-color);
    width: 24px;
    height: 24px;
    font-size: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
}

.search_list li a:hover::before {
  background: #fff;
  color: var(--sub-color);
  right: 12px;
}

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

.search_img {
  width: 100%;
  height: 300px;
  margin: 0 !important;
  padding-top: 30px;
}
.search_img  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.panel_flex .search_list {
  width: 100%;
}

.panel_flex .search_list li {
  width: calc(25% - 15px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .top_search {
    max-width: 100%;
    padding: 60px 20px 40px;
  }
  .tab_wrap {
    flex-flow: column;
    gap: 30px;
    padding-bottom: 60px;
  }
  .search .tab_list {
    flex-flow:nowrap;
    gap: 7px;
    margin: 0 0 15px;
  }
  .search .top_title {
    padding-bottom: 50px;
  }
.tab_title::before {
  width: 60px;
  height: 60px;
}
  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 100%;
    transform: translate(0, 0) !important;
  }
.search .tab_list .tab.active::before {
    bottom: -14px;
    width: 15px;
    height: 15px;
}
  .search .panel {
    padding: 0;
  }
.tab_title {
  gap: 15px;
  padding: 0;
  font-size: 23px;
  writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
}
  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 10px 32px 10px 10px;
  }
.search_list li a::before,
.search_list li a:hover::before {
  right: 7px;
}
  /* ----- 画像あり ----- */
  .search .panel_flex.active {
    gap: 20px;
  }

  .search_img {
    width: 100%;
    padding-top: 0;
    height: 100px;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

  *歯科で診る病気と症状

================================================================================================================================== */
.search.shika .top_search {
    padding: 0 50px 120px;
}
.search.shika .tab_title span {
  color: #2c6ea3;
}
.search.shika .tab_title::before {
  background:
  url(../images/search_icon02.png) center / 65% no-repeat,
  var(--bg-color);
}
.search .tab_list_shika {
    position: relative;
  gap: 20px;
}
.tab_wrap_shika {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.search .tab_list_shika .tab_shika {
  position: relative;
  padding: 15px 20px;
  border-radius: 5px;
  min-height: 100px;
  border-radius: 300px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.search .tab_list_shika .tab_shika.active::before {
      content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    background: var(--main-color);
    display: block;
    width: 30px;
    height: 25px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
}
.search .panel_shika {
  position: relative;
  z-index: 1;
}

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

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

/* ----- リンクボタン ----- */
.search_list_shika li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 15px 45px 15px 30px;
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 5px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.search_list_shika li a:hover {
  background: var(--main-color);
  color: #fff;
}
.search_list_shika li a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--main-color);
    width: 24px;
    height: 24px;
    font-size: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
}

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

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

.search_img_shika {
  width: 100%;
  height: 300px;
  margin: 0 !important;
  padding-top: 30px;
}
.search_img_shika img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.panel_flex_shika .search_list_shika {
  width: 100%;
}

.panel_flex_shika .search_list_shika li {
  width: calc(25% - 15px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .tab_wrap_shika {
    flex-flow: column;
    gap: 30px;
  }
  .search.shika .top_search {
    padding: 0 20px 60px;
  }
  .search .tab_list_shika {
    flex-flow: nowrap;
    gap: 7px;
    margin: 0 0 15px;
  }

  .search .tab_list_shika .tab_shika {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
  }
.search .tab_list_shika .tab_shika.active::before {
  bottom: -14px;
  width: 15px;
  height: 15px;
}
  .search .panel_shika {
    padding: 20px;
  }

  .search_list_shika {
    gap: 10px;
  }

.panel_flex_shika .search_list_shika li {
    width: calc(50% - 5px);
  }

  .search_list_shika li a {
    min-height: auto;
    padding: 10px 32px 10px 10px;
  }
.search_list_shika li a::before,
.search_list_shika li a:hover::before {
  right: 7px;
}
  /* ----- 画像あり ----- */
  .search .panel_flex_shika.active {
    gap: 20px;
    padding: 0;
  }

  .search_img_shika {
    width: 100%;
    height: 100px;
    padding-top: 0;
  }

  .panel_flex .search_list_shika {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 10px;
}

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