@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 {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
  font-family: var(--font-jp);
  font-weight: bold;
  color: var(--text-color);
  font-size: 25px;
  letter-spacing: 0.2em;
  margin-top: -20px;
}

.top_title .eng {
  display: inline-block;
  /* margin-bottom: 5px; */
  color: var(--main-color);
  font-size: 120px;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: 600;
}

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

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 730px;
  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: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.05em;
  font-family: var(--font-jp);
  font-weight: 700;
  color: white;
  filter: drop-shadow(0 0 5px #4586d5) drop-shadow(0 0 5px #4586d5) drop-shadow(0 0 5px #4586d5);
  line-height: 1.625;
}

/* ----- コンテンツ ----- */
.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: 350px;
  }

  /* ----- スライダーの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: 50%;
    bottom: inherit;
    transform: translateY(-50%);
    /* 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;
  }

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

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

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

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

.clinic::before {
  content: '';
  position: absolute;
  top: -110px;
  left: 0;
  width: 420px;
  height: auto;
  aspect-ratio: 247 / 899;
  z-index: -1;
  background: url(../images/news_bg_left.png) top / contain no-repeat;
}

.clinic::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 0;
  width: 406px;
  height: auto;
  aspect-ratio: 406 / 771;
  z-index: -2;
  background: url(../images/news_bg_right.png) top / contain no-repeat;
}


.clinic .top_title {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.clinic .top_title::before {
  content: '';
  position: absolute;
  top: -15px;
  /* top: 0px;
  right: 0; */
  width: 349px;
  height: auto;
  aspect-ratio: 349 / 85;
  z-index: -1;
  background: url(../images/title_news_deco.png) top / contain no-repeat;
}


.clinic .top_title::after {
  content: '';
  position: absolute;
  top: 75px;
  width: 60px;
  height: auto;
  aspect-ratio: 60 / 18;
  z-index: -1;
  background: url(../images/title_line.png) top / contain no-repeat;
}

.clinic .top_title .eng {
  font-size: 76px;
  text-align: center;
}

.clinic .top_title h2 {
  font-size: 18px !important;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.clinic .clinic_top .inner {
  display: flex;
  justify-content: space-between;
  /* gap: 70px; */
  padding: 80px 0;
}

/* ------ お知らせ ------ */
.clinic .news,
.clinic_column {
  width: 522px;
  height: 527px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* width: calc(50% - 35px); */
}

.news .top_title h2 {
  font-size: 170%;
}

.news .btn01,
.clinic_column .btn01 {
  /* margin-top: auto; */
  margin-top: 54px;
  text-align: center;
}





/* ------ コラム ------ */

.clinic_column .top_title {
  margin-bottom: 33px;
}

.clinic_column .top_title::before {
  content: '';
  position: absolute;
  top: -15px;
  /* top: 0px;
  right: 0; */
  width: 388px;
  height: auto;
  aspect-ratio: 388 / 100;
  z-index: -1;
  background: url(../images/title_blog_deco.png) top / contain no-repeat;
}

.clinic_column .top_title .eng {
  color: #83dad9;
}

.clinic_column .top_title h2 {
  font-size: 170%;
}

/* .clinic_column .column_list {
  margin-bottom: 54px;
} */

.clinic_column .column_item {
  width: 100%;
  position: relative;
  /* border-top: 2px dotted var(--line-color); */
}

.clinic_column .column_item::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  z-index: -1;
  background-image: url(../images/dot_line.png);
  background-repeat: repeat-x;
  /* 横方向にリピート */
  background-position: left center;
  /* 左端から中央に配置 */
  background-size: auto;
  /* 元の幅・高さのまま */
}


/* .clinic_column .column_item:last-child {
  border-bottom: 2px dotted var(--line-color);
} */

.clinic_column .column_item a {
  display: flex;
  gap: 20px;
  height: 100%;
  padding: 14px 0px;
  align-items: center;
}

/* サムネイル */
.clinic_column .column_item_thum {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}

.clinic_column .column_item_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

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

.clinic_column .column_info_inner {
  display: flex;
  flex-flow: wrap;
  gap: 10px 20px;
}

