@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: 56px;
  line-height: 1.5;
  text-align: center;
}

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

.top_title h2 {
  letter-spacing: .1em;
  font-size: 180%;
}

.top_title .eng {
  display: inline-block;
  padding-bottom: 18px;
  padding-left: 0.06em;
  background: linear-gradient(135deg, var(--main-color), #ebd3ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--main-color);
  line-height: 1;
  letter-spacing: 0.06em;
  font-size: 100px;
  font-family: var(--font-en);
  font-weight: 400;
}

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

  .top_title h2 {
    font-size: 120%;
  }

  .top_title .eng {
    font-size: min(17vw, 64px);
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  padding: 0 50px;
  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%;
  border-radius: 30px;
}

.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;
  border-radius: 30px;
}

/* アニメーションを実行 */
.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: 50%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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


.mvCatch p {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  color: #755534;
  letter-spacing: 0.1em;
  font-size: 200%;
  font-family: var(--font-jp);
  text-shadow: 0 0 24px rgb(255 255 255), 0 0 14px rgb(255 255 255), 0 0 4px rgb(255 255 255), 0 0 1px rgb(255 255 255);
}

.mvCatch p span {
  line-height: 1;
  font-size: 120%;
  font-family: var(--font-en-hand);
  font-weight: 400;
}

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

/* ----- MVバナー ----- */
.mv_bnr_wrap {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 32px;
}

.mv_bnr_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 210px;
  height: auto;
  aspect-ratio: 1 / 1;
  padding-top: 46px;
  background: url(../images/bg_texture_pink.png), linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  border-radius: 50%;
}

.mv_bnr_item::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  background: rgb(255 255 255 / .7);
  border-radius: 50%;
  opacity: .5;
}

.mv_bnr_title {
  position: relative;
  padding-top: 40px;
  background: url(../images/logo_icon_colored.png) no-repeat center top / 26px auto;
  text-align: center;
  color: #755534;
  line-height: 1.4;
  font-size: 110%;
  font-family: var(--font-jp);
}

.mv_bnr_item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding: 0 10px;
}

.mv_bnr_item ul li {
  position: relative;
  color: var(--main-color);
  text-align: center;
  line-height: 1.4;
  font-size: 90%;
  font-family: var(--font-jp);
}

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

  .mvImg .splide__track, .fade .mvImg .splide__slide img {
    border-radius: 24px;
  }

  /* ----- スライダーの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%;
    display: none;
  }

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

  .mvCatch p {
    gap: 4px;
    font-size: min(5.5vw, 24px);
    line-height: 1.6;
    text-align: center;
    text-shadow: 0 0 16px rgb(255 255 255), 0 0 4px rgb(255 255 255), 0 0 2px rgb(255 255 255), 0 0 2px rgb(255 255 255), 0 0 2px rgb(255 255 255);
  }

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

  /* MVバナー */
  .mv_bnr_wrap {
    position: static;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .mv_bnr_item {
    justify-content: center;
    width: calc(50% - 5px);
    padding-top: 0;
  }

  .mv_bnr_item::before {
    width: calc(100% + 5px);
    height: calc(100% + 5px);
  }

  .mv_bnr_title {
    padding-top: 20px;
    background: url(../images/logo_icon_colored.png) no-repeat center top / 16px auto;
    font-size: min(3.8vw, 16px);
  }

  .mv_bnr_item ul {
    gap: 6px;
    margin-top: 6px;
  }

  .mv_bnr_item ul li {
    letter-spacing: 0;
    font-size: 80%;
  }

  /* 見出し */
  h1 {
    background: #fff;
  }
}

@media screen and (max-width: 374px) {
  .mv_bnr_wrap {
    gap: 20px;
    justify-content: center;
  }

  .mv_bnr_item {
    width: fit-content;
    padding: 20px;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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/sakura_leaves.png) no-repeat left -30% top 50% / 40% auto, url(../images/bg_pink01.png) no-repeat left -10% top 20% / 40% auto;
}

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

.clinic .top_title h2 {
  font-size: 140%;
}

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

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

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

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

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 60px;
  background: url(../images/bg_texture.png), var(--bg-color);
  border-radius: 30px;
}

.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: 0 0 0 50px;
  font-size: 36px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
}

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

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

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

.clinic .info 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: #fff;
  border-radius: 20px;
  font-family: var(--font-jp);
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 3em;
  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 {
  height: 350px;
  border-radius: 28px;
}

