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

  *基本設定

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

.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) {
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}

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

  *タイトル

================================================================================================================================== */
.top_title {
  margin-bottom: 50px;
  text-align: center;
}

.top_title_eng {
  display: block;
  font-family: var(--font-en);
  font-size: 100px;
  letter-spacing: 0.075em;
  line-height: 1.1;
  background: linear-gradient(0deg, #06687f 0%, #222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_title h2 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

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

  .top_title_eng {
    font-size: clamp(50px, 16vw, 60px);
  }

  .top_title h2 {
    font-size: clamp(18px, 5.9vw, 22px);
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 805px;
  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 {
  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;
  top: 35%;
  left: 0;
  z-index: 3;
  width: 100%;
}

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

.mvCatch p {
  color: #fff;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.075em;
  line-height: 1.9;
  text-align: center;
  text-shadow: 0 0 8px #1f1f1f, 0 0 15px #1f1f1f;
  padding-block: 15px;
}

.mvCatch p span {
  font-size: 75%;
}

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

.mvContents .inner {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  height: 100%;
}

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

/* ----- バナー ----- */
.mvBnr {
  position: absolute;
  left: 100px;
  bottom: 30px;
}

.mvBnr a ,.mvBnr_recruit a {
  display: block;
}

@media (hover: hover) {
  .mvBnr a:hover ,.mvBnr_recruit a:hover{
    opacity: 0.7;
  }
}
.mvBnr a:not(:last-child) ,.mvBnr_recruit a:not(:last-child){
  margin-bottom: 10px;
}

.mvBnr_recruit{
position: absolute;
right: 140px;
bottom: 30px;
}

.mvBnr_recruit img{
width: 362px;
}

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

.sp_only {
  display: none;
}

/* ==============================================
  *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;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
  }
  h1 {
    margin-bottom: 0;
  }
  .mvContents {
    display: none;
  }

  /* ----- バナー ----- */
  .mvBnr ,.mvBnr_recruit{
    position: static;
    text-align: center;
  }
	.mvBnr_recruit a{
	 margin-bottom: 10px;
	}
	.mvBnr_recruit img{
	 width: 62%;
	}

  .sp_only {
    display: block;
    padding-top: 20px;
    position: relative;
  }
  .sp_only::before {
    display: block;
    content: "";
    width: 40%;
    height: 100%;
    background: #ebeae4;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
}

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

  *バナーエリア～ご挨拶

================================================================================================================================== */
.banner_greeting {
  padding-top: 80px;
  position: relative;
}

.banner_greeting::before {
  display: block;
  content: "";
  width: 640px;
  height: 100%;
  background: #ebeae4;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/* ==============================================
  *SP バナーエリア～ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .banner_greeting {
    padding-top: 10px;
  }
  .banner_greeting::before {
    width: 40%;
  }
}

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

  *バナーエリア

================================================================================================================================== */
.top_banner {
  margin-bottom: 125px;
}

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

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

.top_banner .onlyimg .banner_slide img {
  transition: opacity 0.2s;
}

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

/* インプットバナー */
.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%;
  -o-object-fit: cover;
     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 40px;
}

.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 580px;
}

/* ----- スライダーバナー ----- */
#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) {
  .top_banner {
    margin-bottom: 60px;
  }

  /* ----- グリッドバナー ----- */
  .banner_grid ul {
    gap: 10px 0;
  }
  .banner_grid li {
    width: 100%;
    max-width: 580px;
    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;
  }
}

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

  *ご挨拶

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

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

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

.greeting_box:first-child::before {
  display: block;
  content: "";
  width: 470px;
  aspect-ratio: 470/450;
  background: url(../images/home/greeting_img1_dmy.jpg) left top/100% auto no-repeat;
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 15px;
  z-index: -1;
}

.greeting_box:last-child {
  padding-bottom: 155px;
}

.greeting_box:last-child::after {
  display: block;
  content: "";
  width: 260px;
  aspect-ratio: 260/355;
  background: url(../images/home/greeting_img2.jpg) left top/100% auto no-repeat;
  pointer-events: none;
  position: absolute;
  left: 30px;
  bottom: 80px;
  z-index: -1;
}

@media screen and (max-width: 1785px) {
  .greeting_box:last-child::after {
    opacity: 0.4;
  }
}

