@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 90px 0;
}

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

.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, section .inner.inner_large {
    padding: 60px 20px;
  }

  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 52px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}

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

.top_title h2 {
  letter-spacing: .1em;
  font-size: 26px;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  letter-spacing: .1em;
  font-size: 150%;
  font-family: var(--font-en);
  font-weight: 400;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 32px;
  }

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

  .top_title .eng {
    margin-bottom: 2px;
    font-size: 18px;
  }
	h1{
		margin-bottom: 20px;
	}
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 730px;
  margin: 0 auto;
  overflow: hidden;
}

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

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

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

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

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

.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}

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

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

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

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

/* ----- MVの画像 ----- */
.mvImg {
  position: relative;
  width: calc(100% - 100px);
  margin: 0 auto;
  height: 100%;
}

@media screen and (max-width:1360px) {
  .mvImg {
    width: calc(100% - 100px);
  }
}
.mvImg .splide__track {
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

  10% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

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

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

@keyframes hideTranslate {

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

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

/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 36%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
}

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

.mvCatch p {
  color: #fff;
  font-size: 28px;
  font-family: var(--font-jp);
  font-weight: 400;
  letter-spacing: .08em;
  text-shadow: 0 0 10px rgb(0 0 0 / .2), 0 0 14px rgb(0 0 0 / .25);
}

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

.mvContents .inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 100px);
  max-width: unset;
  height: 100%;
}

.mvContents .splide__track {
  width: 100%;
  height: 100%;
}
/* ----- MV　診療時間 ----- */
.mv_schedule {
    position: absolute;
    bottom: 40px;
    right: 50px;
    max-width: 500px;
    padding: 5px 20px 16px;
    background: rgb(255 255 255 / .8);
}

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 40px;
  display: inline-block;
  padding: 4px;
  background: rgb(255 255 255 / .3);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgb(20 20 20 / .02);
}

.open_bnr>* {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  padding: 24px 15px 11px;
  background: rgb(192 169 115 / .85);
  color: #ffffff;
  font-family: "garamond-premier-pro", "shippori-mincho", sans-serif;
  line-height: 1.5;
  text-align: center;
}

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

.open_bnr .open_text {
  margin: 6px 0;
  font-size: 190%;
  letter-spacing: .08em;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 65%;
  margin: 0 0 10px;
  padding: 7px 10px 1px;
  background: rgb(255 255 255 / .7);
  border-radius: 300px;
  color: var(--sub-color);
  font-size: 90%;
  text-align: center;
}

.nairakai_date {
  line-height: 1.7;
  letter-spacing: .1em;
}

.nairakai_date .day {
  font-family: var(--font-jp);
  font-weight: 400;
}

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

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

/* MVバナー */
.bnr_wrap {
  position: absolute;
  bottom: 40px;
  left: 320px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 10px;
  width: 290px;
  font-family: var(--font-jp);
  font-weight: 400;
}

.bnr_wrap li {
  background: rgb(198 196 146 / .9);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  letter-spacing: 0.05em;
  line-height: 1.65;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bnr_wrap li:first-of-type {
  position: relative;
  top: 10px;
  margin: 0 10px;
}

.bnr_wrap li:nth-of-type(2) {
  background: rgb(146 179 198 / 0.9);
}

.bnr_wrap li:nth-of-type(3) {
  background: rgb(146 198 186 / .9);
}

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

.sp_only {
  display: none;
}

@media screen and (max-width: 1480px) {
  .mvImg {
    width: calc(100% - 50px);
  }
}

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

  .mvImg {
    width: 100%;
  }

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

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

  .mvCatch .inner {
    width: 100%;
    padding: 0;
  }

  .mvCatch p {
    font-size: min(4vw, 24px);
    line-height: 1.75;
    text-shadow: 0 0 5px rgb(0 0 0 / .2), 0 0 10px rgb(0 0 0 / .25);
  }

  .mvContents {
    display: none;
  }

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

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

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
	
	.mv_schedule {
    position: static;
    padding: 0 20px;
}

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

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

  .open_bnr .open_text {
    margin: 4px 0;
    font-size: 150%;
  }

  /* MVバナー */
  .bnr_wrap {
    position: static;
    flex-wrap: nowrap;
    justify-content: center !important;
    gap: 5px;
    width: 100%;
  }

  .bnr_wrap li {
    width: calc((100% / 3) - (10px / 3));
    height: auto;
    aspect-ratio: 1 / 1;
    line-height: 1.6;
    font-size: min(3.5vw, 14px);
  }

  .bnr_wrap li {
    background: rgb(198 196 146);
  }

  .bnr_wrap li:nth-of-type(2) {
    background: rgb(146 179 198);
  }

  .bnr_wrap li:nth-of-type(3) {
    background: rgb(146 198 186);
  }

  .bnr_wrap li:first-of-type {
    top: 0;
    margin: 0;
  }

}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.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 .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: 20px;
}