.clinic_column .column_item a .column_info {
  display: flex;
  flex-flow: column;
  gap: 10px;
  width: calc(100% - 120px);
  color: var(--text-color);
  font-size: 90%;
}

/*　カテゴリー */
.clinic_column .column_item a .column_date {
  flex-shrink: 0;
  font-size: 14px;
  color: #a6acb9;
  letter-spacing: 0.1em;
}

.clinic_column .column_item a .column_info ul {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}

.clinic_column .column_item a .column_info ul li {
  min-width: 80px;
  padding: 2px 10px;
  background: #f3c169;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  border-radius: 50px;
  font-family: var(--font-jp);
}

/* コラムタイトル */
.clinic_column .column_item a .column_title {
  color: var(--text-color);
  font-size: 120%;
  white-space: nowrap;
  transition: color 0.2s;
}

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

.clinic_column .column_item a .column_title p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  letter-spacing: 0.1em;
}


.clinic_column .btn01>* {
  border: 1px solid var(--sub-color);

}

.clinic_column .btn01 a {
  background: var(--sub-color);
  margin-top: auto;
}

/* コラムがない時 */
.colum_coming {
  margin: 0 auto 30px;
  text-align: center;
}

/* ------ 医院概要 ------ */
.clinic .info {
  width: 100%;
}

.clinic .info .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 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-size: 30px;
  line-height: 1;
}

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

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

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

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

.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 .title {
  background: #ffffff;
}

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

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

@media screen and (max-width: 640px) {
  .clinic .clinic_top .inner {
    flex-flow: column;
    gap: 60px;
    padding: 60px 20px;
  }

  /* ------ お知らせ ------ */
  .clinic .news,
  .clinic_column {
    width: 100%;
    height: auto;
  }

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

  /* ------ 医療コラム ------ */
  /* .clinic_column {
    width: 100%;
  } */

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

  .clinic_column .column_item a {
    padding: 15px 5px 15px 10px;
  }

  .clinic_column .column_item a .column_info ul li {
    min-width: 70px;
  }


  .news .btn01,
  .clinic_column .btn01 {
    margin-top: 20px;
    text-align: center;
  }

  .clinic_column .btn01>*::after {
    color: var(--sub-color);
  }

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

  /* ------ 医院概要 ------ */
  .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%;
  }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
  position: relative;
  background: url(../images/bg_blue.jpg) top / contain repeat;
  /* background: var(--bg-color); */
}

.greeting::before,
.greeting::after {
  content: '';
  position: absolute;
  top: -27px;
  width: 100%;
  height: 27px;
  z-index: -1;
  background-image: url(../images/wave.png);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto;
}

.greeting::after {
  top: inherit;
  bottom: -27px;
  z-index: 2;
  transform: scale(1, -1);
}

.greeting .inner {
  padding-top: 53px;
  padding-bottom: 53px;
}

.greeting .inner::before {
  content: '';
  position: absolute;
  top: 140px;
  left: 100px;
  width: 241px;
  height: auto;
  aspect-ratio: 241 / 458;
  z-index: 0;
  background: url(../images/greeting_deco_left_.png) top / contain no-repeat;
}

.greeting .inner::after {
  content: '';
  position: absolute;
  bottom: 38px;
  right: 70px;
  width: 470px;
  height: auto;
  aspect-ratio: 470 / 730;
  z-index: 0;
  background: url(../images/greeting_deco_right.png) top / contain no-repeat;
}

.greeting .top_title {
  position: relative;
}

.greeting .top_title::before {
  content: '';
  position: absolute;
  transform: translate(-42%, -50%);
  top: 50%;
  left: 50%;
  width: 207px;
  height: auto;
  aspect-ratio: 207 / 162;
  z-index: -1;
  background: url(../images/illust_turtle.png) top / contain no-repeat;
}

.greeting .top_title .eng {
  color: #4da2f9;
}




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

.greeting_flex {
  display: flex;
  gap: 105px;
  justify-content: flex-end;
}

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

.greeting_left {
  flex-shrink: 0;
  width: 670px;
}

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

.greeting_text p {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 2.23;
}

.greeting_right {
  width: 353px;
}

.greeting_right img {
  height: 386px;
  object-fit: cover;
  border-radius: 10px;
}

