@charset "UTF-8";

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

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

  *基本設定

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

section .inner {
  padding: 100px 0;
}

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

/*==============================================
  *SP 基本設定
==============================================*/
@media screen and (max-width: 640px) {
  section .inner {
    padding: 60px 20px;
  }
}


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

  *タイトル

==================================================================================================================================*/
.top_title {
  position: relative;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-type);
  font-weight: 600;
} 

.top_title::before {
  position: relative;
  display: block;
  margin: 0 auto 15px;
  width: 40px;
  height: 40px;
  background: url(../images/logo.png) no-repeat;
  content: "";
  background-position: top center;
  background-size: 40px auto;
  transform: inherit;
}

.top_title h2 {
  padding: 0;
  font-size: 250%;
}

.top_title span {
  display: inline-block;
  margin-top: 5px;
  color: var(--main-color);
  font-size: 150%;
  font-family: var(--font-type-en);
  font-weight: 500;
  font-style: italic;
}

/* 左寄せ */
.top_title.title_left {
  text-align: start;
}

.top_title.title_left span {
  margin-top: 5px;
}

/*==============================================
  *SP タイトル
==============================================*/
@media screen and (max-width: 640px) {
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
  }

  .top_title span {
    font-size: 18px;
  }

  .top_title.title_left h2 {
    margin-bottom: 5px;
  }
}


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

  *メインビジュアル

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

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

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

.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:hover span {
  background: var(--text-color);
}

.mvSlider .sliderBtn span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.2s;
}

.mvSlider #mv_btnPrev.sliderBtn {
  left: 20px;
}

.mvSlider #mv_btnPrev.sliderBtn span::before {
  content: "\f104";
}

.mvSlider #mv_btnNext.sliderBtn {
  right: 20px;
}

.mvSlider #mv_btnNext.sliderBtn span::before {
  content: "\f105";
  right: 20px;
}

/* 各スライダーのボタンは非表示に */
.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;
  z-index: 1;
  top: 0;
  left: 0;
  height: calc(100% + 50px);
  pointer-events: none;
}

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

.fade.move .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;
  z-index: 3;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
}

.mvCatch p {
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

/* ----------　コンテンツ ---------- */
.mvContents {
  position: absolute!important;
  z-index: 2;
  top: 0;
  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: rgb(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);
}

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

.sp_only {
  display: none;
}

.mv_policy {
  position: absolute;
  bottom: 130px;
  left: 0;
}

.mv_policy img {
  width: 100%;
  height: 100%;
  animation: inherit!important;
}

.mainvisual_banner_items {
  position: absolute;
  right: 0;
  bottom: 130px;
  display: flex;
  gap: 10px;
  width: 40%;
}

.mainvisual_banner_item img {
	max-width: 235px;
  width: 100%;
animation: inherit !important;
}

.mv_bnr {
  position: absolute;
  right: 0;
  bottom: 130px;
  display: flex;
  gap: 10px;
}

.mv_bnr > * {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 160px;
  border-radius: 20px;
  color: #ffffff;
  font-family: var(--font-type);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.mv_bnr div {
  width: 100%;
  height: 100%;
  background: url(../images/h2_bg4.png) no-repeat bottom right / 130px, rgb(110 192 219 / 95%);
  border-radius: 20px;
}

.mv_bnr > *::before,
.mv_bnr > *::after{
  content: "";
  position: absolute;
  margin: auto;
  display: block;
}

.mv_bnr > *::before {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  background: #fff;
}

.mv_bnr > *:nth-child(1)::before {
  width: 50px;
  height: 50px;
  mask: url(../images/mv_bnr_01.svg) no-repeat center / cover;
  -webkit-mask: url(../images/mv_bnr_01.svg) no-repeat center / cover;
}

.mv_bnr > *:nth-child(2)::before {
  width: 40px;
  height: 50px;
  mask: url(../images/mv_bnr_02.svg) no-repeat center / cover;
  -webkit-mask: url(../images/mv_bnr_02.svg) no-repeat center / cover;
}

.mv_bnr > *::after {
  right: 15px;
  bottom: 15px;
  width: 16px;
  height: 14px;
  background: #fff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
}

.mv_bnr > *:hover {
  opacity: 0.7;
}


.mv_bnr p {
  font-size: 130%;
  padding-top: 100px;
}

.mv_bnr > *:hover {
  color: #fff;
}

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

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



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

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

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

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

  .mvCatch {
    top: auto;
    bottom: 20px;
  }

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

  .mvContents {
    display: none;
  }

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

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

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

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

  .open_bnr {
    position: static;
  }

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

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

  .mv_policy {
    position: relative;
    bottom: 0;
  }	

  .mainvisual_banner_items {
	margin-bottom: 30px;
    position: relative;
    left: 0;
    bottom: 0;
	flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border-radius: 0;
  }
	
	.mainvisual_banner_item img {
    max-width: 165px;
	}
	
  .mv_bnr {
    position: relative;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    border-radius: 0;
  }

  .mv_bnr > * {
    border-radius: 0;
    max-width: 410px;
    width: 100%;
    height: 150px;
    margin: 0 auto 10px;
  }

  .mv_bnr > *:last-child {
    margin: 0 auto 30px;
  }

  .mv_bnr div {
    border-radius: 10px;
  }	

  .mv_bnr p {
    padding-top: 90px;
  }

  .mv_bnr > *::before {
    top: 30px;
  }
}


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

  *バナーエリア

==================================================================================================================================*/
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

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

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

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

.top_banner .input a.banner_slide:hover {
  background: #f5f5f5;
}

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

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

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

.top_banner .input .slide_title {
  margin: 0 auto 10px;
  padding: 5px 5px 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%;
}

/* ----- グリッドバナー ----- */
#bannerList ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

#bannerList ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% / 3) - (40px / 3));
}