@media screen and (max-width: 640px) {
  .clinic {
    background: url(../images/sakura_leaves.png) no-repeat left -30% top / 50% auto, url(../images/bg_pink01.png) no-repeat left -10% top / 50% auto;
  }

  .clinic .top_title h2 {
    font-size: 120%;
  }

  .clinic .top_title .eng {
    font-size: min(17vw, 64px);
  }

  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .info {
    padding: 0 20px;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 48px 20px;
    border-radius: 24px;
  }

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

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

  .clinic .info address .location .zipcode {
    display: block;
    margin-right: 0;
    line-height: 1.2;
  }

  .clinic .info address>*::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .clinic .info address .tel {
    padding: 0 0 0 45px;
    font-size: 29px;
  }

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

  .clinic .info .speciality .title {
    width: 100%;
    padding: 8px 20px;
  }

  .clinic .info .googlemap iframe {
    height: 250px;
    border-radius: 20px;
  }
}

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

  *ご挨拶

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

.greeting::before {
  position: absolute;
  z-index: -1;
  top: -5%;
  right: -10%;
  content: "";
  width: 60%;
  height: auto;
  aspect-ratio: 1002 / 943;
  background: url(../images/bg_pink02.png) no-repeat center/cover;
  opacity: .8;
}

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

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

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

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

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

.greeting_text h3 {
  margin-bottom: 30px !important;
  padding: 0 0 16px 57px;
  border-bottom: 1px dashed var(--line-color);
  background: url(../images/logo_icon_colored.png) no-repeat left top 7px / 44px auto;
  letter-spacing: .1em;
  font-size: 170%;
}

.greeting_img img {
  border-radius: 28px;
}

.greeting_text p {
	font-size: 105%;
}

.greeting_profile {
  position: relative;
  width: 90%;
  border-radius: 26px;
  padding: 16px;
  margin: -50px auto 0;
  background: url(../images/bg_texture_brown.png), linear-gradient(135deg, rgb(217 203 176), #d1af6c);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-jp);
}

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

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

.greeting_profile .name span {
  margin-right: 10px;
  font-size: 80%;
}

.greeting_btn {
  margin-top: 40px;
}

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

  .greeting_left {
    width: 100%;
  }

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

  .greeting_profile {
    width: 80%;
    border-radius: 20px;
  }

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

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

  .greeting_text h3 {
    margin-bottom: 24px !important;
    padding: 0 0 16px 40px;
    background: url(../images/logo_icon_colored.png) no-repeat left top 18px / 30px auto;
    font-size: 130%;
    line-height: 1.5;
  }

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

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

  *診療案内

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

.medical::before {
  position: absolute;
  top: -5%;
  left: 0;
  content: "";
  width: 24%;
  height: auto;
  aspect-ratio: 768 / 375;
  background: url(../images/cloud01.png) no-repeat center / cover;
  opacity: .6;
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title .eng {
    background: linear-gradient(135deg, var(--sub-color), rgb(217 203 176));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% / 5) - (80px / 5));
  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);
  border-radius: 16px;
  text-align: center;
}

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

.medical_icon {
  max-width: 100px;
  margin: 0 auto 15px !important;
  padding: 23px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgb(217 203 176 / .8);
}

.medical_title h3 {
  letter-spacing: .1em;
  font-size: 135%;
}

.medical_title_eng {
  color: var(--sub-color);
  font-size: 22px;
  font-family: var(--font-en-hand);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

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

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

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

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

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical::before {
    top: -22px;
    width: 40%;
  }

  .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 {
    padding: 13px;
    width: 50%;
  }

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

  .medical_title_eng {
    font-size: 18px;
  }
}

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

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

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

.feature::before {
  position: absolute;
  top: 320px;
  left: -1%;
  content: "";
  width: 22%;
  height: auto;
  aspect-ratio: 717/526;
  background: url(../images/sakura01.png) no-repeat center/cover;
  opacity: .8;
}

.feature::after {
  position: absolute;
  bottom: -5%;
  right: -2%;
  content: "";
  width: 24%;
  height: auto;
  aspect-ratio: 988/563;
  background: url(../images/sakura02.png) no-repeat center/cover;
  opacity: .8;
}

.feature_bg {
  background: url(../images/feature_bg.jpg) no-repeat center / cover;
  border-radius: 60px 0 0 60px;
  width: 90%;
  height: 500px;
  margin: 0 0 0 auto;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
}

.feature_num {
  line-height: 1;
  font-size: 250%;
  font-family: var(--font-en-hand);
  font-weight: 400;
  margin: 0px !important;
}

.feature_num span {
  margin-left: 5px;
  letter-spacing: .05em;
  color: var(--main-color);
  font-size: 160%;
}

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

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

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