.greeting_profile {
  text-align: center;
  font-family: var(--font-jp);
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.greeting_profile .position,
.greeting_profile .name span {
  line-height: 1;
  font-size: 16px;
}

.greeting_profile .name {
  font-size: 22px;
  padding-top: 9px;
  line-height: 1;
}

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

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {

  .greeting {
    background: url(../images/sp_bg_blue.jpg) top / contain repeat;
  }

  .greeting .inner {
    padding-top: 49px;
    padding-bottom: 49px;
    overflow: hidden;
  }

  .greeting::before {
    aspect-ratio: 1024 / 27;
    top: -11px;
    width: 100%;
    height: 11px;
    z-index: -1;
    background-image: url(../images/sp_wave.png);
    background-repeat: repeat-x;
    background-position: left top;
    background-size: cover;
  }

  .greeting::after {
    bottom: -11px;
    height: 11px;
    background-image: url(../images/sp_wave.png);
    background-repeat: repeat-x;
    background-position: left top;
    background-size: cover;
  }

  .greeting .inner::before {
    bottom: 50px;
    top: inherit;
    left: 5px;
    width: 30%;
    background: url(../images/greeting_deco_left_.png) top / contain no-repeat;
    opacity: 0.5;
  }

  .greeting .inner::after {
    top: 113px;
    /* right: 0; */
    bottom: inherit;
    right: -117px;
    width: 60%;
  }

  .greeting .top_title::before {
    width: 40%;
  }

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

  .greeting_left,
  .greeting_right {
    width: 100%;
  }

  .greeting_right img {
    height: auto;
  }

  .greeting_text p {
    font-size: 16px;
  }

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

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

  *診療案内

================================================================================================================================== */
.medical {
  background: url(../images/medical_bg.jpg) repeat top/contain !important;
}

.medical .inner {
  padding: 80px 0;
}

.medical .top_title .eng {
  color: #ffffff;
}

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

.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 38px 26px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: 280px;
  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: flex-start;
  width: 100%;
  height: 100%;
  height: 600px;
  padding: 40px 20px 30px 20px;
  background: rgba(255, 255, 255);
  text-align: center;
  border-radius: 15px;
}

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

.medical_icon {
  width: 195px;
  height: 176px;
  margin: 0 auto;
}

.medical_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.medical_title {
  margin: 0 auto;
  width: 100%;
}


.medical_title h3 {
  color: #46c6be;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: var(--font-jp);
  font-weight: bold;
  padding: 30px 0;
  line-height: 1.3;
  position: relative;

}

.medical_title h3::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 6px;
  z-index: 1;
  background: url(../images/feature_item_line.png) top / contain no-repeat;
}

.medical_item:nth-child(even) .medical_title h3 {
  color: #4fa3f2;
}

.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);
  text-align: left;
}

.medical_text .list03 {
  gap: 0;
}

.medical_text .list03 li {
  font-size: 14px;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.medical_text .list03 li::before {
  background: #46c6be;
}


.medical_item:nth-child(even) .medical_text .list03 li::before {
  background: #4fa3f2;
}

.medical_btn {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  width: 180px;
  padding: 5.5px 0px;
  background: #46c6be;
  border: 1px solid #46c6be;
  border-radius: 50px;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
  font-size: 16px;
  font-family: var(--font-jp-02);
  letter-spacing: 0.025em;
}

.medical_item:nth-child(even) .medical_btn span {
  background: #4fa3f2;
  border: 1px solid #4fa3f2;
}



/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical {
    background: url(../images/sp_medical_bg.jpg) repeat top/contain !important;
  }

  .medical .inner {
    padding: 60px 0;
  }

  .medical_list {
    width: 90%;
    margin: 0 auto;
    gap: 15px 10px;
  }

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




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

  .medical_inner {
    padding: 20px 10px;
    max-height: 530px;
    padding-top: 0;
  }

  .medical_item:nth-child(1) .medical_inner,
  .medical_item:nth-child(2) .medical_inner {
    max-height: 440px;
  }


  .medical_item:nth-child(3) .medical_inner,
  .medical_item:nth-child(4) .medical_inner {
    max-height: 500px;
  }

  .medical_item:nth-child(7) .medical_inner {
    max-height: 490px;
  }

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

  .medical_icon {
    width: 90%;
  }

  .medical_title h3 {
    font-size: 110%;
    padding-top: 10px;
    padding-bottom: 20px;
    /* padding: 10px 0; */
  }

  /* 
  .medical_btn {
    margin-top: 20px;
  } */

  .medical_btn span,
  .medical_btn {
    width: 100%;
    display: block;
  }

  .medical_text {
    margin-top: 10px;
  }

  .medical_text .list03 li {
    font-size: 12px;
  }

  .medical_title h3::after {
    aspect-ratio: 106 / 6;
    width: 60%;
  }
}

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

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

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