/* ----- スライダーバナー ----- */
#bannerSlider .splide {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  padding: 0 20px;
}

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

#bannerSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}

#bannerSlider .splide__arrow:hover span {
  background: var(--text-color);
}

#bannerSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.2s;
}

#bannerSlider .splide__arrow--prev {
  left: 0;
}

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

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

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

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

/* ----- ページネーション ----- */
#bannerSlider .splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: -40px;
  left: 50%;
  display: flex;
  gap: 15px;
  transform: translateX(-50%);
}

#bannerSlider .bannerSlider-page {
  width: 12px;
  height: 12px;
  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) {
  #bannerList ul li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  #bannerSlider .splide {
    margin-bottom: 30px;
    padding: 0 15px;
  }

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

  #bannerSlider .splide__arrow span::before {
    font-size: 16px;
  }

  #bannerSlider .splide__pagination {
    bottom: -30px;
  }
}


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

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

==================================================================================================================================*/
.clinic{
  position: relative;
  z-index: 1;
}

.news{
  position: relative;
  z-index: 1;
  padding: 50px 0;
  background: url(../images/top_news_bg.png) no-repeat top right / cover;
}
.news .inner{
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news > *{
  flex-shrink: 0;
}

.news_title_box {
  border-radius: 10px;
  background: url(../images/h2_bg.png) no-repeat bottom right / 130px, #f4a62a;
  text-align: center;
  width: 300px;
  height: auto;
  padding: 45px 40px;
}

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

.news .top_title::before{
  display: none;
}

.news .top_title,
.news .top_title span{
  color: #fff!important;
}

.news_list {
  width: 850px
}

.news_item{
  display: flex;
  align-items: center;
  padding: 22px 50px 22px 40px;
  background: #fff;
  margin: 0 0 20px;
  border-radius: 50px;
  font-family: var(--font-type);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.news_item:last-child{
  margin-bottom: 0;
}

.news_item .date {
  position: relative;
  top: 1px;
  display: inline-block;
  margin-right: 15px;
  padding-left: 30px;
  color: #77644e;
  font-size: 85%;
  line-height: 1;
}

.news_item .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background: #959595;
  mask: url(../images/time.svg) no-repeat center / cover;
  -webkit-mask: url(../images/time.svg) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.news_item em {
  flex-shrink: 0;
  display: inline-block;
  min-width: 100px;
  margin-right: 15px;
  padding: 8px 10px;
  color: #fff;
  font-size: 80%;
  font-style: normal;
  text-align: center;
  line-height: 1;
  background: #e8902b;
  border-radius: 50px;
}

.news_item .news_title{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news_item .news_title a{
  font-size: 95%;
  color: var(--text-color);
}

.news_item .news_title a:hover{
  color: var(--main-color);
}

/* お知らせがない時 */
.news_empty{
  align-items: center;
}

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

.news .btn01 > * {
  min-width: 220px;
  background-color: #dc8700;
  border: solid 1px #dc8700;
  color: #fff;
  padding: 7px 45px !important;
  border-radius: 25px;
}

.clinic .info {
  background: url(../images/under_mocomoco.png) no-repeat top / 100%,
	   url(../images/top_mocomoco.png) no-repeat bottom -1px right 0 / 100%,
	  url(../images/bg_03.jpg) no-repeat top right / cover;
  padding: 100px 0;
}

.clinic .info .inner{
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

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

.clinic .info .speciality{
  border-radius: 5px;
}

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

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

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

.clinic .info address .location{
  padding: 20px 30px 20px 110px;
  background: var(--bg-color);
  border-radius: 50px;
}

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

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

.clinic .info address .tel{
  margin-top: 15px;
  padding: 20px 30px 20px 110px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--font-type-num);
  background: var(--bg-color);
  border-radius: 50px;
  font-weight: 600;
}

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

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

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

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

.clinic .info .speciality{
  display: flex;
  /*gap: 20px;*/
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  padding: 10px;
  background: var(--sub2-color);
  border-radius: 50px;
  color: #56473b;
  font-weight: 600;
}

.clinic .info .office_hour:first-child{
  margin-top: 30px;
}

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

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

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

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

.clinic .info .illustmap img{
  border-radius: 20px;
}



@media screen and (max-width: 640px) {
  .news{
    padding: 0;
  }
  .news::before{
    display: none;
  }
  .news .inner{
    flex-flow: column;
    padding: 60px 20px!important;
  }
  .news_title_box {
	width: 100%;
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  .news .top_title {
    margin: 0 0 10px;
  }
  .news_list{
    width: 100%;
    margin: 0;
  }
  .news_item{
    display: block;
    padding: 15px 10px 15px 20px;
    border-radius: 10px;
  }

  .news_item em{
    margin: 0;
  }

  .news_title{
    margin-top: 10px;
  }

  .clinic::before{
    bottom: -150px;
    right: -200px;
    width: 400px;
    height: 300px;
  }

  .clinic .info {
    padding: 70px 10px;
  }

  .clinic .info .inner{
    flex-flow: column;
    padding: 30px 20px 50px;
  }

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

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

  .clinic .info .speciality .title{
    width: 100%;
  }
	
  .clinic .info address > *::before {
    left: /*30*/20px;
  }
	
  .clinic .info address .location,.clinic .info address .tel {
    border-radius: 10px;
/*     padding: 20px 30px 20px 90px; */
	padding: 20px 20px 20px 70px;
}
}

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

  *ご挨拶

==================================================================================================================================*/
.greeting {
  background:
	  url(../images/under_mocomoco.png) no-repeat top / 100%,
	  url(../images/top_mocomoco.png) no-repeat right bottom -1px / 100%,
	  url(../images/top_doctor_bg1.png) no-repeat top left / 151px,
	   url(../images/top_doctor_bg2.png) no-repeat top right / 151px;
  background-color: #e0f0c0;
  padding-bottom: 80px;
}

.greeting_box {
  position: relative;
  font-family: var(--font-type);
  z-index: 1;
}

.greeting_flex {
  display: flex;
  align-items: center;
  flex-flow: row-reverse; 
  gap: 50px;
}

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

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

.greeting_left .text p {
  font-size: 17px;
}

.greeting_profile {
  padding: 50px 0 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.greeting_profile {
  font-size: 130%;
}

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

/*==============================================
  *SP ご挨拶
==============================================*/
@media screen and (max-width: 640px) {
  .greeting {
    background:
        url(../images/under_mocomoco.png) no-repeat top / 100%,
        url(../images/top_mocomoco.png) no-repeat right bottom -1px / 100%,
        url(../images/top_doctor_bg1_sp.png) no-repeat top center / 100%,
         url(../images/top_doctor_bg2_sp.png) no-repeat bottom center / 100%;
    background-color: #e0f0c0;
    padding: 60px 0;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_profile {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

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


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

  *診療案内

==================================================================================================================================*/
.medical {
  background: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)) , url(../images/medical_bg.jpg) no-repeat center / cover!important;
}

.medical .top_title {
  color: #ffffff;
}

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

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% / 4) - (60px / 4));
  height: auto;
  /* overflow: hidden; */
}

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

.medical_img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  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);
  text-align: center;
}

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

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

.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

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

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

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

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

/*==============================================
  *SP　診療案内
==============================================*/
@media screen and (max-width: 640px) {
  .medical {
    padding-bottom: 0;
    background: linear-gradient(rgb(60, 62, 86 , 0.6),rgb(60, 62, 86 , 0.6)) , url(../images/medical_bg_sp.jpg) no-repeat center / cover;
  }

  .medical_list {
    gap: 10px;
  }

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

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

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

  .medical_icon {
    width: 50%;
  }

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


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

  *三鷹ながえ歯科クリニックの特徴

==================================================================================================================================*/
.feature {
  background:
  url(../images/maru_01.png) no-repeat top 140px right 0 / 500px,
  url(../images/maru_02.png) no-repeat top 140px left 0 / 500px,
  url(../images/cloud.png) no-repeat bottom / 100%,
  url(../images/bg_01.jpg) top / 100%;
}

.feature .inner {
  padding: 100px 0 230px;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc((100% / 3) - (40px / 3));
  height: auto;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.feature_num {
  position: static;
  margin-top: -40px!important;
  margin-bottom: 10px!important;
  text-align: center;
  font-family: var(--font-type);
  font-weight: 600;
  z-index: 1;
}

.feature_num span {
  color: var(--sub-color);
  font-size: 50px;
  line-height: 50px;
  font-family: var(--font-type-num);
}

.feature_img {
  position: relative;
}

.feature_img::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 120px;
  height: 60px;
  border-radius: 60px 60px 0 0;
  background-color: #fff;
  content: "";
  z-index: 0;
}

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

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 20px 10px;
}

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

.feature_title {
  margin-bottom: 20px!important;
}

.feature_title h3 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 90px;
  color: #56473b;
  padding: 0 0 15px;
  font-size: 150%;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px dashed #ece0d3;
}

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

