@charset "UTF-8";

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

  *基本設定

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

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

.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: 70px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 140%;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}

.top_title .eng {
  display: inline-block;
  padding-bottom: 8px;
  color: var(--main-color);
  font-size: 220%;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1;
}
.bg_eng {
    position: absolute;
  font-size: 180px;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 0.78;
  z-index: -1;
}
/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

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

  .top_title .eng {
    font-size: 20px;
  }
  .bg_eng {
    font-size: 60px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 900px;
  overflow: hidden;
}

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

.mvSlider::before {
    position: absolute;
    content: "";
    background: linear-gradient(rgba(255,255,255,0.8) 120px,rgba(255,255,255,0));
    width: 100%;
    height: 450px;
    top: 0;
    left: 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: "\f053";
}

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

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

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

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

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

.mvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + 50px);
  pointer-events: none;
}

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

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

/* MVのアニメーション  */
@keyframes hideImg {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

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

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

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

/* ----- キャッチコピー ----- */
.mvCatch {
    position: absolute !important;
    bottom: 70px;
    left: 50px;
    z-index: 3;
    width: 100%;
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
    max-width: 1600px;
    padding: 0 20px;
}

.mvCatch p {
  font-size: 300%;
  color: #594f48;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  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 10px rgba(255, 255, 255, 1), 0px 0px 20px rgba(255, 255, 255, 1), 0px 0px 20px rgba(255, 255, 255, 1), 0px 0px 20px rgba(255, 255, 255, 1);
}

/* ----- コンテンツ ----- */
.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: 1600px;
    padding: 0 50px;
}

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

.open_bnr {
  position: absolute;
  bottom: 200px;
  display: inline-block;
  padding: 15px;
  background: url(../images/ashirai_circle.png) center / contain no-repeat;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  padding: 15px;
  background: rgba(91, 139, 182, 0.7);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.open_bnr .date {
  font-size: 110%;
  letter-spacing: 0.12em;
}

.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 220%;
  letter-spacing: 0.12em;
}

.open_bnr .nairankai_tit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  font-size: 100%;
  text-align: center;
}
.open_bnr .nairankai_tit::before {
    content: "";
    display: block;
    width: 4em;
    height: 1px;
    background: linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
}
.open_bnr .nairankai_tit::after {
    content: "";
    display: block;
    width: 4em;
    height: 1px;
    background: linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
}

/* サブカラー */
.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;
}
#mvVideo {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

#mvVideo video{
	width: 100%;
	height: 100%;
 	object-fit: cover;
}
/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 500px;
  }
.mvSlider::before {
    height: 300px;
    background: linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0));
}

  /* ----- スライダーの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;
    left: 0;
    display: none;
  }

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

  .mvCatch p {
    font-size: 185%;
    line-height: 1.7;
  }

  .mvContents {
    display: none;
  }
h1 {
    margin-bottom: 0;
}
  .sp_only {
    display: block;
    background: linear-gradient(rgba(225, 235, 245, 0.4),rgba(225, 235, 245, 0.4)),
    url(../images/texture_noise.png) bottom left;
  }

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

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

  .open_bnr {
    position: static;
    width: 80%;
    height: fit-content;
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .open_bnr > * {
    width: 100%;
    height: fit-content;
    aspect-ratio: 1 / 1;
    padding: 15px 20px;
  }
	#mvVideo {
		align-items: initial;
	}	
	
	#mvVideo video {
		object-position: bottom center; /* 下寄せ＋横中央 */
		max-height: 100%;
	}
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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;
  border: 3px solid #fff;
  border-radius: 5px;
  overflow: hidden;
}

.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 .onlyimg a.banner_slide{
	position:relative;
}
.top_banner .onlyimg a.banner_slide[href="#"]{
	pointer-events: none;
}
.top_banner .onlyimg a.banner_slide[href="#"]:before{
    content: "準備中";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.7);
    color: #ffffff;
    transform: translate(-50%, -50%);
}
/* インプットバナー */
.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);
}