.feature_title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 82px;
    margin-bottom: 16px !important;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line-color);
}

.feature_title h3 {
  font-size: 140%;
  line-height: 1.4;
  text-align: center;
}

.feature_title h3 span {
  padding: 0 3px;
  color: var(--main-color);
  font-size: 120%;
}

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

/* ---- 横並びボタン ----- */
.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::before {
    top: 130px;
    width: 40%;
  }

  .feature::after {
    bottom: -20px;
    width: 40%;
  }

  .feature_bg {
    height: 200px;
    background: url(../images/feature_bg_sp.jpg) no-repeat center / cover;
    border-radius: 40px 0 0 40px;
  }

  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_num {
    font-size: 200%;
  }

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

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

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

  /* ---- 横並びボタン ----- */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
	margin-bottom:100px;
}

.search::before {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 0;
  right: 0;
  width: 90%;
  height: 430px;
  background: url(../images/search_bg.jpg) no-repeat center / cover;
  border-radius: 60px 0 0 60px;
}

.search::after {
  position: absolute;
  z-index: -2;
  content: "";
  bottom: 215px;
  left: 0px;
  width: 100%;
  height: calc(100% - 380px);
  background: url(../images/bg_texture_pink.png), #fffcfc;
}

.search .tab_list {
  gap: 20px;
}

.search .tab_list .tab {
  padding: 18px 20px 17px;
  font-family: var(--font-jp);
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: #fff;
  border-radius: 0 0 40px 40px;
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  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;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 8px 45px 8px 24px;
  background: url(../images/bg_texture_pink.png), rgb(255, 252, 252);
  border-radius: 3em;
  line-height: 1.7;
  color: var(--text-color);
  font-family: var(--font-jp);
}

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

.search_list li a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--main-color);
  transform: translateY(-50%);
  transition: right 0.2s;
  padding-left: 2px;
}

.search_list li a:hover::before {
  right: 10px;
}
.search_list li a[href="#"]{	
	    pointer-events: none;
}	
.search_list li a[href="#"]:after{	
    content: "準備中";	
    position: absolute;	
    top: 50%;	
    left: 50%;	
    z-index: 2;	
    display: flex;	
    justify-content: center;	
    align-items: center;	
    width: 100%;	
    height: 100%;	
    background: rgb(0, 0, 0, 0.7);	
    color: #ffffff;	
    transform: translate(-50%, -50%);
	    border-radius: 3em;
}	

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

.search_img {
  position: relative;
  width: calc(40% - 16px);
  min-height: 440px;
  margin: 0 !important;
}

.search_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
}

.panel_flex .search_list {
  width: calc(60% - 16px);
}

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

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .search::before {
    height: 200px;
    background: url(../images/search_bg_sp.jpg) no-repeat center / cover;
    border-radius: 40px 0 0 40px;
  }

  .search::after {
    bottom: 100px;
    height: calc(100% - 100px - 38vw);
  }

  .search .inner {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .search .inner::before {
    width: 40%;
  }

  .search .tab_list {
    flex-flow: row;
    gap: 7px;
  }

  .search .tab_list .tab {
    width: fit-content;
    min-height: auto;
    padding: 4px 10px !important;
    border-radius: 16px 16px 0 0;
    font-size: 110%;
    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;
    padding: 20px 20px 40px;
    border-radius: 0 0 20px 20px;
  }

  .search_img {
    width: 100%;
    height: 300px;
    min-height: unset;
    overflow: hidden;
  }

  .search_img img {
    border-radius: 16px;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

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

================================================================================================================================== */
.column {
  background: var(--bg-color);
}

.column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}

.column_box {
  width: calc(25% - 18.75px);
}

.column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}

.column_box dd {
  padding: 15px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.column_box dd a {
  color: var(--text-color);
}

.column_box dd a:hover {
  color: var(--main-color);
}

/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
  .column_list {
    gap: 40px;
  }

  .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 20px;
}

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

#infinitySlider .splide__slide img {
  border-radius: 20px;
}

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

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

  *ピックアップ（パターン01） - 追加コンテンツ

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

.top_medical_contents::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 90%;
  height: 100%;
  background: url(../images/bg_texture.png), var(--bg-color);
  border-radius: 0 60px 60px 0;
}

.pickup {
  position: relative;
}

.pickup::before {
  position: absolute;
  bottom: -5%;
  right: -5%;
  content: "";
  width: 32%;
  height: auto;
  aspect-ratio: 768 / 234;
  background: url(../images/cloud02.png) no-repeat center / cover;
  opacity: .6;
}


.pickup .inner {
  width: 100%;
  padding-top: 0;
}

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