.feature_item .btn01 > * {
  padding: 10px 40px 10px 30px;
  width: 100%;
  background: var(--btn-color);
  border: 1px solid var(--btn-color);
  color: #56473b;
}

.feature_item .btn01 > *::after {
  background: var(--main-color);
}

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

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

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

@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
    background: url(../images/maru_01.png) no-repeat top 40px right 0 / 300px,
		url(../images/cloud.png) no-repeat bottom / 100%,
		url(../images/bg_01.jpg) top / 100%
  }

  .feature .inner {
    padding: 70px 20px 120px;
  }

  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

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

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

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

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

  *お一人おひとりのご希望の治療を

==================================================================================================================================*/
.treatment {
  background-color: #d2edf0;
  background-image: 
  url("../images/wave.png"), 
  url("../images/top_mocomoco.png"),
  url("../images/top_feature_cloud.png"),
  url("../images/top_feature_wood.png");
  background-repeat: no-repeat,no-repeat,no-repeat,no-repeat;
  background-position: top center,bottom center, right top 100px,bottom center;
  background-size: contain;
  padding: 20px 0 180px;
}

.treatment_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.treatment_item {
  display: flex;
  flex-flow: column;
  width: calc((100% / 3) - (60px / 3));
  height: auto;
  border-radius: 20px;
  background: #ffffff;
  padding: 35px 20px 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.treatment_img {
  text-align: center;
  margin-bottom: 10px;
}

.treatment_img img {
  max-width: 250px;
}

.treatment_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
}

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

