@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
.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;
  }
}

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

  *タイトル

================================================================================================================================== */
.top_title {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
  margin-bottom: 60px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
  font-size: 32px;
  font-family: var(--jp-font);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  color: var(--text-color02);
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--main-color);
  font-size: 24px;
  font-family: var(--en-font);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

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

  .top_title .eng {
    margin-bottom: 5px;
    font-size: 18px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 834px;
  /* overflow: hidden; */
}
.mainvisual::before {
    position: absolute;
    content: "";
    background: url(../images/mv_under_img01.png) bottom left / contain no-repeat;
    width: 100%;
    height: 532px;
    z-index: 3;
    bottom: -146px;
    left: 0;
}
.mainvisual::after {
    position: absolute;
    content: "";
    background: url(../images/mv_under_img02.png) bottom right / contain no-repeat;
    width: 100%;
    height: 365px;
    z-index: 2;
    bottom: -147px;
    right: 0;
}
.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
/* 動画 */
.mv_video {
    width: 100%;
    height: 100%;
}
.mv_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
	filter: contrast(50%) sepia(5%);
}
/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  10% {
    opacity: 0;
  }

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

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

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

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

.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.catch_img {
    width: 100%;
    max-width: 797px;
}
.mvCatch p {
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  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%;
}

.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

.open_bnr .date {
  font-size: 110%;
}

.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 90%;
  text-align: center;
}

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

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

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

.sp_only {
  display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }
.mainvisual::before {
    bottom: -140px;
    height: 140px;
}
.mainvisual::after {
    bottom: -140px;
    height: 140px;
}
  /* ----- スライダーの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;
    display: none;
  }

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

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

  .mvContents {
    display: none;
  }

  h1 {
    margin: 0 auto;
    padding: 10px 20px 70px;
  }
  .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%;
  }

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

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

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

  *バナーエリア

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ----- スライダーバナー ----- */
#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(--text-color);
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

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

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

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

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #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）

==================================================================================================================================*/
.clinic {
  position: relative;
  z-index: 1;
  background: 
  /* url(../images/clinic_bg01.png) top 150px right -620px no-repeat, */
  #fff;
  border-radius: 100px 100px 0 0;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news::before {
    position: absolute;
    content: "";
    background: url(../images/clinic_bg01.png) top left / contain no-repeat;
    width: 1390px;
    height: 620px;
    bottom: -350px;
    right: -620px;
    z-index: -1;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding: 74px 0;
}

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

.clinic .news .top_title {
  margin: 0 0 35px;
  padding-top: 77px;
}
.clinic .news .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/icon_gohan.png) top left / cover no-repeat;
    width: 63px;
    height: 72px;
    top: 0;
    margin-left: 7px;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}
.clinic .news .btn01 a {
  min-width: 223px;
}
/* ----- 医院概要 ----- */
.clinic .info .inner {
    position: relative;
  display: flex;
  gap: 60px;
  padding: 80px 0 87px;
  z-index: 1;
}
.clinic .info .inner::before {
    position: absolute;
    content: "";
    background: url(../images/clinic_bg02.png) bottom left / contain no-repeat;
    width: 1030px;
    height: 853px;
    bottom: -350px;
    left: -650px;
    z-index: -1;
}
.clinic .info .inner > * {
  width: calc(50% - 30px);
}

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

.clinic .info address {
    padding-top: 50px;
    text-align: center;
}

.clinic .info address .location {
  padding: 0;
}

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

.clinic .info address .tel {
    width: fit-content;
    margin: 26px auto 50px;
  padding: 0 0 0 50px;
    font-size: 34px;
    line-height: 1;
    font-family: var(--en-font);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.12em;
}
.clinic .info address .tel::before {
    position: absolute;
    content: "";
    background: url(../images/tel_icon.png) top left / cover no-repeat;
    width: 40px;
    height: 38px;
    top: 3px;
    left: 0;
}

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

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

.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 {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}