/* ----- スライダーバナー ----- */
.top_banner {
    background: 
    linear-gradient(rgba(225, 235, 245, 0.4),rgba(225, 235, 245, 0.4)),
    url(../images/texture_noise.png) top left;
    
}
#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: 100px;
}

/* スライダーの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;
  }

  /* ----- スライダーバナー ----- */
  .top_banner .inner {
    padding: 40px 20px 50px;
  }
  #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;
  }
}

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

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

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

.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 80px;
}

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

/* ----- お知らせ ----- */
.clinic .news .top_title h2 {
  font-size: 150%;
  font-weight: 500;
  
}
.clinic .news .top_title .eng {
    font-size: 400%;
    font-weight: 400;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: right;
}

/* ----- 医院概要 ----- */
.clinic .info {
    font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}
.clinic .info .office_hour .table_wrap {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px rgba(105, 150, 190, 0.15);
    overflow: hidden;
}
.clinic .info .office_hour .title {
  background: #ffffff;
}

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

.clinic .info .speciality .title {
    flex-shrink: 0;
    width: fit-content;
    padding: 10px 30px;
    background: var(--bg-color02);
    text-align: center;
    border-radius: 300px;
}

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

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

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

.clinic .info address .location {
    display: flex;
    align-items: center;
    gap: 15px;
  padding: 25px 0;
  border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

.info_contact_tit {
    flex-shrink: 0;
    width: 115px;
    font-size: 16px;
    color: var(--main-color);
    font-family: var(--en-font);
    font-weight: 500;
    padding: 10px;
    font-style: normal;
    letter-spacing: 0.18em;
}
/* .clinic .info address .location::before {
  content: "\f3c5";
} */

.clinic .info address .location span {
  display: block;
  margin-right: 10px;
}

.clinic .info address .tel {
  padding: 25px 0;
  font-size: 30px;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
    border-bottom: 1px solid var(--line-color);
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.12em;
}

.info_access {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--line-color);
    padding: 25px 0;
}
/* .clinic .info address .tel::before {
  content: "\f3cd";
} */

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  line-height: 1;
}

.clinic .info address .fax p {
  font-size: 30px;
}

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

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

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

.clinic .info .btn01 {
  margin-top: 30px;
  text-align: right;
}
.clinic_under_box {
    display: flex;
    width: calc(100% - 100px);
    height: 450px;
    gap: 10px;
    border-radius: 0 80px 80px 0;
    overflow: hidden;
}
.clinic_under_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.clinic_under_img:nth-child(1) {
    flex: 2;
}
.clinic_under_img:nth-child(2) {
    flex: 1;
}
.clinic_under_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 640px) {
  .clinic .inner > * {
    width: 100%;
  }

  /* ----- 医院概要 ----- */
  .clinic .news .top_title .eng {
    font-size: 34px;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 0;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .news .top_title h2 {
    font-size: 20px;
  }
  
  .info_contact_tit {
    padding: 0;
    width: 100%;
  }
  .clinic .info address .location,
  .clinic .info address .tel,
  .info_access {
    flex-flow: column;
    align-items: flex-start;
    padding: 20px 0;
    gap: 0;
  }
  .clinic .info address .tel {
    line-height: 1.5;
  }

.clinic_under_box {
    width: calc(100% - 20px);
    height: 150px;
    border-radius: 0 20px 20px 0;
}

}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
}
.greeting .bg_eng {
    top: 97px;
    left: -38px;
    color: #e8f1fa;
}
.greeting .inner {
    padding: 200px 50px 100px;
}
.greeting_box {
  position: relative;
  z-index: 1;
}

