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

  *基本設定

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

section .inner {
  padding: 100px 0;
}

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

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *アニメーション

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

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

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

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

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

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

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

  *タイトル

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

.top_title::before {
  content: "";
  display: block;
  width: 51px;
  height: 36px;
  background: url(../images/common/mark.svg) no-repeat center / 100%;
  margin: 0 auto 4px;
}

.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  color: var(--text-color-brown);
  font-size: 220%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}


.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 150%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
  }
  .top_title .eng {
    font-size: 18px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.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;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}
.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}
.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 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: 35%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}

.mvCatch p {
  color: var(--text-color-brown);
  font-size: 175%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
  text-align: center;
}

.mvCatch p  span {
  margin: 0 5px;
  color: var(--main-color);
  font-size: 140%;
}

.mvCatch p i  {
  margin: 0 3px 0 0;
  color: var(--sub-color);
  font-size: 130%;
  font-style: normal;
  letter-spacing: 0.12em;
}

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

/* ----- 開院バナー ----- */
.mvContents .open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  width: 260px;
  height: 260px;
  padding: 10px 0 0 10px;
  background: url(../images/front/open_bg_light.png) no-repeat left top / 100%;
  right: 0;
}

.mvContents .open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  padding: 15px;
  background: url(../images/front/open_bg_dark.png) no-repeat center / 100%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 90%;
  text-align: center;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

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

  .mvContents .open_bnr > * {
    height: 190px !important;
  }
}

.mvContents .open_bnr > *::before {
  position: absolute;
  content: "";
  width: 102px;
  height: 72px;
  top: -38px;
  background: url(../images/common/mark.svg) no-repeat center / 100%;
  z-index: 10;
}
.mvContents .open_bnr .date {
  font-size: 110%;
  filter: drop-shadow(0 0 7px rgba(42, 165, 181, 0.34)) drop-shadow(0 0 8px var(--sub-color)) drop-shadow(0 0 5px var(--sub-color));
}
.mvContents .open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
  filter: drop-shadow(0 0 7px rgba(42, 165, 181, 0.34)) drop-shadow(0 0 8px var(--sub-color)) drop-shadow(0 0 5px var(--sub-color));
}
.mvContents .open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 300px;
  background: #ffffff;
  color: var(--text-color-brown);
  font-family: var(--font-type);
  font-size: 120%;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
}

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

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

