@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
--------------------- */
/* ==================================================================================================================================

  *基本設定

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

section .inner {
  padding: 100px 40px;
  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;
  }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  padding-top: 40px;
  background: url(../images/common/title_bg.png) no-repeat top center / calc(40px * 1) calc(30px * 1);
}
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  color: var(--title-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 220%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.top_title .eng {
  display: inline-block;
  margin-top: 10px;
  color: var(--sub-color);
  font-family: var(--en-font);
  font-weight: 500;
  font-size: 140%;
  letter-spacing: 0.14em;
  line-height: 1;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 20px;
  }
  .top_title h2 {
    font-size: 25px;
  }
  .top_title .eng {
    font-size: 15px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

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

@media screen and (max-width: 1550px) {
  .mainvisual {
  height: 49vw;
  }
}

@media screen and (max-width: 1440px) {
  .mainvisual {
  height: 54vw;
  }
}

@media screen and (max-width: 1290px) {
  .mainvisual {
  height: 720px;
  }
}

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

.mvSlider::before{
  content: '';
  position: absolute;
  background: url(../images/front/dots_square_blue.png) no-repeat center / contain;
  width: 100px;
  height: 100px;
  top: 413px;
  left: 10px;
  z-index: 1;
}

.mvSlider::after{
  content: '';
  position: absolute;
  background: url(../images/front/dots_square_pink.png) no-repeat center / contain;
  width: 100px;
  height: 100px;
  top: 78px;
  right: 0;
  z-index: 1;
}

/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}
.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
  padding: 0 60px;
}
@media screen and (max-width: 1440px) {
  .mvImg{
    padding: 0 40px;
  }
}
.mvImg .splide__track {
  width: 100%;
  height: 100%;
  border-radius: 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: calc(100% + 50px);
  pointer-events: none;
}

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

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

/* MVのアニメーション  */
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  bottom: 250px;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
.mvCatch p {
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 181.25%;
  line-height: 1.55;
  letter-spacing: 0.135em;
  font-feature-settings: 'palt';
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

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

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}
.open_bnr .date {
  font-size: 110%;
}
.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}
.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 90%;
  text-align: center;
}

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

/* ----- 左側のバナー ----- */
.mv_bnr_left{
  position: absolute;
  bottom: 50px;
  left: 60px;
  display: flex;
  gap: 20px;
  z-index: 1;
}

.mv_bnr_left div a{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 10px 20px;
  width: 200px;
  height: 200px;
  background: url(../images/front/mv_bnr_left_bg01.png) no-repeat center / 200px 200px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  transition: opacity 0.3s;
  position: relative;
  z-index: 0;
}

.mv_bnr_left div:nth-of-type(2) a{
  background: url(../images/front/mv_bnr_left_bg03.png) no-repeat center / 200px 200px; 
}

.mv_bnr_left div:nth-of-type(3) a{
  background: url(../images/front/mv_bnr_left_bg02.png) no-repeat center / 200px 200px; 
}

.mv_bnr_left div a:hover{
  opacity: 0.8;
}