.greeting_flex {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

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

.greeting_left {
  flex-shrink: 0;
  width: 55%;
}
.greeting_catch {
    position: relative;
    font-size: 200%;
    width: fit-content;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    padding: 10px 40px;
    margin-bottom: 45px;
}
.greeting_catch::before,
.greeting_catch::after {
    position: absolute;
    width: 20px;
    height: 20px;
    content: '';
}

.greeting_catch::before {
    border-left: solid 1px;
    border-top: solid 1px;
    top: 0;
    left: 0;
}

.greeting_catch::after {
    border-right: solid 1px;
    border-bottom: solid 1px;
    bottom: 0;
    right: 0;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_right {
    position: relative;
}
.greeting_img {
    padding: 0px 50px 80px 0;
}
.greeting_img img {
    border-radius: 20px;
    box-shadow: 0px 0px 12px 0px rgba(37, 79, 115, 0.2);
}


.greeting_profile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: absolute;
    color: #fff;
    width: 220px;
    height: 220px;
    background: rgba(91, 139, 182, 0.7);
    border-radius: 50%;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
  right: 0;
    bottom: 0;
}
.greeting_profile::before {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: url(../images/ashirai_circle.png) center / contain no-repeat;
}
.greeting_profile .position {
  font-size: 95%;
}

.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
    font-size: 80%;
    padding-right: 10px;
}
.greeting_btn {
  margin-top: 50px;
}
.greeting_btn > * {
    color: var(--text-color);
    padding: 10px 0 10px 50px;
    background: none;
    border-radius: 0;
}
.greeting_btn > *:hover {
    background: none;
    color: var(--sub-color);
}
.greeting_btn > *::after {
content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: 
    url(../images/btn_arrow.png) center / 40% no-repeat,
    var(--sub-color);
    mask: none;
    -webkit-mask: none;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
}
/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
.greeting .inner {
    padding: 100px 20px 70px;
}
.greeting .bg_eng {
    top: 74px;
    left: -10px;
} 
.greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }
  .greeting_catch {
      font-size: 18px;  
      padding: 10px 20px;
  }

  .greeting_btn {
    margin-top: 40px;
  }
.greeting_img {
    padding: 0px 0 50px 0;
}
  .greeting_profile {
    width: 160px;
    height: 160px;
  }
  .greeting_profile .position {
    font-size: 12px;
  }
  .greeting_profile .name {
    font-size: 15px;
  }
  .greeting_profile .name span{
    font-size: 14px;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  background: 
  url(../images/texture_noise.png) top left,
  #dff2ef;
  z-index: 0;
}
.medical .inner {
    padding: 218px 50px 100px;
}
.medical .bg_eng {
    top: 108px;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 190px;
    z-index: -1;
}

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