/* ---------- MV上のアイコン ---------- */
.mvContents .mv_icon_wrap {
  position: absolute;
  right: 0;
  bottom: 50px;
  display: flex;
  gap: 15px;
}
.mvContents .mv_icon_wrap {
  position: absolute;
  left: 0;
  bottom: 50px;
  display: flex;
  gap: 12px;
  width: fit-content;
}
.mvContents .mv_icon {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  max-width: 210px;
  max-height: 210px;
  padding: 4px;
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(1) {
  background: rgb(219 231 142 / 47%);
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(1) .mv_bnr_item span {
  margin: 40px 2px 4px 2px;
  filter: drop-shadow(0 0 7px rgba(136, 199, 144, 0.34)) drop-shadow(0 0 8px rgb(136 199 144)) drop-shadow(0 0 5px #88c790);
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(1) .mv_bnr_item span i {
  filter: drop-shadow(0 0 7px rgba(136, 199, 144, 0.34)) drop-shadow(0 0 8px rgb(136 199 144)) drop-shadow(0 0 5px #88c790);
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(1)::before {
  position: absolute;
  content: "";
  width: 57px;
  height: 58px;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/i_calendar.png) no-repeat center / contain;
  z-index: 3;
}


.mvContents .mv_icon_wrap .mv_icon:nth-of-type(2) {
  background: rgb(141 183 209 / 47%);
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item span {
  margin: 40px 2px 4px 2px;
  filter: drop-shadow(0 0 7px rgba(42, 165, 181, 0.34)) drop-shadow(0 0 8px var(--sub-color)) drop-shadow(0 0 5px var(--sub-color));
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item span i {
  filter: drop-shadow(0 0 7px rgba(42, 165, 181, 0.34)) drop-shadow(0 0 8px var(--sub-color)) drop-shadow(0 0 5px var(--sub-color));
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(2)::before {
  position: absolute;
  content: "";
  width: 37px;
  height: 49px;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/i_train.png) no-repeat center / contain;
  z-index: 3;
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(3) {
  background: rgba(243, 153, 62, 0.47);
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item span {
  margin: 40px 2px 4px 2px;
  filter: drop-shadow(0 0 7px rgba(243, 153, 62, 0.34)) drop-shadow(0 0 8px #f3993e) drop-shadow(0 0 5px #f3993e);
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item span i {
  filter: drop-shadow(0 0 7px rgba(243, 153, 62, 0.34)) drop-shadow(0 0 8px #f3993e) drop-shadow(0 0 5px #f3993e);
}


.mvContents .mv_icon_wrap .mv_icon:nth-of-type(3)::before {
  position: absolute;
  content: "";
  width: 55px;
  height: 55px;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/i_phone.png) no-repeat center / contain;
  z-index: 3;
}

.mvContents .mv_icon_wrap .mv_bnr_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding-top: 14px;
  opacity: 1;
  transition: 0.2s;
  z-index: 2;
  overflow: hidden;
}

.mvContents .mv_icon_wrap .mv_icon:nth-of-type(1) .mv_bnr_item {
  background: url(../images/front/mv_bnr_bg1.png) no-repeat center / 100%;
}
.mvContents .mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item {
  background: url(../images/front/mv_bnr_bg2.png) no-repeat center / 100%;
}
.mvContents .mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item {
  background: url(../images/front/mv_bnr_bg3.png) no-repeat center / 100%;
}

.mvContents .mv_icon_wrap .mv_bnr_item::after {
  position: absolute;
  content: "";
  width: 74px;
  height: 103px;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/mv_mark_bg.svg) no-repeat center / 100%;
  z-index: -1;
}

.mvContents .mv_icon_wrap .mv_bnr_item:hover {
  opacity: 0.8;
}

.mvContents .mv_icon_wrap .mv_bnr_item span {
  /* position: relative; */
  display: block;
  margin: 8px 2px 4px 2px;
  color: #fff;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  font-size: 95%;
  line-height: 1.5;
  text-align: center;
  z-index: 1;
}

.mvContents .mv_icon_wrap .mv_bnr_item .fa-solid{
  top: 48px;
  left: 0;
  right: 0;
  margin: -5px auto 5px;
  color: #fff;
  font-size: 30px !important;
}
.mvContents .mv_icon_wrap .mv_bnr_item em img{
  margin: -5px 0 5px;
  width: 40%;
}

.mv_icon_wrap .mv_bnr_item span i {
  display: inline-block;
  margin: 0 4px;
  color: #fff;
  font-style: normal;
  font-size: 130%;
  line-height: 1.7
}

/* .mv_icon_inner {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  width: 250px;
  height: 250px;
  background: linear-gradient(180deg, rgb(89, 173, 241), rgb(15 101 178));
  border-radius: 50%;
  box-shadow: 0px 0px 8px 0px rgb(116 120 123 / 41%);
}

.mv_icon:nth-of-type(1) .mv_icon_inner span i {
  display: inline-block;
  color: var(--sub-color);
  font-size: 1.4em;
  font-style: normal;
  font-weight: 700;
  margin: 0 4px 10px 0;
} */

/* メインビジュアルのレイヤー計算をヘッダーから完全に隔離する */
.mainvisual {
  isolation: isolate !important;
  position: relative;
  z-index: 0;
}

/* スライダーの動くパーツに、Safari用の古い3Dアクセラレーションを強制してバグを眠らせる */
.mainvisual .splide__track,
.mainvisual .splide__list,
.mainvisual .splide__slide {
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }
  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }
  .mvSlider .sliderBtn#mv_btnPrev {
    left: 10px;
  }
  .mvSlider .sliderBtn#mv_btnNext {
    right: 10px;
  }
  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }
  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    /* bottom: 20px; */
    bottom: calc(50% + 30px);
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    /* font-size: 130%; */
    font-size: min(5vw, 12px);
    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;
  } */

  
  /* ----- 開院バナー ----- */

  .mvContents .mv_icon_wrap {
    display: none;
  }

  .sp_only_contents .open_bnr {
      display: none;
  }
  .mvContents .open_bnr {
    /* position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0; */
    right: 20px;
    bottom: 10px;
    width: 100%;
    height: auto;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }
  .mvContents .open_bnr > *::before {
    background-size: 50%;
  }
  .mvContents .open_bnr > * {
    width: 100%;
/*     height: auto; */
    /* padding: 15px 20px; */
    /* border-radius: 0; */
  }
  .mvContents .open_bnr .open_text {
    font-size: min(5vw, 16px);
  }
  .mvContents .open_bnr .nairankai_tit {
    font-size: min(5vw, 14px);
  }
  .mvContents .open_bnr .date {
    font-size: min(5vw, 12px);
  }
/*コンテンツバナーここから*/
/* ==========================================================
   スマホ用（.sp_only）スタイル統合版
   ========================================================== */

/* 1. 2枚並びの親枠（後半の指定で位置・余白を上書き） */
.sp_only .mv_icon_wrap {
  position: static;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 10px 10px;
  margin: 10px 0 30px;
}

/* 2. 各アイコンの共通枠（後半の指定でサイズ・背景・正方形維持を上書き） */
.sp_only .mv_icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 2 - 20px);
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: 210px;
  max-height: 210px;
  padding: 2px;
  background: rgb(204 168 111 / 45%);
  border-radius: 50%;
}

/* 3. 内包バナーアイテム共通（後半の指定で width/height: 100%、角丸10pxに上書き） */
.sp_only .mv_icon_wrap .mv_bnr_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding-top: 14px;
  opacity: 1;
  transition: 0.2s;
  z-index: 2;
  overflow: hidden;
}
.sp_only .mv_icon_wrap .mv_bnr_item:hover {
  opacity: 0.8;
}
.sp_only .mv_icon_wrap .mv_bnr_item::after {
  position: absolute;
  content: "";
  width: 74px;
  height: 103px;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/mv_mark_bg.svg) no-repeat center / 100%;
  z-index: -1;
}