.mv_bnr_left div a::before{
  content: '';
  position: absolute;
  background: url(../images/front/mv_bnr_left_icon01.png) no-repeat center / contain;
  width: 60px;
  height: 60px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mv_bnr_left div:nth-of-type(2) a::before{
  background: url(../images/front/mv_bnr_left_icon02.png) no-repeat center / contain;
}
.mv_bnr_left div:nth-of-type(3) a::before{
  background: url(../images/front/mv_bnr_left_icon03.png) no-repeat center / contain;
}
.mv_bnr_left div a .small_text{
  font-size: 13px;
}

.mv_bnr_left div a .viewmore{
  margin-top: 7px;
  padding: 4px 22px 4px 18px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-family: var(--en-font);
  font-weight: 500;
  font-size: 11px;
  position: relative;
  z-index: 0;
}

.mv_bnr_left div a .viewmore::before{
  content: '';
  position: absolute;
  background: url(../images/common/arrow.png) no-repeat center / contain;
  width: 9px;
  height: 8px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 0;
}

/* ----- 右側のバナー ----- */
.mv_bnr_right{
  position: absolute;
  bottom: 50px;
  right: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.mv_bnr_right div{
  width: 300px;
  height: 100px;
}

.mv_bnr_right div a {
  transition: opacity 0.3s;
}

.mv_bnr_right div a:hover {
  opacity: 0.7;
}

.mv_bnr_right div a.comingsoon{
  pointer-events: none;
}

.mv_bnr_right div img{
  border-radius: 10px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 320px;
  }
  .mvSlider::before{
    width: 40px;
    height: 40px;
    top: unset;
    bottom: 0;
    left: 0;
  }
  .mvSlider::after{
    width: 40px;
    height: 40px;
    top: 0px;
  }
  /* ----- スライダーの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;
  }
  .mvImg{
    padding: 0;
  }
  .mvImg .splide__track{
    border-radius: 0;
  }
  /* ----- キャッチコピー ----- */
  .mvCatch {
/*     top: auto; */
	  top:65%;
    bottom: 10px;
    display: none;
  }
  .mvCatch .inner{
    padding: 0 20px;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 14px;
    line-height: 1.75;
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }

  .mv_bnr_left{
    position: unset;
    gap: 8px;
	          width: 100%;
        box-sizing: border-box;
  }
	.mv_bnr_left div{
		width: calc((100% - 16px) / 3);
	}
  .mv_bnr_left div a{
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 42px 5px 5px;
        font-size: 11px;
        background-size: cover;
  }

  .mv_bnr_left div a::before{
        width: 30px;
        height: 30px;
        top: 8px;
  }

  .mv_bnr_left div a .small_text{
    font-size: 7px;
    letter-spacing: 0.05em;
  }

  .mv_bnr_left div a .viewmore{
        margin-top: 5px;
        padding: 2px 14px 2px 9px;
        font-size: 5px;
  }

  .mv_bnr_left div a .viewmore::before{
    right: 4px;
  }
  
  .mv_bnr_right{
	          flex-direction: unset;
        flex-wrap: wrap;
        justify-content: end;
        right: 30px;
        bottom: 25px;
/*     position: unset; 
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: center;*/
  }

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

  /* .mv_bnr_right div:nth-of-type(3){
    width: 100%;
  } */
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }
  .sp_only .inner {
    padding: 0 20px;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
}
/* ==================================================================================================================================

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner{
  position: relative;
  z-index: 1;
}

.top_banner::before{
  content: '';
  position: absolute;
  background: url(../images/front/maru_purple.png) no-repeat center  / contain;
  width: 300px;
  height: 300px;
  top: -180px;
  right: -106px;
  z-index: -1;
}

.top_banner .inner{
  padding: 50px 40px;
}
.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 .slide_img{
  position: relative;
  z-index: 0;
  padding: 5px;
}

.top_banner .onlyimg .slide_img::before{
  content: '';
  position: absolute;
  border: 1px solid var(--line-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 17px;
}

.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
  border-radius: 15px;
}

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

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

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

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

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

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

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

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

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

.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 34px) / 3);
}

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

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

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

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

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

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

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_banner::before{
    width: 150px;
    height: 150px;
    top: 0;
  }

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

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

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 0;
  background: url(../images/common/wave01.png) repeat-x bottom left / 1920px 100px;
  padding-bottom: 250px;
}

.clinic::before{
  content: '';
  position: absolute;
  background: url(../images/front/news_maru.jpg) no-repeat center / contain;
  width: 580px;
  height: 888px;
  top: -470px;
  left: 0;
  z-index: -1;
}

.clinic::after{
  content: '';
  position: absolute;
  background: url(../images/front/town01.png) no-repeat bottom center / 1600px 122px;
  width: 100%;
  height: 122px;
  bottom: 127px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

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

.clinic .news::before{
  content: '';
  position: absolute;
  background: url(../images/front/dots_square_blue.png) no-repeat center / contain;
  width: 100px;
  height: 100px;
  top: 60px;
  right: 22px;
  z-index: -1;
}

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

.clinic .news .news_left {
/*   flex-shrink: 0; */
	display: flex;
    justify-content: space-between;
}

.clinic .news .top_title {
	    margin: 0 0 30px;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
    background: url(../images/common/title_bg.png) no-repeat top 15px left / calc(40px * 1) calc(29px * 1);
    padding: 0 0 0 55px;
}

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

.clinic .news .btn01 a{
  font-size: 14px;
}