@media screen and (max-width: 640px) {
    .clinic {
        border-radius: 30px 30px 0 0;
        margin-top: -10px;
    }
    .clinic .news::before {
        width: 570px;
        right: -250px;
        bottom: -400px;
    }
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
  .clinic .info .inner::before {
        width: 430px;
        left: -150px;
        top: auto;
        bottom: -142px;
  }
  .clinic .news .news_left {
    width: 100%;
  }

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

  .clinic .info .inner > * {
    width: 100%;
  }
.clinic .info address .location .zipcode {
    display: block;
}
  .clinic .info address .tel {
    font-size: 25px;
    padding: 0 0 0 40px;
    margin: 10px auto 25px;
  }
  .clinic .info address .tel::before {
    width: 31px;
    height: 30px;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info .googlemap iframe {
    height: 300px;
  }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
    z-index: 1;
    padding-top: 282px;
}
.greeting::before {
    position: absolute;
    content: "";
    background: url(../images/illust_yasai01.png) top left / contain no-repeat;
    width: 140px;
    height: 282px;
    top: 240px;
    left: calc(((100% - 1200px) / 2) - 150px);
    z-index: 1;
}
.greeting::after {
    position: absolute;
    content: "";
    background: url(../images/illust_kazoku01.png) top left / cover no-repeat;
    width: 261px;
    height: 250px;
    top: 0;
    right: calc(((100% - 1200px) / 2) - 35px);
    z-index: 1;
}

.greeting_wrap {
    position: relative;
}
.greeting_wrap::before {
    position: absolute;
    content: "";
    mask: url(../images/bg_mask01.png) top center / 2565px repeat-x;
    -webkit-mask: url(../images/bg_mask01.png) top center / 2565px repeat-x;
    background: url(../images/pattern01.png) bottom left / 240px repeat;
    width: 100%;
    height: 304px;
    top: -304px;
}

.greeting_bg {
    position: relative;
    padding: 0 0 388px;
    background: url(../images/pattern01.png) top left / 240px repeat;
}
.greeting_bg::before {
    position: absolute;
    content: "";
    background: url(../images/concept_bg.png) top center / 2655px no-repeat;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}
.greeting_bg::after {
    position: absolute;
    content: "";
    background: url(../images/concept_bg03.png) bottom left / contain no-repeat;
    bottom: 170px;
    left: calc(((100% - 1200px) / 2) - 288px);
    width: 680px;
    height: 514px;
}
.greeting .inner {
    position: relative;
    padding: 0;
}
.greeting .inner::before {
    position: absolute;
    content: "";
    background: url(../images/illust_gohan01.png) top left / contain no-repeat;
    width: 225px;
    height: 173px;
    top: 385px;
    right: -285px;
}
.greeting .inner::after {
    position: absolute;
    content: "";
    background: url(../images/illust_kazoku02.png) top left / cover no-repeat;
    width: 497px;
    height: 306px;
    bottom: -90px;
    right: 67px;
}
.greeting .top_title {
    padding-top: 90px;
    margin-bottom: 120px;
}
.greeting .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/icon_paprika.png) top left / cover no-repeat;
    width: 121px;
    height: 72px;
    top: 0;
}
.greeting_box {
  position: relative;
  z-index: 1;
}

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

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

.greeting_left {
  flex-shrink: 0;
  width: calc(100% - 565px);
}
.concept_catch {
    padding-bottom: 90px;
    font-size: 26px;
    font-family: var(--jp-font);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.12em;
    color: var(--text-color02);
}
.concept_catch span {
    position: relative;
    background: #fff;
    padding: 17.5px 15px;
    border-radius: 300px;
    margin-right: 20px;
}
.concept_catch span::before {
    position: absolute;
    content: "";
    background: url(../images/icon_concept_catch.png) top left / cover no-repeat;
    width: 85px;
    height: 70px;
    right: -10px;
    bottom: -43px;
}
.greeting_text_inner {
    letter-spacing: 0.12em;
    line-height: 2.3;
}
.greeting_text_inner > *:not(:last-child) {
  margin-bottom: 2em;
}