.medical_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(20% - 16px);
  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 {
    position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 14px 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(85, 141, 145, 0.3);
  overflow: hidden;
}
.medical_inner::before {
    position: absolute;
    content: "";
    background: var(--sub-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: -10px;
    bottom: -10px;
    transition: 0.2s;
}
.medical_item:hover .medical_inner::before {
    width: 44px;
    height: 44px;
}
.medical_inner::after {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 10px;
    display: block;
    width: 14px;
    height: 7px;
    background: url(../images/btn_arrow.png) no-repeat center / cover;
    transition: 0.2s;    
}
.medical_item:hover .medical_inner::after {
    width: 17px;
    height: 9px;
    transform: rotate(-45deg);

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

.medical_icon {
    width: 70%;
    max-width: 100px;
    margin: 0 auto 15px !important;
    background: #f5f5f5;
    border-radius: 50%;
}

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

.medical_title_eng {
  margin-top: 5px;
  color: var(--sub-color02);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
}

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

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

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

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

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

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

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

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

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
.medical .inner {
    padding: 100px 20px 70px;
}
    .medical .bg_eng {
        font-size: 65px;
        top: 69px;
    }
  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_icon {
    width: 50%;
  }

  .medical_title h3 {
    font-size: 110%;
    line-height: 1.5;
  }
  .medical_title_eng {
    font-size: 8px;
  }

  /* ----- 先頭2つの設定----- */
  /* .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }

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

  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }

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

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

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

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

.feature {
    position: relative;
  /* background:
    url(../images/texture_noise.png) top left,
    rgba(225, 235, 245, 0.3); */
    z-index: 1;
}
.feature .inner {
    padding: 210px 50px 150px;
}
.feature .bg_eng {
    top: 101px;
    width: 100%;
    text-align: center;
    color: var(--bg-color02);
    font-size: 190px;
}
.feature .top_title {
    margin-bottom: 70px;
}
.feature_list{
  display: flex;
  flex-flow: wrap;
  gap: 100px 30px;
}

.feature_item{
    display: flex;
    align-items: center;
    height: auto;
    width: 100%;
    gap: 70px;
}

.feature_img {
    position: relative;
  width: 660px;
  flex-shrink: 0;
  padding: 0 0 60px 60px;
}
.feature_img::before {
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: 
    url(../images/texture_noise.png) top left,
    radial-gradient(at left 0px bottom 0px, rgba(116, 166, 209, 0.8) 50%, rgba(116, 166, 209, 0.4) 50%);
    bottom: 0;
    left: 0;
    border-radius: 20px;
    z-index: -1;
}
.feature_img img {
    border-radius: 20px;
    box-shadow: 0px 0px 12px 0px rgba(37, 79, 115, 0.2);
}

.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 {
  display: flex;
  flex-flow: column;
  margin-bottom: 35px!important;
}

.feature_title h3 {
    position: relative;
    font-size: 210%;
    color: #755a42;
    line-height: 1.75;
    font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    padding-bottom: 30px;
    letter-spacing: 0.12em;
}
.feature_title h3::before {
     position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 1px;
    background: var(--line-color);
    bottom: 0;
    right: 0;
}
.feature_title h3::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sub-color02);
    bottom: -4px;
    left: -120px;
}
.feature_num_en {
    position: absolute;
    transform: rotate(90deg);
    color: #fff;
    letter-spacing: 0.3em;
    bottom: 145px;
    left: -23px;
    font-size: 20px;
    line-height: 1; 
      font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
}
.feature_num{
position: absolute;
    margin: 0 0 5px !important;
    bottom: 5px;
    left: 15px;
    font-size: 90px;
    font-family: var(--en-font);
    font-weight: 400;
    font-style: normal;
    color: #fff;
    line-height: 1;
  
}

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

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

.feature_item .btn01 > *{
  padding: 10px 40px 10px 30px;
  font-size: 95%;
}

.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_title h3::before {
    right: auto;
    left: 0;
}
.feature_item:nth-child(even) .feature_title h3::after {
    left: auto;
    right: -120px;
}
.feature_item:nth-child(even) .feature_img {
    padding: 0 60px 60px 0;
}
.feature_item:nth-child(even) .feature_img::before {
    left: auto;
    right: 0;
    background: 
    url(../images/texture_noise.png) top left,
    radial-gradient(at right 0px bottom 0px, rgba(116, 166, 209, 0.8) 50%, rgba(116, 166, 209, 0.4) 50%);
}
.feature_item:nth-child(even) .feature_img .feature_num {
    left: auto;
    right: 15px;
}
.feature_item:nth-child(even) .feature_img .feature_num_en {
    left: auto;
    right: -23px;
}
/* ボタン横並び */
.btnflex_feature .btn01{
  width: calc(50% - 2.5px);
}

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