/* ----- 待ち時間案内　準備中 ----- */
.clinic .news .inner {
  position: relative;
}

.clinic .news .inner::before {
  content: '準備中';
  display: block;
  color: #fff;
  background-color: #3a3a3a;
  background-repeat: no-repeat;
  background-size: cover;
  width: 268px;
  height: 398px;
  position: absolute;
  top: 96px;
  left: 40px;
  z-index: 2;
  opacity: 0.9;
  text-align: center;
  font-size: 18px;
  padding-top: 180px;
}

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

  .clinic .news .inner::before {

    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

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

.clinic .info::before{
  content: '';
  position: absolute;
  background: url(../images/front/maru_pink.png) no-repeat center / contain;
  width: 400px;
  height: 400px;
  bottom: 160px;
  right: -200px;
  z-index: -1;
}

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

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

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

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

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

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

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-family: var(--en-font);
  font-weight: 500;
  font-size: 33px;
  line-height: 1;
  letter-spacing: 0.1em;
}

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

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

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

.clinic .info .note {
  margin-top: 20px;
  padding-left: 12px;
}

.clinic .info .speciality {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 30px 20px;
  background: var(--bg-gray);
  text-align: center;
  border-radius: 13px;
  line-height: 1.6;
}

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

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic{
    padding-bottom: 50px;
    background: url(../images/common/wave01.png) repeat-x bottom left / 640px 33px;
  }
  .clinic::before{
    width: calc(580px * 0.4);
    height: calc(888px * 0.4);
    top: -150px;
  }
  .clinic::after{
    background: url(../images/front/town01.png) no-repeat bottom center / contain;
    width: 120%;
    height: 50px;
    bottom: 40px;
  }
  /* ----- お知らせ ----- */
  .clinic .news::before{
    width: 50px;
    height: 50px;
    top: 60px;
    right: 0;
  }
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
	.clinic .news .news_left{
		    display: block;
	}
	.clinic .news .top_title{
		flex-direction: column-reverse;
    gap: 0;
    padding: 40px 0 0;
    background: url(../images/common/title_bg.png) no-repeat top center / calc(40px * 1) calc(30px * 1);
		        margin-top: 50px;
	}
	.clinic .news .btn01{
		margin-top: 30px;
	}

  /* ----- 医院概要 ----- */
  .clinic .info::before{
    width: 250px;
    height: 250px;
    bottom: 310px;
    right: -30%;
  }
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
  }

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

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

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

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

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 0;
  background: url(../images/front/wave02.png) no-repeat bottom -300px center / 1920px 647px, var(--bg-color);
  padding-bottom: 260px;
}

.greeting::before{
  content: '';
  position: absolute;
  background: url(../images/front/set_maru01.png) no-repeat center / contain;
  width: calc(510px * 0.5);
  height: calc(794px * 0.5);
  bottom: -100px;
  left: 0;
  z-index: -1;
}

.greeting .inner{
  padding-top: 0;
  padding-bottom: 0;
}

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

.greeting .top_title{
  margin-bottom: 40px;
}

.greeting_flex {
  display: flex;
  gap: 60px;
}

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

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

.greeting_text{
  padding-top: 40px;
}

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

.greeting_text p{
  line-height: 1.6;
}