.greeting_img {
    width: 530px;
    height: 530px;
}
.greeting_img img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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: 80px;
}
/* ==============================================
  *ウィンドウ幅拡大・縮小時の設定
============================================== */
@media screen and (max-width: 1500px) {
    .greeting::before {
        left: 20px;
        width: 120px;
    }
    .greeting .inner::before {
        top: 154px;
        right: -105px;
        width: 190px;
    }
    .greeting_bg::after {
        left: 20px;
        width: 550px;
    }
}
@media screen and (min-width: 1921px) {
    .greeting {
        padding-top: 333px;
    }
    .greeting_wrap::before {
        height: 333px;
        top: -333px;
    }
}
/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting {
        padding-top: 135px;
    }
    .greeting::before {
        top: 102px;
        left: -6px;
        width: 76px;
        height: 155px;   
        z-index: 2;     
    }
.greeting_bg {
    background-size: 150px;
    z-index: 1;
    padding: 0 0 170px;
}
.greeting_bg::before {
    background: url(../images/concept_bg_sp01.png) top center / contain no-repeat;
    top: 5%;
}
.greeting_bg::after {
    width: 340px;
    height: 260px;
    left: -20px;
    bottom: 90px;
    z-index: -1;
}
.greeting .inner {
    padding: 70px 20px;
    background: url(../images/concept_bg_sp02.png) top 60% left -70px / contain no-repeat;
}

.greeting .inner::before {
    top: 207px;
    right: -12px;
    width: 100px;
    height: 78px;
}
.greeting .inner::after {
    width: 244px;
    height: 150px;
    right: -26px;
    bottom: 38px;
}
.greeting_wrap::before {
    mask-size: 120%;
    -webkit-mask-size: 120%;
    height: 100px;
    top: -100px;
    background-size: 150px;
    mask-position: bottom left;
    -webkit-mask-position: bottom left;
}
.greeting .top_title {
    padding-top: 67px;
    margin-bottom: 60px;
}
.greeting .top_title::before {
    width: 90px;
    height: 53px;
}
.greeting_flex {
    flex-flow: column-reverse;
    gap: 40px;
}
.concept_catch {
    font-size: 20px;
    text-align: center;
    padding-bottom: 25px;
}
.concept_catch span {
        display: inline-block;
/*         width: 300px; */
        width: 255px;
        margin: 0 21px 15px 10px;
    padding: 12px 15px;
}
.concept_catch span::before {
    width: 60px;
    height: 50px;
    right: -15px;
    bottom: -20px;   
}
.greeting_img {
    width: 80%;
    height: auto;
    margin: 0 auto;
}

  .greeting_left {
    width: 100%;
  }

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

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

  *診療案内

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

.medical .top_title {
  color: #ffffff;
}

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

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  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_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
}

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

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

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

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

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

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

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

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

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

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

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/medical_bg_sp.jpg) no-repeat center/cover !important;
  }

  .medical_list {
    gap: 15px 10px;
  }

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

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

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

  .medical_icon {
    width: 50%;
  }

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

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

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

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

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

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

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

================================================================================================================================== */
.feature {
    position: relative;
    z-index: 2;
    padding-top: 253px;
    margin-top: -253px;
}
.feature::before {
    position: absolute;
    content: "";
    background: url(../images/illust_hito01.png) top left / cover no-repeat;
    width: 196px;
    height: 221px;
    top: 32px;
    right: calc(((100% - 1200px) / 2) + 278px);
    z-index: 1;
}
.feature::after {
    position: absolute;
    content: "";
    background: url(../images/bg_nami02.svg) top center / 460px repeat-x;
    width: 100%;
    height: 60px;
    bottom: -60px;
    z-index: 1;
}
.feature_bg {
    position: relative;
    padding: 37px 0 540px 0;
    background: 
    url(../images/feature_under_img.png) bottom center / 3539px no-repeat,
    linear-gradient(#cee6b1,#cee6b1) bottom left / 100% 43px no-repeat,
    url(../images/pattern02.png) top left / 100px repeat;
}
.feature_bg::before {
    position: absolute;
    content: "";
    mask: url(../images/bg_mask02.png) bottom center / 2834px repeat-x;
    -webkit-mask: url(../images/bg_mask02.png) bottom center / 2834px repeat-x;
    background: url(../images/pattern02.png) bottom left / 100px repeat;
    width: 100%;
    height: 253px;
    top: -253px;
}
.feature .inner {
    padding: 0;
}
.feature .top_title {
    margin-bottom: 65px;
    padding-top: 105px;
}
.feature .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/icon_apple.png) top left / cover no-repeat;
    width: 90px;
    height: 88px;
    top: 0;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 45px 30px;
}