.pickup_item {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.pickup_img {
  position: relative;
  z-index: 1;
  height: fit-content;
}

.pickup_img img {
  border-radius: 30px;
}

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 80%;
  /* margin: 0 0 0 -100px;
  padding: 48px 60px 48px;
  background: #fff; */
  border-radius: 28px;
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0px auto 15px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line-color);
}

.pickup_title>span {
  display: inline-block;
  color: var(--sub-color);
  line-height: 1;
  font-size: 280%;
  font-family: var(--font-en-hand);
  font-weight: 400;
  margin: 0 0 8px !important;
}

.pickup_title h2, .pickup_title h3 {
  line-height: 1;
  font-size: 200%;
}

.pickup_title h2 span, .pickup_title h3 span {
  padding-top: 4px;
  margin-left: 20px;
  line-height: 1;
  font-size: 80%;
}

.pickup_text {
  margin: 20px 0px 32px;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin-top: auto;
}

.pickup_link .pickup_btn {
  width: calc((100% / 2) - (15px / 2));
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  display: block;
  padding: 12px 45px 11px 35px;
  background: url(../images/bg_texture_brown.png), linear-gradient(135deg, rgb(217 203 176), #d1af6c);
  border-radius: 3em;
  color: #ffffff;
  font-size: 100%;
  font-family: var(--font-jp);
  letter-spacing: 0.15em;
  text-align: center;
  vertical-align: bottom;
  transition: opacity 0.2s, filter 0.2s;
}

.pickup_link .pickup_btn a:hover {
  color: #fff;
  filter: brightness(1.1);
  opacity: .95;
}

.pickup_link .pickup_btn a[href="#"] {
  pointer-events: none;
}

.pickup_link .pickup_btn a[href="#"]::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3em;
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.pickup_link .pickup_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a:hover::after {
  right: 12px;
}

/* 偶数 */
.pickup_item:nth-child(even) {
  flex-flow: row-reverse;
}

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
  .top_medical_contents::before {
    width: calc(100% - 10px);
    border-radius: 0 40px 40px 0;
  }

  .pickup::before {
    bottom: -30px;
    width: 40%;
  }

  .pickup_list {
    width: calc(100%);
  }

  .pickup_title {
    padding-bottom: 8px;
    text-align: center;
  }

  .pickup_title>span {
    margin-bottom: 4px !important;
    font-size: 200%;
  }

  .pickup_title h2, .pickup_title h3 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 160%;
  }

  .pickup_title h2 span, .pickup_title h3 span {
    margin: 0;
    padding: 0;
    line-height: 2;
    font-size: 70%;
  }

  .pickup_item {
    flex-flow: column;
    gap: 24px;
    width: 100%;
  }

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

  .pickup_inner {
    width: 100%;
  }

  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }

  /* 偶数 */
  .pickup_item:nth-child(even) {
    flex-flow: column;
  }
}

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

  *症例スライダー

================================================================================================================================== */
#caseSlider .inner {
  max-width: none;
}

#caseSlider .splide {
  position: relative;
  z-index: 1;
}

#caseSlider .splide__inner {
  position: relative;
  z-index: 1;
}

#caseSlider .splide__track {
  padding: 0 100px !important;
}

/* ----- スライドの設定 ----- */
#caseSlider .splide__slide {
  position: relative;
  z-index: 1;
  width: 70% !important;
  padding: 50px;
  background: url(../images/bg_texture.png), var(--bg-color);
  border-radius: 30px;
}

/* ----- オペレーション ----- */
#caseSlider .splide__operation {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 30px;
}

/* ページネーション */
#caseSlider .caseSlider_pagination {
  z-index: 1;
  display: flex;
  gap: 15px;
}

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

#caseSlider .caseSlider_page.is-active {
  background: var(--main-color);
}

/* ----- スライダーのArrowボタン ----- */
#caseSlider .caseSlider_arrows {
  display: flex;
  gap: 3px;
}

#caseSlider .caseSlider_arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

#caseSlider .caseSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  background: var(--sub-color02);
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.2s;
}

#caseSlider .caseSlider_arrow:hover i {
  background: var(--main-color);
}

#caseSlider .caseSlider_arrow_prev {
  left: 15%;
  transform: translate(50%, -50%);
}

#caseSlider .caseSlider_arrow_prev span::before {
  content: "\f104";
}

#caseSlider .caseSlider_arrow_next {
  right: 15%;
  transform: translate(-50%, -50%);
}

#caseSlider .caseSlider_arrow_next span::before {
  content: "\f105";
}

.case_item {
  height: fit-content;
}