.treatment_title {
  margin-bottom: 15px!important;
}

.treatment h3 {
  color: #56473b;
  padding: 0 0 20px;
  font-size: 170%;
  line-height: 1.5;
  letter-spacing: 3px;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px dashed #ece0d3;
}

.treatment h3 span {
  font-size: 200%;
}

.treatment_item:nth-child(1) h3 span {
  color: #50aac4;
}

.treatment_item:nth-child(2) h3 span {
  color: #ea8c62;
}

.treatment_item:nth-child(3) h3 span {
  color: #82b13f;
}

.treatment ul {
  padding: 10px 10px 0 10px;
}

.treatment li {
  padding-left: 30px;
  position: relative;
  font-family: var(--font-type);
  font-size: 17px;
}

.treatment li > *::before {
  display: block;
  content: "";
  width: 17px;
  aspect-ratio: 1;
  background: #50aac4;
  -webkit-mask-image: url(../images/medical_check.png);
          mask-image: url(../images/medical_check.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left top;
          mask-position: left top;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  position: absolute;
  left: 0;
  top:calc((2.2em - 17px) / 2);
}

 .treatment li > *::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 16px;
  height: 14px;
  background: #bcb5b0;
  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;
}

 .treatment li > *:hover::after {
  right: 12px;
}

.treatment_item:nth-child(2) li > *::before {
  background: #ea8c62;
}