@media screen and (max-width: 640px) {
  .feature{
    padding-bottom: 0;
  }

  .feature .bg_eng {
    top: 73px;
    font-size: 60px;
  }
  .feature .inner {
    padding: 100px 20px 70px;
  }
  .feature_list{
    gap: 40px;
  }
  .feature .top_title {
    margin-bottom: 40px;
  }
  .feature_title h3::before {
    width: 100%;
  }
  .feature_title h3::after {
    left: 0;
  }
  .feature_item{
    flex-flow: column;
    width: 100%;
    margin: 0;
    gap: 0;
  }

  .feature_img{
    width: 100%;
    margin: 0;
    padding: 0 0 20px 25px;
  }
  .feature_num_en {
    bottom: 90px;
    left: -26px;
    font-size: 14px; 
  }
   .feature_num {
    bottom: 0;
    left: 8px;
    font-size: 55px;
   }

  .feature_inner{
    width: 100%;
    min-height: auto;
    padding: 30px 0;
    margin: 0;
  }

  .feature_title{
    margin-bottom: 30px!important;
    min-height: auto;
  }
.feature_title h3 {
    font-size: 19px;
}
  .feature_item .btn01{
    text-align: center;
  }

  /* 左右 */
  .feature_item:nth-child(even){
    flex-flow: column;
  }
  .feature_item:nth-child(even) .feature_inner{
    margin: 0 auto;
  }
.feature_item:nth-child(even) .feature_img {
    padding: 0 25px 20px 0;
}
.feature_item:nth-child(even) .feature_img .feature_num_en {
    right: -26px;
}
.feature_item:nth-child(even) .feature_img .feature_num {
    right: 6px;
}
.feature_item:nth-child(even) .feature_title h3::after {
    right: 0;
}
  /* 横並び */
  .btnflex_feature .btn01{
    width: 100%;
  }
}
/*==================================================================================================================================

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

==================================================================================================================================*/
.pickup {
    position: relative;
    background: 
    url(../images/texture_noise.png) top left,
    var(--bg-color);
    z-index: 1;
}
.pickup::before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 811px);
    background: 
    url(../images/texture_noise.png) top left,
    linear-gradient(90deg,rgba(105, 150, 190, 0.5),rgba(71, 162, 149, 0.5)),
    url(../images/pickup_under_img.jpg) center / cover no-repeat;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.pickup .inner {
  width: 100%;
  max-width: none;
  padding: 150px 50px 200px;
}

.pickup .top_title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    z-index: 1;
}
.pickup .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/logo_mark.svg) top left / cover no-repeat;
    width: 72px;
    height: 80px;
    top: -42px;
}
.pickup .top_title .eng {
    position: absolute;
    padding-bottom: 0;
    font-size: 200px;
    z-index: -1;
    color: #fff;
}
.pickup .top_title h2 {
    font-size: 180%;
}
.pickup_list {
  display: flex;
  justify-content: center;
  gap: 70px;
}

.pickup_item {
   display: flex;
  flex-flow: column;
  width: 50%;
  padding: 0;
  background: rgba(255,255,255,0.9);
  max-width: 800px;
  border-radius: 30px;
  overflow: hidden;
      box-shadow: 0px 0px 12px 0px rgba(37, 79, 115, 0.1);
}

.pickup_text_wrap {
    display: flex;
    flex-flow: column;
    padding: 0 70px 60px;
    height: 100%;
}
.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding:  45px 15px 0;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
}

.pickup_title::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 60px;
    background: var(--line-color);
    top: -38px;
}
.pickup_title::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sub-color02);
    top: -38px;
    left: calc(50% + 1px);
    transform: translateX(-50%)
}


.pickup_title h2, .pickup_title h3 {
  background: none;
    line-height: 1.9;
  font-size: 130%;
}

.pickup_title span {
    display: block;
  font-size: 200%;
  color: #3673aa;
}

.pickup_img {
  position: relative;
  z-index: 1;
  height: 450px;
}

.pickup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pickup_text {
  margin: 20px 0 30px;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  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: 18px 35px;
  background: var(--main-color);
  color: #ffffff;
  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: 5px;
}

.pickup_link .pickup_btn a:hover {
  background: #3673aa;
  color: #fff
}

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

.pickup_link .pickup_btn a:hover::before {
  right: 12px;
}

/* ホワイトニング */
.pickup_item:nth-child(1) .pickup_link .pickup_btn {
width: 100%;
}

/* 奇数 */