.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 13.3333333333px);
}

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

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

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

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

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

#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--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 .inner.inner_large {
    padding-top: 20px;
  }

  /* ----- グリッドバナー ----- */
  .banner_grid ul {
    gap: 10px;
  }

  .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: 1;
}

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

.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
  padding-bottom: 0;
}

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

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

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 0 0 100px;
}

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

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

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

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

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

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

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

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

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

.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;
}

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

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

.clinic .info .speciality {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
}

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

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

.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 .news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0;
    padding: 50px 20px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 0 20px 70px;
  }

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

  .clinic .info .speciality {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

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

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

  *ご挨拶（パターン01）

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

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

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

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

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

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

.greeting_profile {
  padding: 20px;
  background: var(--main-color);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
}

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

.greeting_profile .name {
  font-size: 150%;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
}

.medical_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.medical_item {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: rgb(255 255 255 / .9);
  transition: background 0.2s, color 0.2s;
}

/* 接する面だけ線を表示（PC: 5列） */
.medical_item::before,
.medical_item::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* 右隣と接する面（縦線） */
.medical_item:not(:nth-child(4n))::before {
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 5px);
  background: var(--line-color);
  transform: translateY(-50%);
}

/* 下段と接する面（横線） */
.medical_item:nth-last-child(n + 5)::after {
  left: 50%;
  bottom: 0;
  width: calc(100% - 5px);
  height: 1px;
  background: var(--line-color);
  transform: translateX(-50%);
}

.medical_item:hover {
  background: var(--bg-beige);
}

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

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

.medical_inner::before {
  position: absolute;
  bottom: 8px;
  right: 8px;
  content: "";
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  background: var(--main-color);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: .2s;
}

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

.medical_title h3 {
  color: var(--text-color);
  line-height: 1.65;
  letter-spacing: .1em;
  font-size: 120%;
  transition: color 0.2s;
}

.medical_item:hover .medical_title h3 {
  color: var(--main-color);
}

.medical_title_eng {
  margin-top: 5px;
  letter-spacing: .1em;
  color: var(--main-color);
  font-size: 14px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
  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 .inner {
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .medical_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .medical_item {
    width: 100%;
  }

  .medical_item::before,
  .medical_item::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
  }

  .medical_item:not(:nth-child(3n))::before {
    top: 50%;
    right: 0;
    width: 1px;
    height: calc(100% - 5px);
    background: var(--line-color);
    transform: translateY(-50%);
  }

  .medical_item:nth-child(3n)::before {
    display: none;
  }

  .medical_item::after {
    left: 50%;
    bottom: 0;
    width: calc(100% - 5px);
    height: 1px;
    background: var(--line-color);
    transform: translateX(-50%);
  }

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

  .medical_inner::before {
    bottom: 4px;
    right: 4px;
    width: 6px;
  }

  .medical_icon {
    width: 40%;
    margin: 0 auto 4px !important;
  }

  .medical_title h3 {
    line-height: 1.5;
    font-size: min(3vw, 15px);
  }

  .medical_title_eng {
    font-size: min(2.5vw, 12px);
  }
}

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

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

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

.feature::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/front/bg_pattern.png);
  opacity: .25;
}

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

.feature .top_title h2 {
  font-size: 26px;
}

.feature .top_title h2 .small {
  font-size: 80%;
}

.feature .top_title h2 .number {
  color: var(--main-color);
  padding: 0 2px;
  font-size: 130%;
}

.feature_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  gap: 80px 30px;
}

.feature_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  height: auto;
}

.feature_img {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 560px;
  margin-top: -60px;
  padding: 0 0 20px 20px;
}

.feature_img::before {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: calc(100% - 20px);
  background: rgb(198 196 146 / .4);
}

.feature_item:nth-of-type(2n) .feature_img::before {
  left: auto;
  right: 0;
  background: rgb(146 179 198 / 0.4);
}

.feature_item:nth-of-type(3n) .feature_img::before {
  background: rgb(146 198 186 / .4);
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  width: calc(100% + 50px);
  padding: 60px;
  margin-left: -60px;
  background: #fff;
  box-shadow: 0 0 20px rgb(20 20 20 / .015);
}

.feature_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-bottom: 17px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-color);
}

.feature_title h3 {
  font-size: 140%;
  letter-spacing: .1em;
  line-height: 1.75;
}

.feature_num {
  margin: 0 0 14px;
  color: rgb(198 196 146);
  line-height: 1;
  font-size: 24px;
  font-family: var(--font-en);
  font-weight: 400;
}

.feature_item:nth-of-type(2n) .feature_num {
  color: rgba(146 179 198);
}

.feature_item:nth-of-type(3n) .feature_num {
  color: rgb(146 198 186);
}