.greeting_text h3{
  margin-bottom: 40px!important;
  color: var(--main-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.6;
}

.greeting_img{
  position: relative;
  z-index: 0;
  padding: 40px 43px 0 0;
}

.greeting_img::before{
  content: '';
  position: absolute;
  background: url(../images/front/dots_square_blue_greeting.png) no-repeat center / contain;
  width: 150px;
  height: 150px;
  top: 0;
  right: 0;
  z-index: -1;
}

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

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

.greeting_profile .position {
  font-size: 18px;
}

.greeting_profile .name {
  font-size: 26px;
}

.greeting_profile .name span{
  font-size: 16px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting{
    padding-bottom: 50px;
    background: url(../images/front/wave02.png) no-repeat bottom -80px center / 640px 209px, var(--bg-color);
  }

  .greeting::before{
    width: calc(510px * 0.2);
    height: calc(794px * 0.2);
    bottom: -30px;
  }

  .greeting .inner{
    padding: 37px 20px 70px;
  }

  .greeting .top_title{
    margin-bottom: 20px;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_text{
    padding-top: 0;
  }

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

  .greeting_text h3{
    margin-bottom: 20px !important;
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .greeting_text p{
    line-height: 1.75;
  }

  .greeting_img{
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px 0 30px;
  }

  .greeting_img::before{
    width: 80px;
    height: 80px;
  }

  .greeting_profile .position{
    font-size: 16px;
  }

  .greeting_profile .name{
    font-size: 20px;
  }

  .greeting_profile .name span{
    font-size: 14px;
  }

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

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

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

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

.feature::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/front/set_maru02.png), url(../images/front/set_maru03.png), url(../images/front/set_maru04.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: calc(220px* 1) calc(533px* 1), calc(385px* 1) calc(653px* 1), calc(400px* 1) calc(592px* 1);
  background-position: 0% 366px, 100% 20px, 100% calc(100% + 0px);
  top: 0;
  left: 0;
  z-index: -1;
}

.feature .inner{
  padding-top: 0;
  padding-bottom: 120px;
}

.feature .top_title{
  margin-bottom: 40px;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  border: 1px solid var(--line-color);
  border-radius: 20px;
  margin-top: 70px;
  position: relative;
  z-index: 0;
}

.feature_num {
  position: absolute;
  top: -70px;
  right: 0;
  margin: 0 0 0 !important;
  width: 127px;
  height: 130px;
  background: url(../images/front/fukidashi.png) no-repeat top center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--en-font);
  font-weight: 500;
  font-size: 150%;
}

.feature_num span {
  padding: 5px;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.1em;
}

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

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

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

.feature_title h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 102px;
  padding-bottom: 32px;
  color: var(--main-color);
  font-family: var(--jp-font);
  font-weight: 700;
  font-size: 125%;
  line-height: 35px;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 0;
}

.feature_title h3::before{
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 3px dotted #aab3cb;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.feature_text p{
  font-size: 15px;
  letter-spacing: 0.1em;
}

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

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

.feature_button .btn01 a{
  min-width: 200px;
}

.feature_text .btnflex .btn01{
  width: calc((100% - 10px) / 2);
}

.feature_text .btnflex .btn01 a{
  width: 100%;
  min-width: unset;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature::before{
    height: calc(100% + 50px);
    background-size: calc(220px * 0.5) calc(533px * 0.5), calc(385px * 0.3) calc(653px * 0.3), calc(400px * 0.4) calc(592px * 0.4);
    background-position: -17% 35%, 111% 2%, 105% 100%;
  }
  .feature .inner{
    padding: 20px 20px 30px;
  }
  .feature .top_title{
    margin-bottom: 10px;
  }
  .feature_list {
    gap: 10px;
  }
  .feature_item {
    width: 100%;
    margin-top: 55px;
  }
  .feature_num{
    top: -55px;
    width: calc(127px * 0.8);
    height: calc(130px * 0.8);
  }
  .feature_num span{
    font-size: 30px;
  }
  .feature_inner{
    padding: 25px 20px;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
  .feature_title h3{
    min-height: unset;
    padding-bottom: 20px;
    font-size: 115%;
    line-height: 1.5;
  }
  .feature_button .btn01 a{
    width: 80%;
  }
  .feature_text .btnflex {
    flex-direction: column;
  }
  .feature_text .btnflex .btn01 {
    width: 100%;
    text-align: center;
  }
  .feature_text .btnflex .btn01 a{
    width: 80%;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  z-index: 0;
  margin-top: 120px;
}

.medical::before{
  content: '';
  position: absolute;
  width: 100%;
  height: calc(100% - 100px);
  bottom: 0;
  left: 0;
  background-color: #faf4fe;
  background-image: url(../images/front/dots_square_purple_medical01.png), url(../images/front/dots_square_purple_medical02.png), url(../images/front/dots_square_purple_medical03.png), url(../images/front/town02.png) ;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 138px 113px, 84px 108px, 165px 165px, 1478px 132px;
  background-position: 222px 0px, calc(100% - 36px) 40%, 70px calc(100% - 300px), 50% calc(100% - 132px);
  z-index: -1;
}

.medical::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 620px;
  top: -380px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/front/wave03.png) no-repeat center / 1920px 620px;
  z-index: -2;
}

.medical .inner{
  padding-top: 0px;
  padding-bottom: 370px;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 40px) / 3);
  height: auto;
}

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

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.medical_inner::before{
  content: '';
  position: absolute;
  border: 1px solid #babfcb;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  z-index: -1;
}