.greeting .top_title {
  margin-bottom: 65px;
}

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

.greeting_left {
  flex: 1;
}

.greeting_right {
  width: 430px;
}

.greeting_text {
  font-family: var(--font-jp);
  font-size: 17px;
}

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

.greeting_text h3 {
  font-size: 147%;
  color: #06687f;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 1em;
}

.greeting_profile {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 22px;
  margin-top: 30px;
}

.greeting_profile_logo {
  width: 88px;
}

.greeting_profile_name {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 22px;
  color: #06687f;
  letter-spacing: 0.025em;
  line-height: 1.6;
}

.greeting_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.greeting_btn > * {
  width: calc((100% - 10px) / 2);
  padding-inline: 20px;
}

.greeting_btn > *:nth-child(even)::after {
  background: linear-gradient(90deg, #002061 0%, #083590 100%);
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting_box:first-child::before {
    max-width: 235px;
    width: 50%;
    opacity: 0.6;
    right: 0;
    top: 0;
    margin-top: 5%;
  }
  .greeting_box:last-child {
    padding-bottom: 100px;
  }
  .greeting_box:last-child::after {
    max-width: 130px;
    width: 30%;
    left: 0;
    bottom: 20px;
  }
  .greeting .top_title {
    margin-bottom: 40px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 30px;
  }
  .greeting_left,
.greeting_right {
    width: 100%;
  }
  .greeting_text {
    font-size: 100%;
  }
  .greeting_profile {
    gap: 0 15px;
    margin-top: 20px;
  }
  .greeting_profile_name {
    font-size: clamp(16px, 5.3vw, 20px);
  }
  .greeting_btn {
    flex-flow: column;
    align-items: center;
    margin-top: 20px;
  }
  .greeting_btn > * {
    width: fit-content;
    padding-inline: 30px;
  }
  .greeting_img {
    width: 70%;
    margin-inline: auto;
  }
}

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

  *医療コラム

==================================================================================================================================*/
.columnSlider,
.columnSlider a {
  color: #fff;
}

.columnSlider {
  background: #332d20;
  display: flex;
  align-items: flex-end;
  gap: 0 5.5%;
  padding: 80px 60px 135px 7.3%;
  position: relative;
}

.columnSlider::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/home/media_bg_pc.jpg) center top/cover no-repeat;
  pointer-events: none;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
}

.columnSlider_head {
  flex-shrink: 0;
}

.columnSlider .top_title {
  text-align: left;
  margin-bottom: 110px;
}
.columnSlider .top_title_eng {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentcolor;
}

.columnSlider_btn a {
  display: block;
  min-width: calc(100% - 25px);
  font-size: 16px;
  font-family: var(--font-jp);
  font-weight: 700;
  line-height: 1.6;
  padding: 15px 35px 15px 10px;
  border-bottom: 1px solid rgb(255 255 255 / 0.5);
  position: relative;
}

@media (hover: hover) {
  .columnSlider_btn a::before {
    display: block;
    content: "";
    width: 0;
    height: 100%;
    background: rgb(255 255 255 / 0.3);
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s, opacity 0.4s;
  }
  .columnSlider_btn a:hover::before {
    width: 100%;
    opacity: 1;
  }
}

.columnSlider_btn a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 71%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* ----- Column ----- */
#columnSlider2 {
  background: #1b3b42;
}

#columnSlider2::before {
  background-image: url(../images/home/column_bg_pc.jpg);
}

#columnSlider2 .top_title_eng {
  font-size: 80px;
}

#columnSlider2 .column_info ul li {
  background: #a48a30;
}

/* ----- コラムスライダー設定 ----- */
.columnSlider .splide {
  width: 100%;
  padding-top: 100px;
  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: 70px;
  height: 70px;
  opacity: 0.5;
  border: 1px solid currentColor;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition: opacity 0.2s;
}

.columnSlider .splide__arrow:hover {
  opacity: 1;
}

.columnSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.columnSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
}

.columnSlider .splide__arrow--prev {
  right: 120px;
}

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

.columnSlider .splide__arrow--next {
  right: 40px;
}

.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: 29px;
  right: 240px;
  z-index: 1;
  display: flex;
  gap: 10px 18px;
}