.feature_item {
    position: relative;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  gap: 20px;
  margin-top: 90px;
}

.feature_num {
    position: absolute;
    top: -90px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 !important;
    font-size: 34px;
    color: #fff;
    letter-spacing: 0.12em;
    font-family: var(--en-font);
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    width: 109px;
    min-height: 113px;
    padding: 26px 0 0 8px;
    background: url(../images/feature_number_bg01.png) top left / cover no-repeat;
}

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

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

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

.feature_title {
    position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  background: 
  url(../images/feature_h3_bg01.png) top 15px left 50px / 255px no-repeat,
  #ffd8a0;
  width: 288px;
  min-height: 115px;
  margin: -50px auto 35px;
  border-radius: 20px;
}

.feature_title::before {
    position: absolute;
    content: "";
    background: #ffedb0;
    width: 18px;
    height: 13px;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.feature_title h3 {
  color: #555555;
  font-size: 26px;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.feature_text {
    padding: 0 35px 35px;
    line-height: 2.1;
}
.feature_item .btn01 {
  margin-top: auto;
  text-align: center;
}
.feature_item .btn01 a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 30px;
    width: 100%;
    border-radius: 0 0 20px 20px;
    padding: 17px 64px 17px 64px;
}
.feature_item .btn01 a::after {
    position: static;
    transform: translateY(0);
}

/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}

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

/* 偶数の装飾 */
.feature_item:nth-child(even) .feature_title {
    background:
    url(../images/feature_h3_bg02.png) bottom left -43px / 304px no-repeat,
    #b5e39f;
}
.feature_item:nth-child(even) .feature_title::before {
    background: #b5e39f;
}
.feature_item:nth-child(even) .feature_num {
    background: url(../images/feature_number_bg02.png) top left / cover no-repeat;
}
.feature_item:nth-child(even) .btn01 a {
    background: url(../images/pattern04.jpg) top left repeat;
}
.feature_item:nth-child(even) .btn01 a:hover {
    background: url(../images/pattern04_hover.jpg) top left repeat;
}
@media screen and (max-width: 640px) {
.feature {
    padding-top: 115px;
    margin-top: -115px;
}
.feature::before {
    right: 20px;
    width: 100px;
    height: 113px;
}
.feature::after {
    background-size: 150px;
}
.feature_bg {
    background-size: 230%,100% 43px,70px;
    padding: 0 0 160px 0;
}
.feature_bg::before {
    mask-size: 120%;
    height: 70px;
    top: -70px;
    background-size: 70px;
}
.feature .inner {
    padding: 70px 20px 0;
}
.feature .top_title {
    padding-top: 65px;
    margin-bottom: 0;
}
.feature .top_title::before {
    width: 60px;
    height: 59px;
}
  .feature_list {
    gap: 15px;
  }

  .feature_item {
    width: 100%;
    margin-top: 54px;
  }
.feature_num {
    width: 75px;
    min-height: 78px;
    font-size: 25px;
    padding: 18px 0 0 6px;
    top: -54px;
    left: 10px;
}
  .feature_title {
    min-height: 85px;
    margin-bottom: 15px !important;
    width: 85%;
  }
.feature_title h3 {
    font-size: 18px;
    padding: 15px 10px;    
}
  /* ---- 横並びボタン ----- */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *ご利用の流れ

================================================================================================================================== */
.top_flow {
  position: relative;
  background: url(../images/pattern05.png) top left repeat;
}
.top_flow::before {
    position: absolute;
    content: "";
    mask: url(../images/flow_under_bg.png) center bottom no-repeat;
    webkit-mask: url(../images/flow_under_bg.png) center bottom no-repeat;
    background: url(../images/pattern06.png) bottom left / 195px repeat;
    width: 100%;
    height: 117px;
    bottom: 0;
}
.top_flow::after {
    position: absolute;
    content: "";
    background: url(../images/flow_under_img.png) bottom center / contain no-repeat;
    width: 100%;
    max-width: 1906px;
    height: 336px;
    bottom: -108px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.top_flow .inner {
    padding: 172px 0 235px;
}
.top_flow .top_title {
    padding-top: 100px;
    margin-bottom: 40px;
}
.top_flow .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/icon_flow.png) top left / cover no-repeat;
    width: 92px;
    height: 81px;
    top: 0;
}
.flow_list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.flow_item {
    position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 220px;
}