.medical_inner::after{
  content: '';
  position: absolute;
  background: url(../images/common/arrow.png) no-repeat center / 15px 12px, url(../images/common/btn_bg.jpg) no-repeat top / cover;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  bottom: 20px;
  right: 20px;
  z-index: 0;
}

.medical_item:hover .medical_inner::after{
  filter: brightness(1.2);
}

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

.medical_title_eng {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #cabdd8;
  font-family: var(--en-font);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.18em;
  text-align: center;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

.medical_icon {
  width: 70%;
  max-width: 150px;
  margin: 0 auto 15px !important;
  padding: 35px;
  background: url(../images/front/medical_icon_bg02.jpg) no-repeat center / cover;
}

.medical_title h3 {
  color: var(--main-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 120%;
  line-height: 1.6;
}

.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: 180px;
  margin: 0 auto 15px !important;
  padding: 45px;
  background: url(../images/front/medical_icon_bg01.jpg) no-repeat center / cover;
}
.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 150%;
}

/* 境界線の波 */
.medical_bg_line{
  position: relative;
  z-index: 0;
}

.medical_bg_line::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 1);
  background-size: auto auto;
  mask: url(../images/common/wave01.png) repeat-x top left / 1920px 100px;
  -webkit-mask: url(../images/common/wave01.png) repeat-x top left / 1920px 100px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    margin-top: 120px;
  }
  .medical::before{
    height: 100%;
    background-size: calc(138px * 0.5) calc(113px * 0.5), calc(84px * 0.5) calc(108px * 0.5), calc(165px * 0.4) calc(165px * 0.4), calc(1478px * 0.25) calc(132px * 0.25);
    background-position: 0% 18%, 105% 50%, -5% 82%, 50% calc(100% - 50px);
  }
  .medical::after{
    height: 206px;
    top: -150px;
    background: url(../images/front/wave03.png) no-repeat center / 640px 206px;
  }
  .medical .inner{
    padding: 10px 20px 120px;
  }
  .medical_list {
    gap: 10px 8px;
  }
  .medical_item {
    width: calc((100% - 16px) / 3);
  }
  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    justify-content: start;
    min-height: auto;
    padding: 20px 10px 40px;
    border-radius: 10px;
  }
  .medical_inner::before{
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 8px;
  }
  .medical_inner::after{
    background: url(../images/common/arrow.png) no-repeat center / 10px 8px, url(../images/common/btn_bg.jpg) no-repeat top / cover;
    width: 22px;
    height: 22px;
    bottom: 10px;
    right: 10px;
  }
  .medical_title_eng{
    top: 10px;
    left: 5px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .medical_icon {
    width: 65%;
    padding: 8px;
    margin: 0 auto 5px !important;
  }
  .medical_title h3 {
    font-size: 80%;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
  .medical_bg_line::before{
    height: 33px;
    mask: url(../images/common/wave01.png) repeat-x top left / 640px 33px;
    -webkit-mask: url(../images/common/wave01.png) repeat-x top left / 640px 33px;
  }
  /* ----- 先頭2つの設定----- */
  .medical_item:nth-of-type(-n + 2) {
    width: calc(50% - 5px);
    min-height: auto;
  }
  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 20px 20px 30px;
  }
  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 70%;
    padding: 15px;
    margin: 0 auto 10px !important;
  }
  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 120%;
  }
}

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

  *病状、症状から探す（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  z-index: 1;
  padding-bottom: 180px;
}

.search::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/front/search_maru01.png), url(../images/front/search_maru02.png), url(../images/front/search_maru03.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 136px 146px, 240px 432px, 372px 397px;
  background-position: 105px 20px, 0 calc(100% - 196px), 100% 3px;
  z-index: -1;
}

.search::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 647px;
  bottom: -297px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-color);
  background-size: auto auto;
  mask: url(../images/front/wave02.png) no-repeat top center / 1920px 647px;
  -webkit-mask: url(../images/front/wave02.png) no-repeat top center / 1920px 647px;
  z-index: -1;
}