.feature::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 420px;
  height: auto;
  aspect-ratio: 420 / 1971;
  z-index: -1;
  background: url(../images/feature_bg_left.png) top / contain no-repeat;
}

.feature::after {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  width: 422px;
  height: auto;
  aspect-ratio: 422 / 1973;
  z-index: -1;
  background: url(../images/feature_bg_right.png) top / contain no-repeat;
}

.feature .inner {
  padding: 80px 0;
  padding-bottom: 107px;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  /* gap: 50px 30px; */
  gap: 121px 0px;
  position: relative;
}

.feature_list::before {
  content: '';
  position: absolute;
  top: 44.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 1089px;
  height: 40px;
  aspect-ratio: 1089 / 40;
  z-index: -1;
  background: url(../images/line_flower.png) top / contain no-repeat;
}


.feature_item {
  display: flex;
  flex-flow: column;
  width: 355px;
  height: auto;
}


.feature_img img {
  border-radius: 20px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.feature_num {
  margin: 0 0 0 !important;
  font-size: 150%;
  color: #bdb6b0;
  font-family: var(--font-en);
  font-size: 40px;
  line-height: 1;
  text-align: center;
  position: relative;
}

.feature_num::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 20px;
  width: 73px;
  height: auto;
  aspect-ratio: 73 / 76;
  z-index: -1;
  background: url(../images/feature_num_flower.png) top / contain no-repeat;
}

.feature_num span {
  color: var(--orange);
  font-size: 70px;
}

.feature_item:nth-child(2) .feature_num span {
  color: var(--green);
}

.feature_item:nth-child(3) .feature_num span {
  color: var(--purple);
}

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

.feature_item:nth-child(5) .feature_num span {
  color: var(--pink);
}

.feature_item:nth-child(6) .feature_num span {
  color: #83dad9;
}

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


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

.feature_inner p {
  font-size: 17px;
  letter-spacing: 0.025em;
  line-height: 1.8;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin: 24px 0;
}

.feature_title h3 {
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: bold;
}

.feature_item:nth-child(2) .feature_title h3 {
  color: var(--green);
}

.feature_item:nth-child(3) .feature_title h3 {
  color: var(--purple);
}

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

.feature_item:nth-child(5) .feature_title h3 {
  color: var(--pink);
}

.feature_item:nth-child(6) .feature_title h3 {
  color: #83dad9;
}

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

.feature_item .btn01>* {
  padding: 4.5px 0;
  background: var(--orange);
  border: 1px solid var(--orange);
}


.feature_item:nth-child(2) .btn01>* {
  background: var(--green);
  border: 1px solid var(--green);
}

.feature_item:nth-child(3) .btn01>* {
  background: var(--purple);
  border: 1px solid var(--purple);
}

.feature_item:nth-child(4) .btn01>* {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.feature_item:nth-child(5) .btn01>* {
  background: var(--pink);
  border: 1px solid var(--pink);
}

.feature_item:nth-child(6) .btn01>* {
  background: #83dad9;
  border: 1px solid #83dad9;
}

.feature_item .btn01>*::after {
  display: none;
}

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

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

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

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

  .feature {
    position: relative;
  }

  .feature_list::before {
    display: none;
  }

  .feature::before,
  .feature::after {
    display: none;
  }


  .feature::after {
    right: 0;
    left: inherit;
    transform: scale(-1, 1);
  }



  .feature .inner {
    padding: 60px 0;
    width: 90%;
  }

  .feature_list {
    gap: 50px;
  }

  .feature_item {
    width: 100%;
  }

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


  .feature_img img {
    height: auto;
  }

  .feature_num {
    text-align: left;
    margin-left: 20px !important;
  }

  .feature_num::before {
    left: -20px;
  }

  .feature_inner p {
    font-size: 16px;
  }

  /* ---- 横並びボタン ----- */
  .btnflex_feature .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%;
  }
}


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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 10px;
}

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