.columnSlider .columnSlider-page {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background 0.2s, opacity 0.2s;
}

.columnSlider .columnSlider-page.is-active {
  background: currentColor;
  opacity: 0.8;
}

/* ----- コラム個別 ----- */
.columnSlider .column_item a {
  display: block;
  width: 100%;
  font-size: 16px;
}

.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%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
  aspect-ratio: 768/480;
}

.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-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.075em;
  opacity: 0.9;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.columnSlider .column_info {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 10px 20px;
  margin: 0 0 10px;
  line-height: 1.4;
}

.columnSlider .column_date {
  font-family: var(--font-en);
  font-size: 113%;
  flex-shrink: 0;
}

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

.columnSlider .column_info ul li {
  min-width: 110px;
  padding: 5px 10px;
  background: #148ba7;
  text-align: center;
}

.columnSlider .column_title {
  font-family: var(--font-jp);
  font-size: 106%;
  letter-spacing: 0.01em;
}

/*==============================================
  *SP　医療コラム
==============================================*/
@media screen and (max-width: 640px) {
  .columnSlider {
    display: block;
    padding: 60px 20px;
  }
  .columnSlider::before {
    background-image: url(../images/home/media_bg_sp.jpg);
  }
  #columnSlider2::before {
    background-image: url(../images/home/column_bg_sp_v2.jpg);
  }
  .columnSlider_head {
    width: 100%;
    margin-bottom: 40px;
  }
  .columnSlider .top_title {
    text-align: center;
    margin-bottom: 30px;
  }
  .columnSlider .top_title_eng {
    font-size: clamp(50px, 16vw, 60px)!important;
  }
  .columnSlider .splide {
    padding-top: 80px;
  }
  .columnSlider .splide__arrow {
    width: 50px;
    height: 50px;
  }
  .columnSlider .splide__arrow--next {
    right: 20px;
  }
  .columnSlider .splide__arrow--prev {
    right: 80px;
  }
  .columnSlider .splide__pagination {
    top: 20px;
    right: auto;
    left: 0;
    justify-content: flex-end;
    gap: 12px;
    transform: translate(0);
  }
  .columnSlider .columnSlider-page {
    width: 10px;
    height: 10px;
  }
  .columnSlider .column_item a {
    font-size: 100%;
  }
  .columnSlider .column_item:first-child .column_item_thum::before {
    width: 80px;
    height: 80px;
    padding: 13px 25px 0 0;
  }
}

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

  *お知らせ～医院概要

==================================================================================================================================*/
.top_clinic {
  padding-top: 100px;
  padding-bottom: 125px;
  position: relative;
}

.top_clinic::before {
  display: block;
  content: "";
  width: 520px;
  height: calc(100% - 165px);
  background: #f2f1ec;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/* ==============================================
  *SP お知らせ～医院概要
============================================== */
@media screen and (max-width: 640px) {
  .top_clinic {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .top_clinic::before {
    width: 40%;
    height: 100%;
  }
}

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

  *お知らせ

==================================================================================================================================*/
.top_news .inner {
  display: flex;
}

.top_news_left {
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.top_news_right {
  width: 840px;
  display: flex;
  flex-flow: column-reverse;
}

.top_news .top_title {
  text-align: left;
  margin: 0 0 30px;
}

.top_news_recruit {
  max-width: 270px;
}

@media (hover: hover) {
  .top_news_recruit a:hover {
    opacity: 0.8;
  }
}

/* ----- MPクラウド ----- */
#mp-title .news_item a {
  display: flex;
  align-items: center;
  padding: 26px 22px;
  border-top: solid 1px #d2d2d2;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.4;
}

#mp-title .news_item a:hover {
  color: var(--main-color);
}

#mp-title .news_item:last-of-type a {
  border-bottom: solid 1px #d2d2d2;
}

#mp-title .news_info {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0 30px;
  margin-right: 30px;
}

#mp-title .news_info .date {
  display: inline-block;
  flex-shrink: 0;
}

#mp-title .news_info .cate {
  display: inline-block;
  flex-shrink: 0;
  min-width: 130px;
  padding: 5px 10px;
  font-style: normal;
  font-size: 94%;
  text-align: center;
}