.treatment_item:nth-child(3) li > *::before {
  background: #82b13f;
}

.treatment li a {
  color: #56473b;
}

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

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

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

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

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

@media screen and (max-width: 640px) {
  .treatment {
    padding-bottom: 0;
    background: url(../images/wave.png) no-repeat top center / 250%,
   url(../images/top_mocomoco.png) no-repeat bottom center / contain,
   url(../images/top_feature_cloud.png) no-repeat  right top 100px / 250%,
   url(../images/top_feature_wood.png) no-repeat bottom center / 250%, #d2edf0;
  }

  .treatment_list {
    gap: 30px;
  }

  .treatment_item {
    width: 100%;
  }

  .treatment_img img {
    max-width: 200px;
  }

  .treatment_title {
    min-height: auto;
    margin-bottom: 15px!important;
  }

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

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

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

  *当院こだわりの治療〜長く健康な口腔環境を〜

==================================================================================================================================*/
.oral {
  background: 
	  url(../images/sankaku_04.png) no-repeat right top 80px/ 400px,
	  url(../images/sankaku_01.png) no-repeat left top 80px / 500px,
	  url(../images/sankaku_02.png) no-repeat right top 30% / 400px,
	  url(../images/sankaku_03.png) no-repeat left bottom 30% / 400px,
	  url(../images/sankaku_04.png) no-repeat right bottom 50px / 400px;
}

.oral .inner {
  padding: 50px 0 100px;
}

.oral .top_title em {
  display: table;
  font-style: normal;
  margin: 20px auto;
  padding: 5px 100px;
  background: var(--sub2-color);
  border-radius: 50px;
  font-size: 75%;
}

.oral_list{
  display: flex;
  flex-flow: wrap;
  padding-top: 30px;
}

.oral_item{
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  margin-bottom: 80px;
  max-width: 1200px;
}

.oral_item:last-child{
  margin-bottom: 50px;
}

.oral_img {
  position: relative;
  flex-shrink: 0;
  width: 40%;
  margin-right: 10px;
}

.oral_item:nth-child(even) .oral_img {
  margin-right: 0;
  margin-left: 10px;
}

.oral_img::after,
.oral_item:nth-child(even) .oral_img::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -50px;
  width: calc(100% + 290px);
  height: 100%;
  background:url(../images/bg_02.jpg) no-repeat top right / 100%;
}

.oral_img::after {
  left: -370px;
  border-radius: 0 0 30px 0;
}

.oral_item:nth-child(even) .oral_img::after {
  left: auto;
  right: -370px;
  border-radius: 0 0 0 30px;
}