.feature_num span {
  padding-left: 3px;
  font-size: 160%;
}

.feature_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding-top: 40px;
}

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

/* ----- 左右 ----- */
.feature_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.feature_item:nth-child(even) .feature_img {
  padding: 0 20px 20px 0;
}

.feature_item:nth-child(even) .feature_inner {
  margin-left: 0;
  margin-right: -60px;
}

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

  .feature::before {
    opacity: .3;
  }

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

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

  .feature_list {
    gap: 40px;
  }

  .feature_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 6px;
    width: 100%;
    margin: 0;
  }

  .feature_img {
    width: 100%;
    margin: 0;
    padding: 0 0 14px 14px;
  }

  .feature_img::before {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }

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

  .feature_num {
    margin: 0 0 8px;
    font-size: 18px;
  }

  .feature_title {
    min-height: auto;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .feature_title h3 {
    font-size: 120%;
  }

  /* ----- 左右 ----- */
  .feature_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .feature_item:nth-child(even) .feature_img {
    padding: 0 14px 14px 0;
  }

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

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  background: var(--bg-color);
}

.search .inner.inner_large {
  display: flex;
  gap: 88px;
}

.search .top_title {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  -ms-writing-mode: tb-rl;
  writing-mode: tb;
}

.search .top_title h2 {
  position: relative;
  top: -2px;
}

.search .top_title .eng {
  margin-bottom: 0;
  color: var(--sub-color);
}

.search .tab_list {
  display: flex;
  flex-flow: wrap;
}

.search .tab_list li {
  position: relative;
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 16px 13px 15px 12px;
  background: #f7f7f7;
  font-size: 90%;
  font-family: var(--font-jp);
  font-weight: 400;
  cursor: pointer;
}

.search .tab_list li:not(:last-of-type) {
  border-right: 1px solid var(--line-color);
}

.search .tab_list li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: calc(100% - 1px);
  height: 1px;
  background: var(--sub-color);
  opacity: 0;
  transition: opacity 0.2s;
}

.search .tab_list li.is-active {
  background: #ededed;
  color: var(--sub-color);
}

.search .tab_list li.is-active::before {
  opacity: 1;
}

.search .tab_list li::after {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  width: 16px;
  height: auto;
  aspect-ratio: 2 / 1;
  background: var(--sub-color);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  transition: .2s opacity;
  opacity: 0;
}

.search .tab_list li.is-active::after {
  opacity: 1;
}

.search .tab_wrapper {
  width: 100%;
}

.search .panel {
  display: none;
  margin: 0 !important;
  padding: 30px 40px 40px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

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

.search_list li {
  position: relative;
  width: calc((100% / 3) - (16px * 2 / 3));
  height: 100%;
}

.search_list li:has(a[href="#"])::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  mask: unset;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
  font-size: 90%;
  transform: translate(-50%, -50%);
}

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding: 16px 36px 15px 24px;
  background: transparent;
  border-bottom: 1px solid var(--line-color);
  color: var(--text-color);
  font-family: var(--font-jp);
}

.search_list li a:hover {
  color: var(--sub-color);
}

.search_list li a::before {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  background: var(--sub-color);
  border-radius: 50%;
  transition: .3s;
}

.search_list li a:hover::before {
  transform: translate(5px, -50%);
}

/* 矢印の背景 */
.search_list li a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "";
  transform: translateY(-50%);
  width: 7px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transition: .3s;
}

.search_list li a:hover::after {
  transform: translate(5px, -50%);
}


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

.search_img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1162 / 280;
  margin: 0 !important;
  overflow: hidden;
}

.search_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panel_flex .search_list {
  width: 100%;
}