.flow_num {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 99px;
    height: 96px;
    background: #ffd586;
    border-radius: 20px 20px 0 0;
  margin: 0 0 0 !important;
  font-size: 22px;
  color: #fff;
  line-height: 1;
  font-family: var(--en-font);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
}
.flow_num::before {
    position: absolute;
    content: "";
    width: 99px;
    height: 23px;
    background: #ffd586;
    bottom: -22px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.flow_item:not(:last-child) .flow_num::after {
    position: absolute;
    content: "";
    background: url(../images/flow_dot01.png) top left / cover no-repeat;
    width: 101px;
    height: 8px;
    top: 45px;
    left: 120px;
}
.flow_num span {
  font-size: 45px;
  margin-top: -6px;
}

.top_flow_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  width: 220px;
  height: 220px;
  padding: 53px 20px 0;
  background: url(../images/step_bg01.jpg) center / cover no-repeat;
  border-radius: 50%;
  margin-top: -30px;
}
.top_flow_img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 87px;
}
.top_flow_img img {
/*     width: 50%; */
    width: 44%;
}

.top_flow_title h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
      font-family: var(--jp-font);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.12em;
}

.flow_item .btn01 {
  margin-top: auto;
  text-align: center;
}
.top_flow_btn {
    padding-top: 60px;
}
.top_flow_btn .btn01 {
    text-align: center;
}
/* 背景色 */
.flow_item:nth-child(2) .top_flow_inner {
    background: url(../images/step_bg02.jpg) center / cover no-repeat;
}
.flow_item:nth-child(3) .top_flow_inner {
    background: url(../images/step_bg03.jpg) center / cover no-repeat;
}
.flow_item:nth-child(4) .top_flow_inner {
    background: url(../images/step_bg04.jpg) center / cover no-repeat;
}
.flow_item:nth-child(5) .top_flow_inner {
    background: url(../images/step_bg05.jpg) center / cover no-repeat;
}
.flow_item:nth-child(2) .flow_num,
.flow_item:nth-child(2) .flow_num::before {
   background: #fbd19d; 
}
.flow_item:nth-child(3) .flow_num,
.flow_item:nth-child(3) .flow_num::before {
   background: #fec793; 
}
.flow_item:nth-child(4) .flow_num,
.flow_item:nth-child(4) .flow_num::before {
   background: #ffbf86; 
}
.flow_item:nth-child(5) .flow_num,
.flow_item:nth-child(5) .flow_num::before {
   background: #ffc5a6; 
}
/* ドット */
.flow_item:nth-child(2) .flow_num::after {
    background: url(../images/flow_dot02.png) top left / cover no-repeat;
}
.flow_item:nth-child(3) .flow_num::after {
    background: url(../images/flow_dot03.png) top left / cover no-repeat;
}
.flow_item:nth-child(4) .flow_num::after {
    background: url(../images/flow_dot04.png) top left / cover no-repeat;
}
/* ---- 横並びボタン ----- */
.btnflex_flow {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.btnflex_flow .btn01 {
  width: calc(50% - 2.5px);
}

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

@media screen and (max-width: 640px) {
.top_flow {
    background-size: 180px;
}
.top_flow::before {
    mask-size: 100%;
    -webkit-mask-size: 100%;
    background-size: 170px;
}
.top_flow::after {
    height: 100px;
    bottom: -25px;    
}
.top_flow .inner {
    padding: 100px 20px 120px;
}
.top_flow .top_title {
    padding-top: 70px;
}
.top_flow .top_title::before {
    width: 60px;
    height: 53px;
}
.flow_list {
    gap: 0;
  }

  .flow_item {
    width: 100%;
    display: flex;
    flex-flow: nowrap;
    justify-content: center;
/*     height: 200px; */
    height: 150px;
  }

.top_flow_inner {
/*     height: 200px; */
/*     width: fit-content; */
    width: 140px;
	height: 140px;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 0 10px 20px;
    margin-top: 0;
}
.flow_num {
    font-size: 16px;
    border-radius: 20px 0 0 20px;
    padding-left: 10px;
    flex-shrink: 0;
    width: 65px;
    height: 85px;
}
.flow_num::before {
        height: 100%;
        width: 23px;
        right: -23px;
        top: 0;
        bottom: auto;
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.flow_item:not(:last-child) .flow_num::after {
    top: auto;
    right: auto;
    left: -10px;
    bottom: -60px;
    transform: rotate(90deg);
}
.flow_num span {
    margin-top: 0;
    font-size: 30px;
}
  .flow_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
.top_flow_title h3 {
/*     font-size: 18px; */
        font-size: 14px;
}
  /* ---- 横並びボタン ----- */
  .btnflex_flow .btn01 {
    width: 100%;
  }
}

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

  *病状、症状から探す

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

.search .tab_list {
  gap: 10px;
}

.search .tab_list .tab {
  padding: 15px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .search .panel {
    padding: 20px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

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

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

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

================================================================================================================================== */
.column {
    position: relative;
  background: url(../images/pattern06.png) top left / 195px repeat
}
.column::after {
    position: absolute;
    content: "";
    mask: url(../images/bg_nami02.svg) top left / 460px repeat-x;
    -webkit-mask: url(../images/bg_nami02.svg) top left / 460px repeat-x;
    background: #fff;
    width: 100%;
    height: 60px;
    bottom: 0;
    z-index: 1;
    transform: scale(1, -1);
}
.column .inner {
    padding: 112px 0 192px;
}
.column .top_title {
    padding-top: 112px;
}
.column .top_title::before {
    position: absolute;
    content: "";
    background: url(../images/icon_yasai.png) top left / cover no-repeat;
    width: 103px;
    height: 96px;
    top: 0;
}
.column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px 13px;
}

.column_box {
  width: calc(25% - 10px);
  background: #fff;
  border-radius: 20px;
}

.column_box dt a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 15px 8px;
  background: #f3a26d;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  font-family: var(--jp-font);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.12em;
    border-radius: 20px 20px 0 0;
}
.column_box dt a:hover {
    background: #d1783d;
}
.column_box dd {
    padding: 7px 20px 27px;
}
.column_box dd a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 70px;
  padding: 15px 8px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
}
.column_box dd a:not(:last-child) {
     background: url(../images/border_img01.svg) bottom left / 7px repeat-x;
}

.column_box dd a::before {
    flex-shrink: 0;
    display: block;
    content: "";
    background: #a18470;
    width: 10px;
    height: 10px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.column_box dd a:hover {
  color: var(--main-color);
}
/* 偶数 */
.column_box:nth-child(even) dt a {
    background: #a0d28a;
}
.column_box:nth-child(even) dt a:hover {
    background: #6f9f5a;
}
.column_box:nth-child(even) dd a:not(:last-child) {
    background: url(../images/border_img02.svg) bottom left / 7px repeat-x;
}
/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
.column {
    background-size: 170px;
}
.column::after {
    mask-size: 150px;
    -webkit-mask-size: 150px;
}    
.column .inner {
    padding: 70px 20px;
}
.column .top_title {
    padding-top: 86px;
}
.column .top_title::before {
    width: 80px;
    height: 74px;
}
  .column_list {
    gap: 40px;
  }

  .column_box {
    width: 100%;
  }
.column_box dt a {
    min-height: 70px;
}
.column_box dd a {
    min-height: 60px;
}
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 10px;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

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