.search .inner{
  padding-top: 20px;
}

.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 25px 17px;
  background: #a9a9a9;
  color: #ffffff;
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
  border-radius: 15px;
}

.search .tab_list li.is-active {
  position: relative;
  z-index: 0;
}

.search .tab_list li.is-active::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  background: var(--main-color);
  background-image: radial-gradient(rgb(255, 255, 255, 0.13) 25%, var(--main-color) 0%);
  background-size: 6px 6px;
  z-index: -1;
}

.search .tab_list li.is-active::after{
  content: '';
  position: absolute;
  width: 25px;
  height: 15px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: var(--main-color);
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 10px;
}

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

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: fit-content;
}

.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 350px;
  min-height: 60px;
  padding: 23px 60px 23px 46px;
  background: #eff0f5;
  color: var(--main-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}

.search_list a:hover{
  background: #e5f7ff;
}

.search_list a::before{
  content: '';
  position: absolute;
  background: url(../images/common/arrow.png) no-repeat center / 15px 12px, url(../images/common/btn_bg.jpg) no-repeat top / cover;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  transition: right 0.3s;
  z-index: 0;
}

.search_list a:hover::before{
  right: 15px;
  filter: brightness(1.1);
}

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

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

.panel_flex .search_img img{
  border-radius: 15px;
}

.panel_flex .search_list {
  grid-template-columns: repeat(2, 1fr);
  width: calc(50% - 700px);
  gap: 20px;
}

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

  .search::before{
    background-size: calc(136px * 0.6) calc(146px * 0.6), calc(240px * 0.6) calc(432px * 0.6), calc(372px * 0.4) calc(397px * 0.4);
    background-position: 0 20px, 0 calc(100% - 196px), 117% 12%;
  }
  .search::after{
    height: 209px;
    bottom: -80px;
    mask: url(../images/front/wave02.png) no-repeat top center / 640px 209px;
    -webkit-mask: url(../images/front/wave02.png) no-repeat top center / 640px 209px;
  }

  .search .inner{
    padding-top: 40px;
  }
  
  .search .tab_list {
    flex-flow: wrap;
    gap: 7px;
    margin: 0 0 15px;
  }

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

  .search .tab_list li{
    border-radius: 10px;
  }

  .search .tab_list li.is-active::before{
    border-radius: 10px;
  }

  .search .tab_list li.is-active::after{
    width: 17px;
    height: 10px;
    bottom: -9px
  }

  /* ----- パネル ----- */
  .search .panel {
    padding: 15px;
  }

  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .search_list a{
    min-width: unset;
    width: 100%;
    padding: 10px 32px 10px 12px;
    font-size: 95%;
    letter-spacing: 0.08em;
  }

  .search_list a::before{
    background: url(../images/common/arrow.png) no-repeat center / 10px 8px, url(../images/common/btn_bg.jpg) no-repeat top / cover;
    width: 22px;
    height: 22px;
    right: 7px;
  }

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

  .panel_flex .search_img {
    width: 100%;
  }

  .panel_flex .search_img img{
    border-radius: 10px;
  }

  .panel_flex .search_list {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 12px;
  }
}

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

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

================================================================================================================================== */
#columnSlider {
  position: relative;
  z-index: 1;
  background: url(../images/front/town03.png) no-repeat bottom 50px left 20px / 283px 123px, var(--bg-color);
  padding-bottom: 40px;
}

#columnSlider::before{
  content: '';
  position: absolute;
  background: url(../images/front/column_square01.png) no-repeat top right / contain;
  width: 154px;
  height: 268px;
  top: -160px;
  right: 0;
  z-index: -1;
}

#columnSlider::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 40px;
  background-color: rgba(255, 255, 255, 1);
  background-size: auto auto;
  mask: url(../images/common/wave01.png) repeat-x top left / 1920px 100px;
  -webkit-mask: url(../images/common/wave01.png) repeat-x top left / 1920px 100px;
  bottom: 0;
  left: 0;
  z-index: -2;
}

#columnSlider .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 130px;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 40px 100px;
}

#columnSlider .top_title {
  flex-shrink: 0;
  margin: 80px 0 0;
}

#columnSlider .top_title h2::before, #columnSlider .top_title h2::after {
  display: none;
}