#mp-title .news_title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#mp-title .news_item span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* お知らせがない時 */
#mp-title .news_empty {
  text-align: center;
}

.top_news_btn {
  text-align: right;
  margin-bottom: 20px;
}

.top_news_btn a {
  color: #06687f;
  font-size: 18px;
  font-family: var(--font-jp);
  font-weight: 700;
  line-height: 1.6;
}

@media (hover: hover) {
  .top_news_btn a:hover {
    color: var(--main-color);
  }
}

.top_news_btn a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 71%;
  vertical-align: middle;
  padding-left: 18px;
}

/* ==============================================
  *SP お知らせ
============================================== */
@media screen and (max-width: 640px) {
  .top_news .inner {
    display: block;
  }
  .top_news_left {
    display: block;
    margin-bottom: 30px;
  }
  .top_news_right {
    width: 100%;
    display: block;
  }
  .top_news .top_title {
    text-align: center;
  }
  .top_news_recruit {
    margin-inline: auto;
  }
  #mp-title .news_item a {
    display: block;
    font-size: 100%;
    padding: 20px 0;
  }
  #mp-title .news_info {
    gap: 0 15px;
    margin: 0;
  }
  #mp-title .news_info .cate {
    min-width: auto;
  }
  #mp-title .news_title {
    margin-top: 10px;
  }
  .top_news_btn {
    margin: 20px 0 0;
  }
}

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

  *医院概要

==================================================================================================================================*/
.top_info {
  margin-top: 120px;
}

.top_info .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

/* ------ 左側 ------ */
.top_info_left {
  width: 600px;
}

.top_info_left .logo {
  max-width: 192px;
  margin: 0 auto 40px;
}

.top_info_left address {
  text-align: center;
}

.top_info_left address .location {
  font-family: var(--font-jp);
  font-size: 17px;
  line-height: 1.6;
}

.top_info_left address .location .zipcode {
  margin-right: 1em;
}

.top_info_left address .location .zipcode::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: linear-gradient(0deg, #9d7e32 0%, #dbb33a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 10px;
}