#infinitySlider .splide__slide img {
  border-radius: 20px;
  height: 260px;
  object-fit: cover;
}

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

/* bnr */
.bnr_wrap {
  display: flex;
  gap: 20px;
  left: 20px;
  bottom: 53px;
  position: absolute;
}

.bnr_open p,
.bnr_first span {
  font-family: var(--font-jp);
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1;
}

.bnr_open {
  width: 280px;
  height: 200px;
  background: url(../images/bnr_open_bg.png) center / contain no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bnr_open::before {
  content: '';
  position: absolute;
  top: 65px;
  left: -25px;
  width: 310px;
  height: 82px;
  z-index: 2;
  background: url(../images/bnr_open_deco.png) top / cover no-repeat;
}

.bnr_open p:nth-child(1) {
  font-size: 20px;
}

.bnr_open p:nth-child(1) span {
  font-size: 30px;
}

.bnr_open p:nth-child(2) {
  font-size: 40px;
  padding-top: 9px;
  padding-bottom: 13px;
}

.bnr_open p:nth-child(3) {
  background: white;
  color: var(--sub-color);
  padding: 5px 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  font-size: 15px;
  margin-bottom: 9px;
}

.bnr_open p:nth-child(4) {
  font-size: 15px;
  line-height: 1.3;
}

.bnr_first {
  width: 200px;
  height: 200px;
  background: url(../images/bnr_medical.png) center / contain no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bnr_first::before {
  content: '';
  position: absolute;
  top: 15px;
  width: 60px;
  height: 60px;
  z-index: 2;
  background: url(../images/bnr_medical_icon.png) top / cover no-repeat;
}

.bnr_first span {
  text-align: center;
  display: block;
  font-size: 21px;
}

.bnr_first span:nth-child(1) {
  margin-top: 50px;
  line-height: 1.16;
}

.bnr_first span:nth-child(2) {
  background: white;
  color: #7fd9ff;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 8px;
}

/* Instagram */
.sec_insta {
  position: relative;
}

.sec_insta .inner {
  padding-top: 107px;
  padding-bottom: 80px;
}

.sec_insta::before {
  content: '';
  position: absolute;
  top: 80px;
  right: 25px;
  width: 311px;
  height: auto;
  aspect-ratio: 311 / 277;
  z-index: -1;
  background: url(../images/insta_bg_right.png) top / contain no-repeat;
}

.sec_insta::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 424px;
  height: auto;
  aspect-ratio: 424 / 488;
  z-index: -1;
  background: url(../images/insta_bg_left.png) top / contain no-repeat;
}

.sec_insta .top_title {
  position: relative;
}

.sec_insta .top_title::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 908px;
  height: auto;
  aspect-ratio: 908 / 122;
  z-index: -1;
  background: url(../images/title_insta_deco.png) top / contain no-repeat;
}

.sec_insta .top_title .eng {
  color: #f99e4d;
}

.sec_insta .top_title h2 {
  margin-top: 20px;
}

.sec_insta .insta_list {
  margin-top: 35px;
}

#sb_instagram #sbi_images {
  padding: 0 !important;
}

#sb_instagram .sbi_photo img {
  border-radius: 10px;
}

.sec_insta .btn01 {
  text-align: center;
  margin-top: 14px;
}

.sec_insta .btn01 a {
  font-size: 16px;
  width: 320px;
  padding: 8px 45px 8px 35px;
}

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

  .clinic::before,
  .feature::before,
  .sec_insta::after {
    left: -160px;
  }

  .clinic::after,
  .feature::after,
  .sec_insta::before {
    right: -150px;
  }

  .feature::before,
  .feature::after {
    opacity: 0.6;
  }
}