/* ----- コラムスライダー設定 ----- */
#columnSlider .splide {
  width: 100%;
  padding-top: 75px;
  overflow: hidden;
}

#columnSlider .splide__list {
  align-items: flex-start;
  width: 100%;
}


/* スライダーのArrowボタン */
#columnSlider .splide__arrow {
  position: absolute;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: url(../images/common/btn_bg.jpg) no-repeat top / cover;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition: background 0.2s, color 0.2s;
}

#columnSlider .splide__arrow:hover {
  color: #fff;
  filter: brightness(1.25);
}

#columnSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background 0.2s;
}

#columnSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
}

#columnSlider .splide__arrow--prev {
  right: 50px;
}

#columnSlider .splide__arrow--prev span::before {
  content: "\f104";
}

#columnSlider .splide__arrow--next {
  right: 0;
}

#columnSlider .splide__arrow--next span::before {
  content: "\f105";
}

#columnSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

/* ----- ページネーション ----- */
#columnSlider .splide__pagination {
  position: absolute;
  top: 17px;
  right: 130px;
  z-index: 1;
  display: flex;
  gap: 15px;
}

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

#columnSlider .columnSlider-page.is-active {
  background: var(--main-color);
}

/* ----- コラム個別 ----- */
#columnSlider .column_item:first-child .column_item_thum::before {
  content: "New";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-self: center;
  width: 90px;
  height: 90px;
  padding: 10px 35px 0 0;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.075em;
  opacity: 0.9;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  border-radius: 15px 0 0;
}

#columnSlider .column_item a {
  width: 100%;
}

#columnSlider .column_item a:hover .column_item_thum img {
  transform: scale(1.1);
}

#columnSlider .column_item a:hover .column_title {
  color: var(--main-color);
}

#columnSlider .column_item_thum {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin: 0 0 15px;
  overflow: hidden;
  border: 1px solid #97a1ba;
  border-radius: 15px;
}

#columnSlider .column_item_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  aspect-ratio: 13/9;
}

#columnSlider .column_info {
  display: flex;
  flex-flow: column;
  gap: 9px;
  margin: 0 0 9px;
  color: #747474;
  font-size: 90%;
}

#columnSlider .column_info ul {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}

#columnSlider .column_info ul li {
  min-width: 80px;
  padding: 2px 10px;
  background: var(--line-color);
  color: #ffffff;
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 90%;
  text-align: center;
  border-radius: 5px;
}

#columnSlider .column_date {
  flex-shrink: 0;
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 18px;
}

#columnSlider .column_title {
  color: var(--main-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-size: 120%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

/* ==============================================
  *SP　医療コラム
============================================== */
@media screen and (max-width: 640px) {
  #columnSlider{
    background: url(../images/front/town03.png) no-repeat bottom 50px left 20px / calc(283px * 0.4) calc(123px * 0.4), var(--bg-color);
    padding-bottom: 40px;
  }
  #columnSlider::before{
    top: 0;
    width: calc(154px * 0.45);
    height: calc(268px * 0.45);
  }
  #columnSlider::after{
    height: 33px;
    mask: url(../images/common/wave01.png) repeat-x top left / 640px 33px;
    -webkit-mask: url(../images/common/wave01.png) repeat-x top left / 640px 33px;
  }
  #columnSlider .inner {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px 70px;
  }

  #columnSlider .top_title {
    margin: 0 auto 20px;
  }

  #columnSlider .splide {
    margin-right: -40px;
  }

  #columnSlider .splide__arrow {
    width: 40px;
    height: 40px;
  }

  #columnSlider .splide__arrow--next {
    right: 20px;
  }

  #columnSlider .splide__arrow--prev {
    right: 70px;
  }

  #columnSlider .splide__pagination {
    top: 13px;
    right: 130px;
    justify-content: flex-end;
    gap: 13px;
    transform: translate(0);
  }

  #columnSlider .splide__slide:first-child .column_item_thum::before {
    width: 80px;
    height: 80px;
    padding: 13px 25px 0 0;
  }

  #columnSlider .columnSlider-page {
    width: 8px;
    height: 8px;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
}

#infinitySlider .splide {
  z-index: 1;
}

#infinitySlider .splide__list {
  gap: 20px;
  
}

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

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

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