.top_info_left address .tel {
  margin-top: 22px;
  font-family: var(--font-en);
  font-size: 38px;
  letter-spacing: 0.075em;
  line-height: 1;
  background: linear-gradient(0deg, #9d7e32 0%, #dbb33a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_info_left address .tel::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 61%;
  vertical-align: middle;
  padding-right: 8px;
}

.top_info_left address .note {
  margin-top: 20px;
}

/* 診療科目 */
.top_info .speciality {
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 0 35px;
  margin: 25px auto 0;
  background: #f5f5f5;
  border: 1px solid #fff;
  padding: 14px;
  font-family: var(--font-jp);
  font-size: 17px;
  line-height: 1.8;
}

.top_info .speciality .title {
  flex-shrink: 0;
  width: 140px;
  padding: 20px 10px;
  background: #dad3b3;
  font-weight: 700;
  text-align: center;
}

/* 診療時間  */
.top_info .office_hour:first-child {
  margin-top: 20px;
}

/* ------ 右側 ------ */
.top_info_right {
  width: 540px;
}

.top_info_right .googlemap {
  position: relative;
}

.top_info_right .googlemap iframe {
  width: 100%;
  height: 400px;
}

.top_info_access {
  line-height: 1.9;
  margin-top: 15px;
}

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

.top_info_access .btn01 {
  margin-top: 0;
}

.top_info_right .calendar_text {
  margin-top: 20px;
}

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

/* ==============================================
  *SP 医院概要
============================================== */
@media screen and (max-width: 640px) {
  .top_info {
    margin-top: 60px;
  }
  .top_info .inner {
    flex-flow: column;
    gap: 30px;
  }
  .top_info .inner > * {
    width: 100%;
  }

  /* ------ 左側 ------ */
  .top_info_left .logo {
    width: 60%;
    margin-bottom: 30px;
  }
  .top_info_left address .location {
    font-size: 14px;
  }
  .top_info_left address .location .zipcode {
    display: block;
    margin-right: 0;
  }
  .top_info_left address .tel {
    font-size: 30px;
  }

  /* 診療科目 */
  .top_info .speciality {
    font-size: 15px;
    flex-flow: column;
    gap: 10px;
  }
  .top_info .speciality .title {
    width: 100%;
  }

  /* ------ 右側 ------ */
  .top_info_right .map {
    margin-bottom: 20px;
  }
  .top_info_right .googlemap iframe {
    height: 300px;
  }
}

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

  *当院の特徴

================================================================================================================================== */
.feature {
  padding-bottom: 355px;
  margin-bottom: -220px;
  position: relative;
}

.feature::before {
  display: block;
  content: "";
  width: 640px;
  height: 100%;
  background: #f2f1ec;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.feature_head {
  text-align: center;
}

.feature .top_title {
  position: relative;
}

.feature .top_title_eng {
  margin-top: -0.55em;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: 370px;
}

.feature_num {
  color: #a9a077;
  font-family: var(--font-en);
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
}

.feature_num span {
  color: var(--main-color);
  font-size: 233%;
  padding-left: 10px;
  background: linear-gradient(0deg, #a9a077 0%, #148ba7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature_img {
  margin-bottom: 22px;
}

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

.feature_title {
  margin-bottom: 15px;
}

.feature_title h3 {
  font-family: var(--font-jp);
  font-weight: 700;
  color: #06687f;
  font-size: 140%;
  letter-spacing: 0.025em;
  line-height: 1.6;
}

.feature_title + p {
  font-size: 107%;
  line-height: 2.2;
}

.feature_title + p:not(:last-child) {
  margin-bottom: 25px;
}

.feature_item .btn01 {
  margin-top: auto;
}

.feature_item .btn01:has(> :nth-child(2)) {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 10px;
}

.feature_item .btn01:has(> :nth-child(2)) a {
  width: calc((100% - 10px) / 2);
}

.feature_item .btn01 a {
  display: block;
  background: none;
  border: 1px solid #b79b58;
  color: #957a3a;
  font-size: 120%;
  padding: 14px 10px;
}

.feature_item .btn01 a::after {
  display: none;
}

@media (hover: hover) {
  .feature_item .btn01 a {
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .feature_item .btn01 a:hover {
    background: #b79b58;
    color: #fff;
  }
}

/* ==============================================
  *SP 当院の特徴
============================================== */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 120px;
    margin-bottom: -60px;
  }
  .feature::before {
    width: 40%;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
  }
  .feature_title h3 {
    font-size: 129%;
  }
  .feature_title + p {
    font-size: 100%;
  }
  .feature_item .btn01:has(> :nth-child(2)) {
    flex-flow: column;
  }
  .feature_item .btn01:has(> :nth-child(2)) a {
    width: 100%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider .splide__list {
  gap: 30px;
}

#infinitySlider .splide__slide:nth-child(even) {
  padding-top: 50px;
}

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

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

  *診療案内

================================================================================================================================== */
.medical {
  margin-top: 110px;
}

.medical .top_title {
  margin-bottom: 60px;
}

/* ------ 1カラム ------ */
.medical_list .medical_item {
  position: relative;
  overflow: hidden;
}
.medical_list .medical_item:not(:last-child) {
  margin-bottom: 50px;
}
.medical_list .medical_item,
.medical_list .medical_item a {
  color: #fff;
}
.medical_list .medical_item_bg {
  height: calc(100% - 50px);
  background: #000;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.medical_list .medical_item_bg, .medical_list .medical_item_bg::after {
  left: 0;
  bottom: 0;
}
.medical_list .medical_item_bg,
.medical_list .medical_item_bg img {
  width: 100%;
}
.medical_list .medical_item_bg::after {
  display: block;
  content: "";
  width: 90%;
  height: 100%;
  background: linear-gradient(90deg, #1e3147 0%, #1e3147 55%, transparent 100%);
  position: absolute;
}
.medical_list .medical_item_bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
  opacity: 0.3;
}
.medical_list .medical_item_en {
  font-size: clamp(130px, 8.3vw, 160px);
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: -0.12em;
  z-index: 1;
}
.medical_list .medical_item_num {
  font-size: clamp(70px, 5.3vw, 102px);
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.8;
  position: absolute;
  left: 35px;
  bottom: -0.52em;
}
.medical_list .medical_item_num span {
  font-size: 233%;
  padding-left: 22px;
}
.medical_list .medical_item_inner {
  font-family: var(--font-jp);
  font-weight: 700;
}
.medical_list .medical_item_title {
  font-size: 32px;
  letter-spacing: 0.025em;
  line-height: 1.6;
  margin-bottom: 22px;
}
.medical_list .medical_item_text {
  font-size: 17px;
  line-height: 2.2;
}
.medical_list .medical_item .btn01 {
  margin-top: 30px;
}
.medical_list .medical_item .btn01 a {
  display: block;
}
.medical_list .medical_item .btn01 a:nth-child(2n):not(:nth-child(4n))::after, .medical_list .medical_item .btn01 a:nth-child(4n-1)::after {
  background: linear-gradient(90deg, #002061 0%, #083590 100%);
}

/* ------ 5カラム ------ */
.medical_list2 {
  padding: 20px 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.medical_list2 .medical_item {
  width: calc((100% - 80px) / 5);
}
.medical_list2 .medical_item a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  min-height: 270px;
  padding: 10px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background: #222;
  position: relative;
  overflow: hidden;
}
.medical_list2 .medical_item a:hover .medical_item_img img {
  opacity: 0.5;
  transform: scale(1.1);
}
.medical_list2 .medical_item a > *:not(.medical_item_img) {
  position: relative;
}
.medical_list2 .medical_item_icon {
  max-width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0 auto 12px;
}
.medical_list2 .medical_item_img {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.medical_list2 .medical_item_img,
.medical_list2 .medical_item_img img {
  width: 100%;
  height: 100%;
}
.medical_list2 .medical_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.medical_list2 .medical_item_title {
  font-size: clamp(19px, 1.4vw, 26px);
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.075em;
}
.medical_list2 .medical_item_en {
  font-size: 15px;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-top: 5px;
}
.medical_list2 .medical_item_btn {
  font-size: 18px;
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 12px;
}
.medical_list2 .medical_item_btn::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 71%;
  padding-left: 15px;
}

/* ==============================================
  *PC 診療案内
============================================== */
@media print, screen and (min-width: 641px) {
  .medical_list .medical_item {
    padding-top: 50px;
  }
  .medical_list .medical_item_img {
    max-width: 860px;
    width: 45%;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .medical_list .medical_item_img,
.medical_list .medical_item_img img {
    height: 100%;
  }
  .medical_list .medical_item_img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
  }
  .medical_list .medical_item_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    max-width: 1200px;
    min-height: 610px;
    margin-inline: auto;
  }
  .medical_list .medical_item_inner > * {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
  }
  .medical_list .medical_item .btn01 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .medical_list .medical_item .btn01 a {
    width: calc((100% - 20px) / 2);
    padding-inline: 20px;
  }
  .medical_list .medical_item:nth-child(even) .medical_item_bg, .medical_list .medical_item:nth-child(even) .medical_item_bg::after {
    left: auto;
    right: 0;
  }
  .medical_list .medical_item:nth-child(even) .medical_item_bg::after {
    background: linear-gradient(90deg, transparent 0%, #0e383f 55%, #0e383f 100%);
  }
  .medical_list .medical_item:nth-child(even) .medical_item_bg img {
    opacity: 0.2;
    -o-object-position: left top;
       object-position: left top;
  }
  .medical_list .medical_item:nth-child(even) .medical_item_en {
    right: auto;
    left: -15px;
  }
  .medical_list .medical_item:nth-child(even) .medical_item_img {
    left: auto;
    right: 0;
  }
  .medical_list .medical_item:nth-child(even) .medical_item_img img {
    -webkit-clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  }
  .medical_list .medical_item:nth-child(even) .medical_item_num {
    left: auto;
    right: 0;
  }
  .medical_list .medical_item:nth-child(even) .medical_item_inner > * {
    margin-left: 0;
  }
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical {
    margin-top: 60px;
  }
  .medical .top_title {
    margin-bottom: 40px;
  }

  /* ------ 1カラム ------ */
  .medical_list .medical_item_bg {
    height: 100%;
    padding-top: 76.8%;
  }
  .medical_list .medical_item_bg::after {
    width: 100%;
    background: linear-gradient(0deg, #1e3147 0%, #1e3147 30%, transparent 100%);
  }
  .medical_list .medical_item_bg img {
    height: auto;
  }
  .medical_list .medical_item_en {
    font-size: clamp(50px, 16vw, 60px);
    top: auto;
    bottom: -0.12em;
  }
  .medical_list .medical_item_img {
    position: relative;
    overflow: hidden;
  }
  .medical_list .medical_item_num {
    font-size: clamp(38px, 13.3vw, 50px);
    left: 0.5em;
  }
  .medical_list .medical_item_num span {
    padding-left: 15px;
  }
  .medical_list .medical_item_inner {
    padding: 40px 20px;
  }
  .medical_list .medical_item_title {
    font-size: 20px;
  }
  .medical_list .medical_item_text {
    font-size: 100%;
  }
  .medical_list .medical_item .btn01 a:not(:last-child) {
    margin-bottom: 10px;
  }
  .medical_list .medical_item:nth-child(even) .medical_item_bg::after {
    background: linear-gradient(0deg, #0e383f 0%, #0e383f 30%, transparent 100%);
  }

  /* ------ 2カラム ------ */
  .medical_list2 {
    justify-content: center;
    gap: 10px;
  }
  .medical_list2 .medical_item {
    width: calc((100% - 10px) / 2);
  }
  .medical_list2 .medical_item a {
    display: block;
    min-height: auto;
    padding: 30px 10px;
  }
  .medical_list2 .medical_item_title {
    font-size: clamp(12px, 3.7vw, 18px);
  }
  .medical_list2 .medical_item_en {
    font-size: 12px;
  }
  .medical_list2 .medical_item_btn {
    font-size: 100%;
  }
  .medical_list2 .medical_item_btn::after {
    padding-left: 10px;
  }
}

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

  *病状、症状から探す

================================================================================================================================== */
.top_search {
  padding-top: 110px;
  padding-bottom: 150px;
  position: relative;
}
.top_search::before {
  display: block;
  content: "";
  width: 100%;
  height: calc(100% - 280px);
  background: linear-gradient(0deg, #e8e5d6 0%, #e8e5d6 46%, #fff 100%);
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.top_search_inner {
  max-width: 1400px;
  margin-inline: auto;
}

.top_search .top_title {
  margin-bottom: 80px;
}

.top_search .tab_list {
  gap: 10px 48px;
  max-width: 1112px;
  margin-inline: auto;
}

.top_search .tab_list .tab {
  font-size: 167%;
  padding: 16px 20px;
}

.top_search .panel_wrap {
  padding-block: 55px;
  background: #fff;
  border: 3px solid #998e5c;
}

.top_search .panel {
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
}

.panel_flex {
  display: flex;
  flex-flow: wrap;
  gap: 0 50px;
}

.top_search_img {
  width: 360px;
}

.panel_flex .top_search_list {
  flex: 1;
}

.top_search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

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

/* ----- リンクボタン ----- */
.top_search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 10px 43px 10px 30px;
  background: #e9e6d7;
  color: var(--text-color);
  font-family: var(--font-jp);
  font-size: 127%;
  line-height: 1.6;
}

@media (hover: hover) {
  .top_search_list li a {
    transition: background 0.3s ease-in-out, color 0.3s;
  }
  .top_search_list li a::before {
    transition: color 0.3s;
  }
  .top_search_list li a:hover {
    background: #b6a34a;
  }
  .top_search_list li a:hover, .top_search_list li a:hover::before {
    color: #fff;
  }
}

.top_search_list li a::before {
  display: block;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  color: #b6a34a;
  font-size: 74%;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .top_search {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .top_search_inner {
    padding-inline: 20px;
  }
  .top_search .top_title {
    margin-bottom: 40px;
  }
  .top_search .tab_list {
    display: block;
    margin-bottom: 15px;
  }
  .top_search .tab_list .tab {
    font-size: 114%;
  }
  .top_search .tab_list .tab:not(:last-child) {
    margin-bottom: 10px;
  }
  .top_search .panel_wrap {
    padding-block: 20px;
    border-width: 2px;
  }
  .panel_flex {
    display: block;
  }
  .top_search_img {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .top_search_list li {
    width: 100%;
  }
  .top_search_list li a {
    min-height: auto;
    font-size: 107%;
    padding: 10px 35px 10px 20px;
  }
  .top_search_list li a::before {
    right: 20px;
  }
}