@media screen and (max-width: 640px) {
  .bnr_wrap {
    position: relative;
    width: 100%;
    gap: 0;
    justify-content: space-between;
    left: inherit;
    bottom: inherit;
    margin-bottom: 30px;
  }

  .bnr_wrap::before {
    content: '';
    position: absolute;
    aspect-ratio: 310 / 82;
    top: 55px;
    left: -15px;
    width: 60%;
    height: auto;
    z-index: 2;
    background: url(../images/bnr_open_deco.png) top / cover no-repeat;
  }

  .bnr_open {
    aspect-ratio: 280 / 200;
    width: 55%;
    height: auto;
  }

  .bnr_open::before {
    display: none;
  }

  .bnr_open p:nth-child(1) {
    font-size: 14px;
  }

  .bnr_open p:nth-child(1) span {
    font-size: 20px;
  }

  .bnr_open p:nth-child(2) {
    font-size: 20px;
  }

  .bnr_open p:nth-child(3),
  .bnr_open p:nth-child(4) {
    font-size: 12px;
  }

  .bnr_first_wrap {
    width: 40%;
    height: auto;
  }

  .bnr_first {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
  }

  .bnr_first::before {
    aspect-ratio: 1 / 1;
    width: 40px;
    height: 40px;
  }

  .bnr_first span:nth-child(1) {
    margin-top: 35px;
  }

  .bnr_first span:nth-child(2) {
    padding: 5px 10px;
    font-size: 10px;
    margin-top: 8px;
  }

  .bnr_first span {
    font-size: 14px;
  }

  header::before,
  header::after {
    display: none;
  }

  .clinic::before {
    top: -86px;
    left: 0;
    width: 30%;
    height: auto;
    background: url(../images/news_bg_left.png) top / contain no-repeat;
  }

  .clinic::after {
    top: 798px;
    right: 0;
    width: 50%;
    height: auto;
    background: url(../images/news_bg_right.png) top / contain no-repeat;
    opacity: 0.5;
  }

  .clinic .top_title .eng,
  .clinic .top_title .eng,
  .top_title .eng {
    font-size: 60px;
  }

  .clinic .top_title h2,
  .clinic .top_title h2,
  .top_title h2 {
    font-size: 16px;
  }

  .clinic .top_title::before,
  .clinic_column .top_title::before {
    width: 73%;
  }

  .clinic .top_title::after {
    top: 60px;
  }

  .sec_insta .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sec_insta .top_title .eng {
    font-size: 50px;
  }

  .sec_insta .top_title::before {
    z-index: 2;
    width: 100%;
  }

  .sec_insta::before {
    width: 40%;
    right: 0;
    top: 51px;
  }

  .sec_insta::after {
    width: 40%;
    left: 0;
  }

  #infinitySlider .splide__slide img {
    aspect-ratio: 400 / 260;
    height: auto;
  }

  .feature::before {
    opacity: 1 !important;
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px !important;
    right: inherit;
    width: 100%;
    height: auto;
    aspect-ratio: 414 / 78;
    z-index: 2;
    background: url(../images/sp_feature_top.png) top / contain no-repeat;
  }

  .feature::after {
    opacity: 1 !important;
    display: block;
    content: '';
    position: absolute;
    top: inherit !important;
    bottom: 0px !important;
    left: 0px !important;
    right: inherit !important;
    width: 100%;
    height: auto;
    aspect-ratio: 414 / 82;
    z-index: -1;
    background: url(../images/sp_feature_bottom.png) top / contain no-repeat;
  }
}

/* 375 */
@media screen and (max-width: 375px) {
  .mvCatch p {
    font-size: 120%;
  }

  .bnr_open p:nth-child(1) {
    font-size: 12px;
  }

  .bnr_open p:nth-child(1) span {
    font-size: 18px;
  }

  .bnr_open p:nth-child(2) {
    padding-top: 5px;
    padding-bottom: 8px;
  }

  .bnr_open p:nth-child(3),
  .bnr_open p:nth-child(4) {
    font-size: 10px;
  }

  .bnr_first span:nth-child(1) {
    margin-top: 40px;
  }

  .bnr_first span {
    font-size: 12px;
  }

  .bnr_first span:nth-child(2) {
    font-size: 8px;
  }
}