.case_item h3 {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.65;
  letter-spacing: .1em;
  font-size: 180%;
}

.case_item h3 span {
  color: var(--sub-color);
  font-size: 90%;
}

.case_images_list {
  display: flex;
  gap: 50px;
  width: 100%;
}

.case_images_item {
  flex: 1;
  width: 100%;
}

.case_images_item .title {
  padding: 17px 20px 17px;
  background: url(../images/bg_texture_pink.png), var(--main-color);
  border-radius: 20px 20px 0 0;
  color: rgb(255, 255, 255);
  font-size: 140%;
  font-family: var(--font-jp);
  text-align: center;
}

.case_images_item:first-of-type .title {
  background: url(../images/bg_texture_pink.png), #f4afb4;
}

.case_images_item .images {
  padding: 10px;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.case_images_item .images img {
  border-radius: 16px;
}

.case_images_item .text {
  margin-top: 20px;
}

.case_detail {
  margin-top: 32px;
}

.case_detail_accordion {
  position: relative;
  z-index: 1;
  padding: 15px 30px 15px 15px;
  padding: 15px;
  font-size: 120%;
  cursor: pointer;
}

.case_detail_accordion::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 2;
  width: 15px;
  height: 2px;
  background: var(--main-color);
  transform: rotate(90deg);
  transition: transform 0.3s, opacity 0.3s;
}

.case_detail_accordion.open::before {
  opacity: 0;
  transform: rotate(180deg);
}

.case_detail_accordion::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 2;
  width: 15px;
  height: 2px;
  background: var(--main-color);
  transition: transform 0.3s, background 0.3s;
}

/* ----- 詳細テーブル ----- */
.case_table {
  display: none;
  margin: 0 auto 30px;
}

.case_table th, .case_table td {
  padding: 20px;
}

.case_table th {
  background: var(--main-color);
  color: #ffffff;
}

.case_table td {
  background: #ffffff;
}

/* ----- リンクボタン ----- */
.case_button {
  text-align: center;
}

.case_button>* {
  position: relative;
  display: inline-block;
  padding: 14px 75px 14px 55px;
  background: url(../images/bg_texture_pink.png), var(--gradient-color);
  border-radius: 3em;
  color: rgb(255, 255, 255);
  font-size: 100%;
  font-family: var(--font-jp);
  letter-spacing: 0.15em;
  text-align: center;
  vertical-align: bottom;
  transition: opacity 0.2s, filter 0.2s;
}

.case_button>*:hover {
  color: #fff;
  filter: brightness(1.1);
  opacity: .95;
}

.case_button>*::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.case_button>*:hover::before {
  right: 10px;
}

@media screen and (max-width: 640px) {
  #caseSlider .inner {
    padding: 70px 0;
  }

  #caseSlider .splide__track {
    padding: 0 30px !important;
  }

  #caseSlider .splide__operation {
    gap: 15px;
    padding: 0 20px;
  }

  .case_detail {
    padding: 15px 15px;
  }

  #caseSlider .splide__slide {
    padding: 32px 20px;
    width: 100% !important;
    border-radius: 20px;
  }


  .case_detail_accordion {
    padding: 10px 30px 10px 10px;
  }

  .case_detail_accordion::before {
    right: 10px;
    width: 10px;
  }

  .case_detail_accordion::after {
    right: 10px;
    width: 10px;
  }

  .case_images_item .title {
    padding: 8px 10px;
    font-size: 110%;
  }

  #caseSlider .caseSlider_arrow {
    /*display: none;*/
	  display: flex;
  }

  #caseSlider .caseSlider_arrow {
    /*position: static;*/
    width: 40px;
    height: 40px;
    /*transform: translate(0, 0);*/
  }

  #caseSlider .caseSlider_arrow i {
    font-size: 80%;
  }
#caseSlider .caseSlider_arrow_prev {
	left: -3%;
}

#caseSlider .caseSlider_arrow_next {
	right: -3%;
}

  #caseSlider .case_images_list {
    flex-flow: column;
    gap: 20px;
  }

  #caseSlider .caseSlider_page {
    width: 8px;
    height: 8px;
  }

  .case_item h3 {
    margin-bottom: 24px;
    font-size: 120%;
  }

  .case_detail {
    margin: 24px auto 0;
  }

  .case_table {
    margin: 0 auto 15px;
  }

  .case_table th, .case_table td {
    display: block;
    width: 100%;
  }

  .case_table th {
    border-bottom: none;
  }

  .case_button {
    margin: 0;
  }

  .case_button>* {
    width: 100%;
    margin: 0;
    padding: 10px 15px;
  }
}