/* 4. テキスト共通（後半の指定で文字サイズ・上部余白を上書き） */
.sp_only .mv_icon_wrap .mv_bnr_item span {
  display: block;
  margin: 8px 2px 4px 2px;
  margin-top: calc(50% - 30px) !important; /* 後半の指定 */
  color: #fff;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  font-size: min(3.6vw, 11px) !important; /* 後半の指定 */
  line-height: 1.5;
  text-align: center;
  z-index: 1;
}

/* 5. 装飾用アイコン・画像（共通） */
.sp_only .mv_icon_wrap .mv_bnr_item span i {
  display: inline-block;
  margin: 0 4px;
  color: #fff;
  font-style: normal;
  font-size: 130%;
  line-height: 1.7;
}
.sp_only .mv_icon_wrap .mv_bnr_item .fa-solid {
  top: 48px;
  left: 0;
  right: 0;
  margin: -5px auto 5px;
  color: #fff;
  font-size: 30px !important;
}
.sp_only .mv_icon_wrap .mv_bnr_item em img {
  margin: -5px 0 5px;
  width: 40%;
}

/* 6. 1つ目のアイコン（カレンダー）固有設定 */
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(1) {
  background: rgb(219 231 142 / 47%);
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(1)::before {
  position: absolute;
  content: "";
  width: 57px;
  height: 58px;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/i_calendar.png) no-repeat center / contain;
  z-index: 3;
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(1) .mv_bnr_item {
  background: url(../images/front/mv_bnr_bg1.png) no-repeat center / 100%;
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(1) .mv_bnr_item span {
  /* ⚠️注意：共通の !important（margin-top）が優先されます。ここを40pxにしたい場合は !important が必要です */
  margin: 40px 2px 4px 2px; 
  filter: drop-shadow(0 0 7px rgba(136, 199, 144, 0.34)) drop-shadow(0 0 8px rgb(136 199 144)) drop-shadow(0 0 5px #88c790);
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(1) .mv_bnr_item span i {
  filter: drop-shadow(0 0 7px rgba(136, 199, 144, 0.34)) drop-shadow(0 0 8px rgb(136 199 144)) drop-shadow(0 0 5px #88c790);
}

/* 7. 2つ目のアイコン（電車）固有設定 */
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(2) {
  background: rgb(141 183 209 / 47%);
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(2)::before {
  position: absolute;
  content: "";
  width: 37px;
  height: 49px;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/i_train.png) no-repeat center / contain;
  z-index: 3;
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item {
  background: url(../images/front/mv_bnr_bg2.png) no-repeat center / 100%;
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item span,
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(2) .mv_bnr_item span i {
  filter: drop-shadow(0 0 7px rgba(42, 165, 181, 0.34)) drop-shadow(0 0 8px var(--sub-color)) drop-shadow(0 0 5px var(--sub-color));
}
	
/* 7. 3つ目のアイコン（電話）固有設定 */
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(3) {
  background: rgba(243, 153, 62, 0.47);
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(3)::before {
  position: absolute;
  content: "";
  width: 57px;
  height: 58px;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/front/i_phone.png) no-repeat center / contain;
  z-index: 3;
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item {
  background: url(../images/front/mv_bnr_bg3.png) no-repeat center / 100%;
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item span {
  /* ⚠️注意：共通の !important（margin-top）が優先されます。ここを40pxにしたい場合は !important が必要です */
  margin: 40px 2px 4px 2px; 
  filter: drop-shadow(0 0 7px rgba(243, 153, 62, 0.34)) drop-shadow(0 0 8px #f3993e) drop-shadow(0 0 5px #f3993e);
}
.sp_only .mv_icon_wrap .mv_icon:nth-of-type(3) .mv_bnr_item span i {
  filter: drop-shadow(0 0 7px rgba(243, 153, 62, 0.34)) drop-shadow(0 0 8px #f3993e) drop-shadow(0 0 5px #f3993e);
}

	
	
  /*コンテンツバナーここまで*/
  /* ----- スマホ専用エリア ----- */
  .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: 10px;
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  background: url(../images/front/clinic_bg.png) no-repeat center / cover;
  z-index: 1;
}

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

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

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

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

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

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

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

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

.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  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-family: var(--font-type-en);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

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

.clinic .info address .fax {
  margin-top: 15px;
    padding: 5px 0 5px 50px;
    color: var(--main-color);
    font-family: var(--font-type-en);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
}

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: var(--bg-color-beige);
  border-radius: 20px;
} 

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

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

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

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

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

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

.clinic .info_right .illustmap {
  display: flex;
  align-items: center;
  height: 547px;
  padding: 0 20px;
  background: var(--bg-color-beige);
  border-radius: 10px;
}

/* 休診日note内のdl（PC横並び・footerには適用しないよう .clinic .info に限定） */
.clinic .info .note dl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.3em;    
  margin: 10px 0;
  padding: 0 0 0 5px;
}
.clinic .info .note dl dt {
  flex-shrink: 0;
}

.note dl dt span {
  color: var(--main-color) !important;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

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

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

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

  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info address .location .zipcode {
    display: block;
  }
  .clinic .info .note dl {
    flex-wrap: nowrap;
  }
  .clinic .info_right .illustmap {
    height: 100%;
    padding: 20px;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  background: url(../images/front/greeting_top_bg.png) no-repeat top center / 100%;
  z-index: 1;
}

.greeting::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 327px;
  height: 235px;
  background: url(../images/front/greeting_bg_mark.png) no-repeat bottom right / 327px auto;
}

.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_text .catchcopy {
  color: var(--text-color-brown);
  font-family: var(--font-type);
  font-size: 155%;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}


.greeting_text .catchcopy i  {
  margin: 0 3px 0 0;
  color: var(--sub-color);
  font-size: 130%;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.greeting_text .catchcopy span  {
  color: var(--main-color);
  margin: 0 3px;
  font-size: 120%;
  letter-spacing: 0.12em;
}
.greeting_left p {
  font-feature-settings: "palt";
  font-style: normal;
  letter-spacing: 0.2em;
  line-height: 2.3;
}
.greeting_img {
  text-align: center;
}
.greeting_img img {
  border-radius: 20px 20px 0px 0px;
}
.greeting_profile {
  padding: 30px 10px;
  background: url(../images/front/doctor_name_bg.png) no-repeat center / 417px auto,var(--main-color);
  border-radius: 0 0 20px 20px;
  color: #fff;
  text-align: center;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.greeting_profile .position {
  font-size: min(5vw, 12px);
  filter: drop-shadow(0 0 7px rgba(243, 153, 62, 0.34)) drop-shadow(0 0 8px rgb(243 153 62)) drop-shadow(0 0 5px var(--main-color));
}
.greeting_profile .name {
  font-size: 150%;
  filter: drop-shadow(0 0 7px rgba(243, 153, 62, 0.34)) drop-shadow(0 0 8px rgb(243 153 62)) drop-shadow(0 0 5px var(--main-color));
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting {
    background: url(../images/front/greeting_top_sp_bg.png) no-repeat top center / 100%;
    padding-bottom: 65px;
  }
  .greeting::before {
    right: 15px;
    background-size: 50%;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap:60px 0
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_text .catchcopy {
    font-size: min(5.4vw, 30px) !important;
  }
  .greeting_btn {
    margin-top: 40px;
  }
  .greeting_profile {
    background: url(../images/front/doctor_name_bg.png) no-repeat center / cover, var(--main-color);
    /* width: 74%; */
    max-width: 416px;
    margin: auto;
    font-size: min(3vw, 18px);
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: linear-gradient(rgb(243 153 62 / 50%), rgb(167 164 164 / 20%), rgb(243 153 62 / 50%)), url(../images/common/dmy.jpg) no-repeat center / cover
}

.medical .top_title h2 {
  color: #ffffff;
}
.medical .top_title span {
  color: var(--text-color-brown-light);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  /* width: calc(25% - 15px); */
  width: calc((100% / 3) - (200px / 3));
  height: auto;
}
.medical_item:hover {
  transform: translateY(-10px);
}

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

.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* min-height: 270px; */
  /* padding: 30px 20px 40px; */
  /* background: rgba(255, 255, 255, 0.9); */
  text-align: center;
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_item:nth-of-type(1) .medical_icon,.medical_item:nth-of-type(5) .medical_icon {
  background: url(../images/front/top_medical_bg1.png) no-repeat center / 100%, #fff;
  border-radius: 45% 65% 55% 45% / 40% 60% 45% 55%;
}
.medical_item:nth-of-type(2) .medical_icon,.medical_item:nth-of-type(6) .medical_icon {
  background: url(../images/front/top_medical_bg2.png) no-repeat center / 100%, #fff;
  border-radius: 60% 40% 55% 45% / 45% 45% 55% 55%;
}
.medical_item:nth-of-type(3) .medical_icon {
  background: url(../images/front/top_medical_bg3.png) no-repeat center / 100%, #fff;
  border-radius: 40% 60% 40% 60% / 55% 45% 55% 45%;
}
.medical_item:nth-of-type(4) .medical_icon {
  background: url(../images/front/top_medical_bg4.png) no-repeat center / 100%, #fff;
  border-radius: 52% 48% 43% 57% / 57% 43% 57% 43%;
}


.medical_icon {
  width: 100%;
  max-width: 270px;
  margin: 0 auto 15px !important;
  /* background: #fff; */
  padding: 80px;
}

.medical_title h3 {
  color: #fff;
  font-size: 130%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.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 {
    background: linear-gradient(rgb(243 153 62 / 50%), rgb(167 164 164 / 20%), rgb(243 153 62 / 50%)), url(../images/common/dmy.jpg) no-repeat center/cover;
  }
  .medical_list {
    /* gap: 15px 10px; */
    gap: 30px 10px;
  }
  .medical_item {
    width: calc(50% - 5px);
  }
  .medical_item:last-of-type {
    width: 100%;
  }
  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    min-height: auto;
    /* padding: 20px 10px; */
    padding: 0;
  }
  .medical_icon {
    width: 100%;
    padding: 30px;
  }
  .medical_item:last-of-type .medical_icon {
    width: 50%;
  }
  .medical_icon img {
    width: 100%;    
    height: auto;    
    display: block;
  }
  .medical_title h3 {
    font-size: 110%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  background: url(../images/front/feature_bg_top.png) no-repeat top center / 100%,url(../images/front/feature_bg_bt.png) no-repeat bottom center / 100%, #fff;
}

.feature .inner {
  padding: 100px 10px 110px;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 70px 60px;
}

.feature_item {
  position: relative;
  display: flex;
  height: auto;
  width: 100%;
  padding: 50px;
  border-radius: 20px;
  gap: 40px;
  z-index: 2;
}

.feature_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* ここで白背景を敷く */
  border: 3px solid rgb(240 239 238 / 42%);
  border-radius: 20px;
  /* ▼ メインカラー（1）より上で、コンテンツ（3）より下 */
  z-index: 2;
}

.feature_item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  padding: 10px;
  /* background: rgb(243 153 62 / 46%) no-repeat center / 100%; */
  z-index: 1;
  border-radius: 30px;
}

.feature_item:nth-child(odd)::before {
  /* background: rgb(243 153 62 / 26%) no-repeat center / 100%; */
  background: linear-gradient(217deg, rgb(243 153 62 / 15%), rgba(255, 255, 255, 0) 70.71%), linear-gradient(127deg, rgba(243, 194, 62, 0.12), rgba(255, 255, 255, 0) 70.71%), linear-gradient(336deg, rgb(243 153 62 / 8%), rgba(255, 255, 255, 0) 70.71%);
  box-shadow: inset 0 6px 12px rgb(243 153 62 / 44%);
} 

.feature_item:nth-child(even)::before {
  /* background: #87cdcd4a no-repeat center / 100%; */
  background: 
    linear-gradient(217deg, rgb(135 205 205 / 15%), rgba(255, 255, 255, 0) 70.71%), 
    linear-gradient(127deg, rgba(115, 195, 215, 0.12), rgba(255, 255, 255, 0) 70.71%), /* ←少し青みを混ぜてランダム感を強調 */
    linear-gradient(336deg, rgb(135 205 205 / 8%), rgba(255, 255, 255, 0) 70.71%);
  box-shadow: inset 0 6px 12px rgb(135 205 205 / 44%);
}


.feature_img {
  width: 500px;
  flex-shrink: 0;
  /* margin-top: -50px; */
  /* ▼ 追加：これでメインカラーより上にきます */
  position: relative;
  z-index: 3;
}

.feature_img::before {
  content: "";
  position: absolute;
  bottom: -42px;
  left: -40px;
  width: 154px;
  height: 134px;
  background: url(../images/front/feature_item_dotto_bg.png) no-repeat center / 154px auto;
  z-index: 2;
}

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

.feature_inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  /* min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 50px 30px 50px;
  background: #fff; */
}

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

.feature_title {
  position: relative;
  display: flex;
  flex-flow: column;
  margin-bottom: 20px !important;
}

.feature_title::after {
  content: "";
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: url(../images/front/feature_h3_line.png) repeat-x left;
  opacity: 0.8;
}

.feature_title h3 {
  padding: 0 0 10px 0;
  /* color: var(--main-color); */
  font-size: 150%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.feature_list > .feature_item:nth-child(odd) .feature_title h3 {
  color: var(--main-color);
}

.feature_list > .feature_item:nth-child(even) .feature_title h3 {
  color: var(--sub-color);
}

.feature_num {
  position: relative;
  margin: 0 0 5px !important;
  font-family: var(--font-type-en);
  font-size: 120%;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  z-index: 2;
}

.feature_list > .feature_item .feature_num::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 57px;
  height: 58px;
  opacity: 0.5;
  z-index: -1;
}

.feature_list > .feature_item:nth-child(even) .feature_num::before {
  background: url(../images/front/feature_num_even.png) no-repeat center / 100%;
}

.feature_list > .feature_item:nth-child(odd) .feature_num::before {
  background: url(../images/front/feature_num_odd.png) no-repeat center / 100%;
}

.feature_num span {
  /* color: var(--main-color); */
  font-size: 130%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.feature_list > .feature_item:nth-child(odd) .feature_num span {
  color: var(--main-color);
}

.feature_list > .feature_item:nth-child(even) .feature_num span {
  color: var(--sub-color);
}

.feature_button {
  margin: auto;
}

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

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


.feature_list > .feature_item:nth-child(odd) .btn01 > * {
  border-color: var(--main-color);
  background: var(--main-color);
  color: #fff;
}

.feature_list > .feature_item:nth-child(even) .btn01 > * {
  border-color: var(--sub-color);
  background: var(--sub-color);
  color: #fff;
}

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

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

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


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

  .feature .inner {
    padding: 100px 6%;
  }

  .feature_list {
    gap: 50px 0;
  }

  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
    padding: 30px 20px;
  }

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

  .feature_img::before {
    bottom: -35px;
    left: calc(100% - 100px);
    background: url(../images/front/feature_item_dotto_bg.png) no-repeat left bottom / 60%;
  }

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}
.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}
.column .column_box {
  width: calc(25% - 18.75px);
}
.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}
.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .column .column_list {
    gap: 40px;
  }
  .column .column_box {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
}
#infinitySlider .splide__list {
  gap: 10px;
}
#infinitySlider .splide__slide {
  width: 400px !important;
}

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