.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 span {
    color: #419f91;
}

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

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover {
  background: #459287;
  color: #fff;
}

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
.pickup::before {
    height: calc(100% - 402px);
    background: 
    url(../images/texture_noise.png) top left,
    linear-gradient(rgba(255,255,255, 0.3),rgba(255,255,255, 0.3)),
    linear-gradient(rgba(105, 150, 190, 0.5),rgba(71, 162, 149, 0.5)),
    url(../images/pickup_under_img.jpg) center / cover no-repeat;
}
  .pickup .inner {
    padding: 120px 20px 100px;
  }

  .pickup .top_title {
    margin: 0 auto 50px;
    padding: 0 20px;
  }
  .pickup .top_title::before {
    width: 50px;
    height: 55px;
    top: -60px;
  }

  .pickup .top_title h2 {
    font-size: 150%;
  }
.pickup .top_title .eng {
    font-size: 70px;
    width: 100%;
}

  .pickup_list {
    flex-flow: column;
    width: calc(100%);
    gap: 30px;
  }

  .pickup_item {
    width: 100%;
    padding: 0!important;
  }
.pickup_text_wrap {
    padding: 35px 20px 40px 20px;
}
  .pickup_title {
    padding: 0;
    font-size: 110%;
  }
  .pickup_title h2,
  .pickup_title h3 {
    font-size: 100%;
  }
.pickup_title span {
    font-size: 160%;
}
  .pickup_title::after {
    top: -65px;
  }
.pickup_title::before {
    height: 40px;
    top: -55px;
  }
.pickup_img {
    height: 200px;
}
  .pickup_inner {
    max-width: none;
    min-height: auto;
    margin: 0!important;
  }

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

  .pickup_link .pickup_btn {
    width: 100%;
  }
  .pickup_link .pickup_btn a {
    padding: 15px 40px 15px 20px;
  }
}
/* ==================================================================================================================================

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  padding: 0 50px;
}
.search::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    background: 
    url(../images/texture_noise.png) bottom left,
  #dff2ef;
    bottom: 0;
    left: 0;
}
.search .inner {
    position: relative;
    max-width: 1800px;
    padding: 0;
    background: #fff;
    border-radius: 50px;
        box-shadow: 0px 0px 20px 0px rgba(105, 150, 190, 0.2);
        overflow: hidden;
        z-index: 1;
}
.search .inner::before {
    position: absolute;
    content: "";
    background: 
    linear-gradient(rgba(93, 156, 212, 0) 50%,rgba(93, 156, 212, 0.4)),
    url(../images/search_bg.jpg) center / cover no-repeat;
    width: 35%;
    height: 100%;
    top: 80px;
    left: 50px;
    z-index: -1;
    border-radius: 20px 20px 0 0;
}
.search_content {
    margin-left: 30%;
    padding: 120px 70px 100px;
}
.search .tab_list {
  gap: 20px;
}

.search .tab_list .tab {
    padding: 30px 20px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-style: normal;
    border-radius: 10px;
}
.search .tab_list .tab span {
    font-size: 140%;
    padding-right: 5px;
    letter-spacing: 0.12em;
}
.search .panel {
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

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

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

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 20px 10px 45px;
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 5px;
      font-family: var(--jp-font);
    font-weight: 400;
    font-style: normal;
    line-height: 1.75;
    transition: background 0.2s;
  
}
.search_list li a:hover {
    background: #e8e4e1;
}
.search_list li a::before {
  content: "\f002";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
  position: absolute;
  top: 50%;
  left: 19px;
  z-index: 2;
  display: block;
  color: var(--sub-color02);
  transform: translateY(-50%);
  transition: background 0.2s;
}


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

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

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

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

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
.search {
    padding: 0 20px;
}
.search::before {
    height: 20%;
}
.search_content {
     margin-left: 0;
    padding: 70px 20px 180px;   
}
.search .inner {
    border-radius: 30px;
}
.search .inner::before {
    width: 90%;
    height: 150px;
    top: auto;
    left: 0;
    bottom: 20px;
    border-radius: 0 20px 20px 0;
}
  .search .tab_list {
    flex-flow: wrap;
    gap: 7px;
    margin: 0 0 15px;
  }

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

  .search .panel {
    padding: 10px 0;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 30px 0;
}

#infinitySlider .splide__list {
  gap: 20px;
}

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