.oral_img img{
  border-radius: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.oral_inner{
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 60px;
  background: rgb(255, 255, 255 , 0.5);
  border-radius: 20px;
}

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

.oral_title{
  display: flex;
  flex-flow: column;
  margin-bottom: 30px!important;
}

.oral_title h3{
  font-size: 250%;
  line-height: 1.75;
  font-weight: 600;
  text-align: center;
  color: #726052;
  border-bottom: 2px dashed #ece0d3;
  padding: 0 0 20px;
}

.oral_inner h4{
  font-size: 140%;
  font-weight: 600;
  text-align: center;
  color: #726052;
  padding: 10px;
  border-radius: 50px;
  background: url(../images/bg_01.jpg) no-repeat center right / 100%;
}

.oral_inner p {
  line-height: 1.75;
}

.oral_inner > ol{
  flex-flow: wrap!important;
  gap: 10px!important;
  font-family: var(--font-type);
  margin-bottom: 50px!important;
}

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

.oral_item .btn01 > *{
  padding: 10px 40px 10px 30px;
  font-size: 110%;
  width: 100%;
}

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

/* 左右 */
.oral_item:nth-child(even){
  flex-flow: row-reverse;
  border-radius: 30px;
}

.oral_item:nth-child(even) .feature_inner{
  padding: 50px 50px 60px 0;
}

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

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

@media screen and (max-width: 640px) {
  .oral{
    padding-bottom: 0;
    background: url(../images/sankaku_01.png) no-repeat left top 180px / 400px,
   url(../images/sankaku_02.png) no-repeat right top 30% / 400px,
   url(../images/sankaku_03.png) no-repeat left bottom 30% / 400px,
   url(../images/sankaku_04.png) no-repeat right bottom 50px / 300px;
  }
	
  .oral .inner {
    padding: 50px 20px 0;
  }
	
  .oral .top_title em {
    padding: 5px 20px;
  }
  
  .oral_list{
    gap: 40px;
  }

  .oral_item{
    flex-flow: column;
    width: 100%;
    margin: 0;
  }

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

  .oral_inner{
    width: 100%;
    min-height: auto;
    background: rgb(255, 255, 255, 0.8);
    padding: 30px 20px;
    margin: 0;
  }

  .oral_title{
    margin-bottom: 15px!important;
    min-height: auto;
  }
	
  .oral_title h3 {
    font-size: 190%;
    text-align: left;
  }
	
  .oral_inner h4 {
    padding: 10px 30px;
    border-radius: 10px;
    line-height: 1.5;
  }
	
  .oral_item .btn01{
    text-align: center;
  }

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

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

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

  *三鷹ながえ歯科クリニックの特徴

==================================================================================================================================*/
.orthodontic { 
  background-image: linear-gradient(-45deg, #fffae4 25%, #fffbeb 25%, #fffbeb 50%, #fffae4 50%, #fffae4 75%, #fffbeb 75%, #fffbeb);
  background-size: 20px 20px;
  background-attachment: fixed;
}

.orthodontic_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.orthodontic_item {
  display: flex;
  flex-flow: column;
  width: calc((100% / 3) - (60px / 3));
  height: auto;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 3px 3px #603c14, -3px -3px #fcc900;
}

.orthodontic_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 0 10px;
}

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

.orthodontic_img img {
  border-radius: 18px;
}

.orthodontic_title {
  margin-bottom: 20px!important;
}

.orthodontic_title h3 { 
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 90px;
  color: #56473b;
  padding: 0 0 15px;
  font-size: 180%;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px dashed #ece0d3;
}

.orthodontic ul {
  padding: 0 10px 0 20px;
}

.orthodontic li {
  padding-left: 30px;
  position: relative;
  font-family: var(--font-type);
  font-size: 17px;
}

.orthodontic li::before {
  display: block;
  content: "";
  width: 17px;
  aspect-ratio: 1;
  background: var(--sub-color);
  -webkit-mask-image: url(../images/medical_check.png);
          mask-image: url(../images/medical_check.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left top;
          mask-position: left top;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  position: absolute;
  left: 0;
  top:calc((2.2em - 17px) / 2);
}

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

.orthodontic .btn01 > * {
  padding: 10px 40px 10px 30px;
  width: 95%;
  background: var(--btn-color);
  border: 1px solid var(--btn-color);
  color: #56473b;
}

.orthodontic .btn01 > *::after {
  background: var(--main-color);
}

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

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

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

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

  .orthodontic_list {
    gap: 30px;
  }

  .orthodontic_item {
    width: 100%;
  }

  .orthodontic_title {
    min-height: auto;
    margin-bottom: 15px!important;
  }

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

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

  *病状、症状から探す

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

.search .tab_list {
  gap: 10px;
}

.search .tab {
  width: calc((100% / 2) - (10px / 2));
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: var(--main-color);
}

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

.search_list li {
  width: calc((100% / 3) - ( 40px / 3));
  height: fit-content;
}

/* リンク */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 30px;
  background: var(--bg-color);
  color: var(--text-color);
}

/* 矢印 */
.search_list li a::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 19px;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
          mask: url(../images/btn_arrow.png) no-repeat center / 14px 7px;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / 14px 7px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

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

/* 矢印の背景 */
.search_list li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.search_list li a:hover::after {
  background: #ffffff;
}

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

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

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

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

/* ----- 科目ごとの色 ----- */
.search .tab2 {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}

.search .panel2 {
  background: var(--sub-color);
}

.search .panel2 .search_list li a:hover::before {
  background: var(--sub-color);
}

.search .panel2 .search_list a::after {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}

.search .panel2 .search_list a:hover::after {
  background: #ffffff;
}

/*==============================================
  *SP　病状、症状から探す
==============================================*/
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

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

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: calc(100%);
  }

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

  .search .panel {
    padding: 20px;
  }

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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


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

  *医療コラム

==================================================================================================================================*/
.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((100% / 4) - (75px / 4));
}

.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: 10px 10px;
  overflow: hidden;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

  .column_box {
    width: 100%;
  }
}


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

  *無限スライダー

==================================================================================================================================*/
.infinitySlider {
  margin: 15px 0;
}

.infinitySlider .splide__list {
  gap: 10px;
}

.infinitySlider .splide__slide {
  width: 350px !important;
}

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