@media screen and (max-width: 1410px) {
  .search .tab_list li {
    font-size: 85%;
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search .inner.inner_large {
    flex-direction: column;
    gap: 0;
  }

  .search .top_title {
    align-items: center;
    gap: 6px;
    writing-mode: inherit;
  }

  .search .tab_list {
    flex-flow: row wrap;
  }

  .search .tab_list .tab {
    flex: inherit;
    width: 50%;
    min-height: auto;
    padding: 10px;
    font-size: 80%;
  }

  .search .tab_list li.is-active::after {
    content: none;
  }

  .search .tab_list li:last-of-type {
    border-right: 1px solid var(--line-color);
  }

  .search .panel {
    padding: 0;
  }

  .search_list {
    gap: 8px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: 53px;
    padding: 5px 24px 5px 10px;
    line-height: 1.6;
    font-size: min(3.3vw, 16px);
  }

  .search_list li a::before {
    right: 3px;
    width: 14px;
  }

  .search_list li a::after {
    right: 7px;
    width: 5px;
  }

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

  .search_img {
    width: 100%;
    height: 100px;
  }

  .search_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

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

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

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

  *お悩みから探す（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.problem {
  position: relative;
  background: var(--bg-beige);
}

.problem .inner.inner_large {
  display: flex;
  gap: 88px;
}

.problem .top_title {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  -ms-writing-mode: tb-rl;
  writing-mode: tb;
}

.problem .top_title h2 {
  position: relative;
  top: -2px;
}

.problem .top_title .eng {
  margin-bottom: 0;
}

.problem .tab_wrapper {
  width: 100%;
}

.problem .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 0;
  margin-bottom: 0;
}

.problem .tab_list li {
  position: relative;
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 16px 13px 15px 12px;
  background: #f7f7f7;
  font-family: var(--font-jp);
  font-weight: 400;
  cursor: pointer;
}

.problem .tab_list li.is-active {
  background: #f9f5ea;
  color: var(--main-color);
}

.problem .tab_list li:not(:last-of-type) {
  border-right: 1px solid var(--line-color);
}

.problem .tab_list li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: calc(100% - 1px);
  height: 1px;
  background: var(--main-color);
  opacity: 0;
  transition: opacity 0.2s;
}

.problem .tab_list li.is-active::before {
  opacity: 1;
}

.problem .tab_list li::after {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  width: 16px;
  height: auto;
  aspect-ratio: 2 / 1;
  background: var(--main-color);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  transition: .2s opacity;
  opacity: 0;
}

.problem .tab_list li.is-active::after {
  opacity: 1;
}

.problem .panel {
  display: none;
  margin: 0 !important;
  padding: 30px 40px 40px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.problem_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  height: fit-content;
}

.problem_list li {
  position: relative;
  width: calc((100% / 3) - (16px * 2 / 3));
  height: 100%;
}

.problem_list li:has(a[href="#"])::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  mask: unset;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
  font-size: 90%;
  transform: translate(-50%, -50%);
}

/* ----- リンクボタン ----- */
.problem_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding: 16px 36px 15px 24px;
  background: transparent;
  border-bottom: 1px solid var(--line-color);
  color: var(--text-color);
  font-family: var(--font-jp);
}

.problem_list li a:hover {
  color: var(--sub-color);
}

.problem_list li a::before {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  background: var(--main-color);
  border-radius: 50%;
  transition: .3s;
}

.problem_list li a:hover::before {
  transform: translate(5px, -50%);
}

/* 矢印の背景 */
.problem_list li a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "";
  transform: translateY(-50%);
  width: 7px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transition: .3s;
}

.problem_list li a:hover::after {
  transform: translate(5px, -50%);
}

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

.problem_img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1162 / 220;
  margin: 0 !important;
  overflow: hidden;
}

.problem_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(0.95);
}

.problem .panel_flex .problem_list {
  width: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .problem .inner.inner_large {
    flex-direction: column;
    gap: 0;
  }

  .problem .top_title {
    align-items: center;
    gap: 6px;
    writing-mode: inherit;
  }

  .problem .tab_list {
    flex-flow: row wrap;
  }

  .problem .tab_list .tab {
    flex: inherit;
    width: 50%;
    min-height: auto;
    padding: 10px;
    font-size: 90%;
  }

  .problem .panel {
    padding: 0;
  }

  .problem_list {
    gap: 8px;
  }

  .problem_list li {
    width: 100%;
  }

  .problem_list li a {
    min-height: 53px;
    padding: 5px 24px 5px 10px;
    line-height: 1.6;
    font-size: min(3.3vw, 16px);
  }

  .problem_list li a::before {
    right: 3px;
    width: 14px;
  }

  .problem_list li a::after {
    right: 7px;
    width: 5px;
  }

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

  .problem_img {
    width: 100%;
    height: 100px;
  }

  .problem_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .problem .panel_flex .problem_list {
    width: 100%;
  }

  .problem .panel_flex .problem_list li {
    width: calc(50% - 4px);
  }
}

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

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

==================================================================================================================================*/
#columnSlider .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 130px;
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 100px 50px 56px;
}

#columnSlider .top_title {
  flex-shrink: 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: 60px;
  height: 45px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition: background 0.2s, color 0.2s;
}

#columnSlider .splide__arrow:hover {
  background: var(--main-color);
  color: #fff;
}

#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: 70px;
}

#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: 190px;
  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 a {
  width: 100%;
}

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

#columnSlider .column_item_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;

  aspect-ratio: 13 / 9;
}

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

#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;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.075em;
  opacity: 0.9;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

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

#columnSlider .column_date {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-weight: 400;
}

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

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

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

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

/*==============================================
  *SP　医療コラム
==============================================*/
@media screen and (max-width: 640px) {
  #columnSlider .inner {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
  }

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

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

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

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

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

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

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

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

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 24px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__list {
    gap: 12px;
  }

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